Skip to content

Instantly share code, notes, and snippets.

@hlolli
Last active July 13, 2026 17:42
Show Gist options
  • Select an option

  • Save hlolli/b6bee7239711ccc8297b448ccdb6a483 to your computer and use it in GitHub Desktop.

Select an option

Save hlolli/b6bee7239711ccc8297b448ccdb6a483 to your computer and use it in GitHub Desktop.
Csound recursive struct lifetime benchmarks and charts

Csound recursive struct lifetime benchmarks

This bundle contains the benchmark runner, chart generator, raw measurements, and rendered charts used for the recursive struct-array lifetime pull request.

Contents

  • benchmark.py: interleaved process runner and 25 ms CPU/RSS sampler.
  • plot.py: generates the three Grafana-style charts from the CSV files.
  • summary.csv: per-process wall time, CPU time, return code, and peak RSS.
  • traces.csv: sampled CPU and resident memory over time.
  • environment.txt: platform and revision metadata for the published run.
  • The three PNG files are the rendered charts used in the pull request.

Gist uses a flat file namespace. When run locally, benchmark.py writes data under raw/, and plot.py accepts data either there or beside the script. New charts are written under charts/.

The runner is POSIX-specific because it uses fork, wait4, and ps to keep per-process resource accounting separate. The chart generator requires Matplotlib and NumPy.

Run

Both build directories must contain a csound executable and its locally built library and opcode modules. The structured workload may be a CSD, or an orchestra file when the required Csound arguments are supplied with repeated --structured-arg=VALUE options.

python3 benchmark.py \
  --develop /path/to/develop/build \
  --branch /path/to/branch/build \
  --stria /path/to/Chowning-Stria.csd \
  --structured-workload /path/to/recursive-workload.csd \
  --develop-commit 0c9f95fbc676ad2258d1dca94ba904e591500efa \
  --branch-commit 9910a8e287fc599bed3f22e97a2ccf4fcfbf0892

The runner performs one Stria warmup per revision, five interleaved measured Stria runs, and three interleaved structured-workload runs. It writes CSV data and individual process logs under raw/.

To recreate the charts:

python3 -m pip install matplotlib numpy
python3 plot.py

Interpretation

The Stria measurements are a regression check. Their small differences are within run-to-run noise and are not presented as a speedup.

The recursive workload is an outcome and memory comparison. The develop build aborted in all three measurements, while the branch completed all three. A runtime comparison would therefore be misleading. Peak RSS is an end-to-end process measurement rather than a byte-exact count of live Csound allocations.

#!/usr/bin/env python3
from __future__ import annotations
import argparse
import csv
import os
import platform
import resource
import subprocess
import sys
import time
from pathlib import Path
ROOT = Path(__file__).resolve().parent
RAW = ROOT / "raw"
def rss_megabytes(raw_rss: int) -> float:
divisor = 1024 * 1024 if sys.platform == "darwin" else 1024
return raw_rss / divisor
def sample_process(pid: int) -> tuple[float, float] | None:
result = subprocess.run(
["ps", "-o", "rss=,%cpu=", "-p", str(pid)],
capture_output=True,
check=False,
text=True,
)
fields = result.stdout.split()
if len(fields) != 2:
return None
return int(fields[0]) / 1024, float(fields[1])
def run_process(
*,
variant: str,
benchmark: str,
iteration: int,
binary: Path,
framework: Path,
arguments: list[str],
cwd: Path,
summary_writer: csv.DictWriter,
trace_writer: csv.DictWriter,
) -> dict[str, float | int | str]:
log_path = RAW / f"{benchmark}-{variant}-{iteration}.log"
environment = os.environ.copy()
if sys.platform == "darwin":
environment["DYLD_FRAMEWORK_PATH"] = str(framework)
else:
previous = environment.get("LD_LIBRARY_PATH", "")
environment["LD_LIBRARY_PATH"] = (
f"{framework}:{previous}" if previous else str(framework)
)
environment["OPCODE7DIR64"] = str(framework)
started = time.perf_counter()
samples: list[tuple[float, float, float]] = []
pid = os.fork()
if pid == 0:
descriptor = os.open(
log_path,
os.O_WRONLY | os.O_CREAT | os.O_TRUNC,
0o644,
)
os.dup2(descriptor, 1)
os.dup2(descriptor, 2)
os.close(descriptor)
os.chdir(cwd)
os.execve(binary, [str(binary), *arguments], environment)
status = 0
usage = None
while True:
waited_pid, status, usage = os.wait4(pid, os.WNOHANG)
elapsed = time.perf_counter() - started
sample = sample_process(pid)
if sample is not None:
samples.append((elapsed, sample[0], sample[1]))
if waited_pid == pid:
break
time.sleep(0.025)
elapsed = time.perf_counter() - started
return_code = os.waitstatus_to_exitcode(status)
user_seconds = usage.ru_utime
system_seconds = usage.ru_stime
cpu_seconds = user_seconds + system_seconds
peak_rss = rss_megabytes(usage.ru_maxrss)
average_cpu = cpu_seconds / elapsed * 100 if elapsed > 0 else 0
row = {
"benchmark": benchmark,
"variant": variant,
"iteration": iteration,
"return_code": return_code,
"wall_seconds": round(elapsed, 6),
"user_seconds": round(user_seconds, 6),
"system_seconds": round(system_seconds, 6),
"cpu_seconds": round(cpu_seconds, 6),
"average_cpu_percent": round(average_cpu, 3),
"peak_rss_mb": round(peak_rss, 3),
}
summary_writer.writerow(row)
for elapsed_sample, rss_mb, cpu_percent in samples:
trace_writer.writerow(
{
"benchmark": benchmark,
"variant": variant,
"iteration": iteration,
"elapsed_seconds": round(elapsed_sample, 6),
"rss_mb": round(rss_mb, 3),
"cpu_percent": round(cpu_percent, 3),
}
)
return row
def main() -> None:
parser = argparse.ArgumentParser()
parser.add_argument("--develop", type=Path, required=True)
parser.add_argument("--branch", type=Path, required=True)
parser.add_argument("--stria", type=Path, required=True)
parser.add_argument("--structured-workload", type=Path, required=True)
parser.add_argument("--structured-cwd", type=Path)
parser.add_argument(
"--structured-arg",
action="append",
default=[],
help="extra Csound argument; use --structured-arg=VALUE",
)
parser.add_argument("--stria-runs", type=int, default=5)
parser.add_argument("--structured-runs", type=int, default=3)
parser.add_argument("--develop-commit", default="unknown")
parser.add_argument("--branch-commit", default="unknown")
args = parser.parse_args()
RAW.mkdir(exist_ok=True)
variants = {
"develop": (args.develop / "csound", args.develop),
"branch": (args.branch / "csound", args.branch),
}
summary_path = RAW / "summary.csv"
trace_path = RAW / "traces.csv"
summary_fields = [
"benchmark",
"variant",
"iteration",
"return_code",
"wall_seconds",
"user_seconds",
"system_seconds",
"cpu_seconds",
"average_cpu_percent",
"peak_rss_mb",
]
trace_fields = [
"benchmark",
"variant",
"iteration",
"elapsed_seconds",
"rss_mb",
"cpu_percent",
]
with summary_path.open("w", newline="", encoding="ascii") as summary_file, \
trace_path.open("w", newline="", encoding="ascii") as trace_file:
summary_writer = csv.DictWriter(summary_file, fieldnames=summary_fields)
trace_writer = csv.DictWriter(trace_file, fieldnames=trace_fields)
summary_writer.writeheader()
trace_writer.writeheader()
# Warm both binaries and the filesystem cache before measured renders.
for variant, (binary, framework) in variants.items():
run_process(
variant=variant,
benchmark="stria-warmup",
iteration=0,
binary=binary,
framework=framework,
arguments=["-n", "-d", "-m0", str(args.stria)],
cwd=ROOT,
summary_writer=summary_writer,
trace_writer=trace_writer,
)
for iteration in range(1, args.stria_runs + 1):
order = ("develop", "branch") if iteration % 2 else ("branch", "develop")
for variant in order:
binary, framework = variants[variant]
run_process(
variant=variant,
benchmark="stria",
iteration=iteration,
binary=binary,
framework=framework,
arguments=["-n", "-d", "-m0", str(args.stria)],
cwd=ROOT,
summary_writer=summary_writer,
trace_writer=trace_writer,
)
structured_cwd = (
args.structured_cwd
if args.structured_cwd is not None
else args.structured_workload.parent
)
for iteration in range(1, args.structured_runs + 1):
order = ("develop", "branch") if iteration % 2 else ("branch", "develop")
for variant in order:
binary, framework = variants[variant]
run_process(
variant=variant,
benchmark="recursive-structured-workload",
iteration=iteration,
binary=binary,
framework=framework,
arguments=[
"-n",
"-d",
"-m0",
*args.structured_arg,
str(args.structured_workload),
],
cwd=structured_cwd,
summary_writer=summary_writer,
trace_writer=trace_writer,
)
metadata = RAW / "environment.txt"
metadata.write_text(
"\n".join(
[
f"platform={platform.platform()}",
f"machine={platform.machine()}",
f"python={platform.python_version()}",
f"develop_commit={args.develop_commit}",
f"branch_commit={args.branch_commit}",
f"stria_source={args.stria}",
f"structured_workload={args.structured_workload}",
"sample_interval_seconds=0.025",
]
) + "\n",
encoding="ascii",
)
if __name__ == "__main__":
main()
platform=macOS-26.5.2-arm64-arm-64bit
machine=arm64
python=3.9.6
develop_commit=0c9f95fbc676ad2258d1dca94ba904e591500efa
branch_commit=9910a8e287fc599bed3f22e97a2ccf4fcfbf0892
stria_source=CsoundQt Examples/Chowning-Stria.csd
sample_interval_seconds=0.025
#!/usr/bin/env python3
from __future__ import annotations
import csv
import statistics
from collections import defaultdict
from pathlib import Path
import matplotlib.pyplot as plt
import numpy as np
ROOT = Path(__file__).resolve().parent
RAW = ROOT / "raw" if (ROOT / "raw").is_dir() else ROOT
OUT = ROOT / "charts"
OUT.mkdir(exist_ok=True)
BACKGROUND = "#111217"
PANEL = "#181B1F"
GRID = "#2A2E35"
TEXT = "#D8D9DA"
MUTED = "#8E9AA7"
DEVELOP = "#FF9830"
BRANCH = "#73BF69"
RED = "#F2495C"
BLUE = "#5794F2"
def read_csv(name: str) -> list[dict[str, str]]:
with (RAW / name).open(newline="", encoding="ascii") as source:
return list(csv.DictReader(source))
def configure() -> None:
plt.rcParams.update(
{
"figure.facecolor": BACKGROUND,
"axes.facecolor": PANEL,
"savefig.facecolor": BACKGROUND,
"axes.edgecolor": GRID,
"axes.labelcolor": TEXT,
"axes.titlecolor": TEXT,
"xtick.color": MUTED,
"ytick.color": MUTED,
"text.color": TEXT,
"grid.color": GRID,
"grid.alpha": 0.9,
"font.family": "DejaVu Sans",
"font.size": 12,
"axes.titleweight": "normal",
}
)
def panel_style(axis: plt.Axes) -> None:
axis.grid(axis="y", linewidth=0.8)
axis.set_axisbelow(True)
axis.spines["top"].set_visible(False)
axis.spines["right"].set_visible(False)
def save(figure: plt.Figure, name: str) -> None:
figure.savefig(OUT / name, dpi=180, bbox_inches="tight", pad_inches=0.25)
plt.close(figure)
def stria_chart(summary: list[dict[str, str]]) -> None:
rows = [row for row in summary if row["benchmark"] == "stria"]
metrics = [
("wall_seconds", "Wall time", "seconds"),
("cpu_seconds", "CPU time", "CPU-seconds"),
]
figure, axes = plt.subplots(1, 2, figsize=(14, 6.4))
figure.subplots_adjust(top=0.72, bottom=0.18, left=0.07, right=0.98, wspace=0.20)
figure.suptitle(
"Stria offline synthesis: no measurable regression",
x=0.07,
y=0.96,
ha="left",
fontsize=22,
fontweight="normal",
)
figure.text(
0.07,
0.845,
"5 interleaved RelWithDebInfo runs per revision after warmup | synthesis only, no file I/O",
color=MUTED,
fontsize=12,
)
for axis, (key, title, unit) in zip(axes, metrics):
panel_style(axis)
axis.set_title(title, loc="left", pad=16, fontsize=15)
values_by_variant = {
variant: [
float(row[key]) for row in rows if row["variant"] == variant
]
for variant in ("develop", "branch")
}
all_values = values_by_variant["develop"] + values_by_variant["branch"]
padding = max(max(all_values) - min(all_values), 0.05) * 0.8
axis.set_ylim(min(all_values) - padding, max(all_values) + padding)
axis.set_xlim(-0.5, 1.5)
axis.set_xticks([0, 1], ["develop", "this branch"])
axis.set_ylabel(unit)
jitter = np.linspace(-0.12, 0.12, 5)
for x, (variant, color) in enumerate(
(("develop", DEVELOP), ("branch", BRANCH))
):
values = values_by_variant[variant]
axis.scatter(
x + jitter,
values,
s=62,
color=color,
edgecolor=BACKGROUND,
linewidth=1.2,
zorder=3,
)
median = statistics.median(values)
axis.hlines(median, x - 0.25, x + 0.25, color=color, linewidth=4)
axis.text(
x,
median + padding * 0.30,
f"median {median:.3f}",
ha="center",
color=TEXT,
fontsize=11,
)
develop_median = statistics.median(values_by_variant["develop"])
branch_median = statistics.median(values_by_variant["branch"])
delta = (branch_median - develop_median) / develop_median * 100
axis.text(
0.98,
0.06,
f"branch delta {delta:+.2f}%",
transform=axis.transAxes,
ha="right",
color=MUTED,
fontsize=11,
)
figure.text(
0.07,
0.055,
"LOWER IS BETTER | Axes are magnified to show run-to-run variance.",
color=MUTED,
fontsize=11,
)
save(figure, "stria-performance.png")
def trace_groups(traces: list[dict[str, str]], benchmark: str):
grouped: dict[tuple[str, int], list[tuple[float, float]]] = defaultdict(list)
for row in traces:
if row["benchmark"] != benchmark:
continue
rss = float(row["rss_mb"])
if rss > 0:
grouped[(row["variant"], int(row["iteration"]))].append(
(float(row["elapsed_seconds"]), rss)
)
return grouped
def memory_trace_chart(
summary: list[dict[str, str]], traces: list[dict[str, str]]
) -> None:
grouped = trace_groups(traces, "recursive-structured-workload")
figure, axis = plt.subplots(figsize=(14, 7.2))
figure.subplots_adjust(top=0.73, bottom=0.17, left=0.08, right=0.98)
figure.suptitle(
"Recursive structured workload: memory over time",
x=0.08,
y=0.96,
ha="left",
fontsize=22,
fontweight="normal",
)
figure.text(
0.08,
0.845,
"3 RelWithDebInfo runs per revision | sampled every 25 ms | each line is one process",
color=MUTED,
fontsize=12,
)
panel_style(axis)
axis.set_xlabel("elapsed seconds")
axis.set_ylabel("resident memory (MiB)")
axis.set_xlim(0, 14)
axis.set_ylim(0, 350)
for variant, color in (("develop", DEVELOP), ("branch", BRANCH)):
variant_series = []
for iteration in range(1, 4):
series = grouped[(variant, iteration)]
times = np.array([item[0] for item in series])
rss = np.array([item[1] for item in series])
variant_series.append((times, rss))
axis.plot(times, rss, color=color, alpha=0.28, linewidth=1.2)
end_times = [series[0][-1] for series in variant_series]
grid = np.arange(0, max(end_times) + 0.001, 0.025)
interpolated = []
for times, rss in variant_series:
values = np.interp(grid, times, rss)
values[grid > times[-1]] = np.nan
interpolated.append(values)
matrix = np.array(interpolated)
median = np.nanmedian(matrix, axis=0)
axis.plot(grid, median, color=color, linewidth=3.2, label=variant)
develop_end = statistics.median(
grouped[("develop", iteration)][-1][0] for iteration in range(1, 4)
)
develop_end_rss = statistics.median(
grouped[("develop", iteration)][-1][1] for iteration in range(1, 4)
)
branch_end = statistics.median(
grouped[("branch", iteration)][-1][0] for iteration in range(1, 4)
)
branch_end_rss = statistics.median(
grouped[("branch", iteration)][-1][1] for iteration in range(1, 4)
)
axis.scatter([develop_end], [develop_end_rss], marker="x", s=120, color=RED, linewidth=3)
axis.annotate(
"develop: 3/3 aborted",
(develop_end, develop_end_rss),
xytext=(2.5, 325),
color=TEXT,
arrowprops={"arrowstyle": "-", "color": RED, "lw": 1.5},
)
axis.scatter([branch_end], [branch_end_rss], marker="o", s=70, color=BRANCH)
axis.annotate(
"branch: 3/3 completed",
(branch_end, branch_end_rss),
xytext=(10.0, 185),
color=TEXT,
arrowprops={"arrowstyle": "-", "color": BRANCH, "lw": 1.5},
)
legend = axis.legend(loc="upper right", frameon=True)
legend.get_frame().set_facecolor(PANEL)
legend.get_frame().set_edgecolor(GRID)
for text in legend.get_texts():
text.set_color(TEXT)
figure.text(
0.08,
0.055,
"LOWER IS BETTER | develop terminates early; the branch finishes the same workload.",
color=MUTED,
fontsize=11,
)
save(figure, "recursive-memory-over-time.png")
def outcome_chart(summary: list[dict[str, str]]) -> None:
rows = [
row
for row in summary
if row["benchmark"] == "recursive-structured-workload"
]
variants = ("develop", "branch")
colors = (DEVELOP, BRANCH)
peaks = {
variant: [float(row["peak_rss_mb"]) for row in rows if row["variant"] == variant]
for variant in variants
}
successes = {
variant: sum(
int(row["return_code"]) == 0 for row in rows if row["variant"] == variant
)
/ 3
* 100
for variant in variants
}
figure, axes = plt.subplots(1, 2, figsize=(14, 6.4))
figure.subplots_adjust(top=0.72, bottom=0.18, left=0.07, right=0.98, wspace=0.20)
figure.suptitle(
"Recursive structured workload: resource and outcome",
x=0.07,
y=0.96,
ha="left",
fontsize=22,
fontweight="normal",
)
figure.text(
0.07,
0.845,
"Median and range of 3 RelWithDebInfo runs per revision",
color=MUTED,
fontsize=12,
)
memory_axis, outcome_axis = axes
for axis in axes:
panel_style(axis)
axis.set_xticks([0, 1], ["develop", "this branch"])
memory_axis.set_title("Peak resident memory", loc="left", pad=16, fontsize=15)
memory_axis.set_ylabel("MiB")
medians = [statistics.median(peaks[variant]) for variant in variants]
error_low = [medians[index] - min(peaks[variant]) for index, variant in enumerate(variants)]
error_high = [max(peaks[variant]) - medians[index] for index, variant in enumerate(variants)]
memory_axis.bar([0, 1], medians, color=colors, width=0.56)
memory_axis.errorbar(
[0, 1],
medians,
yerr=np.array([error_low, error_high]),
fmt="none",
ecolor=TEXT,
elinewidth=1.5,
capsize=5,
)
memory_axis.set_ylim(0, 360)
for index, value in enumerate(medians):
memory_axis.text(index, value + 16, f"{value:.1f} MiB", ha="center")
reduction = (medians[0] - medians[1]) / medians[0] * 100
memory_axis.text(
0.98,
0.92,
f"{reduction:.1f}% lower",
transform=memory_axis.transAxes,
ha="right",
color=BRANCH,
fontsize=13,
)
outcome_axis.set_title("Successful completion", loc="left", pad=16, fontsize=15)
outcome_values = [successes[variant] for variant in variants]
outcome_axis.bar([0, 1], outcome_values, color=colors, width=0.56)
outcome_axis.set_ylim(0, 110)
outcome_axis.set_ylabel("percent of runs")
outcome_axis.text(0, 5, "0% | 3 aborts", ha="center", color=TEXT)
outcome_axis.text(1, outcome_values[1] + 4, "100%", ha="center")
outcome_axis.text(1, 8, "3 completions", ha="center", color=BACKGROUND)
figure.text(
0.07,
0.055,
"MEMORY: LOWER IS BETTER | COMPLETION: HIGHER IS BETTER",
color=MUTED,
fontsize=11,
)
save(figure, "recursive-workload-summary.png")
def main() -> None:
configure()
summary = read_csv("summary.csv")
traces = read_csv("traces.csv")
stria_chart(summary)
memory_trace_chart(summary, traces)
outcome_chart(summary)
if __name__ == "__main__":
main()
benchmark variant iteration return_code wall_seconds user_seconds system_seconds cpu_seconds average_cpu_percent peak_rss_mb
stria-warmup develop 0 0 15.417793 15.117379 0.13046 15.247839 98.898 50.719
stria-warmup branch 0 0 15.441305 15.156101 0.123273 15.279374 98.951 50.719
stria develop 1 0 15.259836 15.039218 0.121201 15.160419 99.349 50.719
stria branch 1 0 15.29645 15.096059 0.114759 15.210818 99.44 51.578
stria branch 2 0 15.239909 15.039569 0.112371 15.15194 99.423 50.75
stria develop 2 0 15.15179 14.994318 0.088005 15.082323 99.542 52.797
stria develop 3 0 15.19608 15.075681 0.07343 15.149111 99.691 52.812
stria branch 3 0 15.217475 15.079669 0.076463 15.156132 99.597 52.109
stria branch 4 0 15.208342 15.063796 0.076203 15.139999 99.551 50.672
stria develop 4 0 15.301954 15.09911 0.081148 15.180258 99.205 52.625
stria develop 5 0 15.311966 15.116607 0.076808 15.193415 99.226 50.719
stria branch 5 0 15.40051 15.079402 0.086888 15.16629 98.479 50.641
recursive-structured-workload develop 1 1 1.587634 1.204445 0.074414 1.278859 80.551 321.219
recursive-structured-workload branch 1 0 13.250216 12.832793 0.196032 13.028825 98.329 154.609
recursive-structured-workload branch 2 0 13.243909 12.830154 0.162016 12.99217 98.099 147.203
recursive-structured-workload develop 2 1 1.643953 1.249763 0.075151 1.324914 80.593 308.469
recursive-structured-workload develop 3 1 1.748594 1.29053 0.080277 1.370807 78.395 298.906
recursive-structured-workload branch 3 0 12.927459 12.701969 0.142447 12.844416 99.358 156.844
benchmark variant iteration elapsed_seconds rss_mb cpu_percent
stria-warmup develop 0 0.000672 0.172 0.0
stria-warmup develop 0 0.04028 16.219 0.0
stria-warmup develop 0 0.080866 21.109 0.0
stria-warmup develop 0 0.113524 26.109 0.0
stria-warmup develop 0 0.147679 30.312 28.4
stria-warmup develop 0 0.181601 30.312 28.4
stria-warmup develop 0 0.215796 30.312 28.4
stria-warmup develop 0 0.249619 30.312 55.2
stria-warmup develop 0 0.283561 30.328 55.2
stria-warmup develop 0 0.31725 30.391 55.2
stria-warmup develop 0 0.35059 30.391 55.2
stria-warmup develop 0 0.384081 30.406 72.1
stria-warmup develop 0 0.416937 30.422 72.1
stria-warmup develop 0 0.45043 30.484 72.1
stria-warmup develop 0 0.484217 30.484 72.1
stria-warmup develop 0 0.518099 30.484 81.8
stria-warmup develop 0 0.551701 30.484 81.8
stria-warmup develop 0 0.58549 30.5 81.8
stria-warmup develop 0 0.618838 30.516 88.5
stria-warmup develop 0 0.652619 30.516 88.5
stria-warmup develop 0 0.686416 30.516 88.5
stria-warmup develop 0 0.71884 30.516 88.5
stria-warmup develop 0 0.751614 30.531 93.9
stria-warmup develop 0 0.784366 30.547 93.9
stria-warmup develop 0 0.818016 30.641 93.9
stria-warmup develop 0 0.852116 30.703 93.9
stria-warmup develop 0 0.885795 30.797 97.3
stria-warmup develop 0 0.919479 30.922 97.3
stria-warmup develop 0 0.953156 30.938 97.3
stria-warmup develop 0 0.986638 30.938 97.3
stria-warmup develop 0 1.020307 30.938 97.5
stria-warmup develop 0 1.050198 30.938 97.5
stria-warmup develop 0 1.08381 30.938 97.5
stria-warmup develop 0 1.117489 30.953 96.1
stria-warmup develop 0 1.159951 30.953 96.1
stria-warmup develop 0 1.192713 30.953 96.1
stria-warmup develop 0 1.226029 30.969 96.1
stria-warmup develop 0 1.260961 30.969 97.9
stria-warmup develop 0 1.294869 30.969 97.9
stria-warmup develop 0 1.326796 30.984 88.2
stria-warmup develop 0 1.405602 31.0 88.2
stria-warmup develop 0 1.439635 31.0 88.2
stria-warmup develop 0 1.470544 31.016 88.2
stria-warmup develop 0 1.504864 31.016 91.6
stria-warmup develop 0 1.538857 31.016 91.6
stria-warmup develop 0 1.572678 31.016 91.6
stria-warmup develop 0 1.608421 31.016 91.6
stria-warmup develop 0 1.642537 31.016 94.5
stria-warmup develop 0 1.676353 31.016 94.5
stria-warmup develop 0 1.709361 31.031 94.5
stria-warmup develop 0 1.743468 31.031 96.0
stria-warmup develop 0 1.77469 25.984 96.0
stria-warmup develop 0 1.812199 25.984 96.0
stria-warmup develop 0 1.846087 26.0 96.0
stria-warmup develop 0 1.879889 26.0 99.3
stria-warmup develop 0 1.914117 26.0 99.3
stria-warmup develop 0 1.948459 26.047 99.3
stria-warmup develop 0 1.982056 26.109 99.3
stria-warmup develop 0 2.015906 26.156 99.4
stria-warmup develop 0 2.049788 26.188 99.4
stria-warmup develop 0 2.084146 26.25 99.4
stria-warmup develop 0 2.116954 26.266 99.4
stria-warmup develop 0 2.150701 26.328 99.6
stria-warmup develop 0 2.18471 26.328 99.6
stria-warmup develop 0 2.218017 26.344 99.6
stria-warmup develop 0 2.25315 26.344 97.9
stria-warmup develop 0 2.286632 26.359 97.9
stria-warmup develop 0 2.320511 26.375 97.9
stria-warmup develop 0 2.354664 26.375 97.9
stria-warmup develop 0 2.388242 26.375 100.0
stria-warmup develop 0 2.420456 30.188 100.0
stria-warmup develop 0 2.454441 32.734 100.0
stria-warmup develop 0 2.490348 35.047 96.2
stria-warmup develop 0 2.526227 37.891 96.2
stria-warmup develop 0 2.564161 39.766 96.2
stria-warmup develop 0 2.603506 41.359 96.2
stria-warmup develop 0 2.637119 41.391 91.9
stria-warmup develop 0 2.668083 41.422 91.9
stria-warmup develop 0 2.699678 41.469 91.9
stria-warmup develop 0 2.736823 41.531 91.9
stria-warmup develop 0 2.770418 41.547 93.9
stria-warmup develop 0 2.803995 41.547 93.9
stria-warmup develop 0 2.838331 41.547 93.9
stria-warmup develop 0 2.870499 41.562 96.0
stria-warmup develop 0 2.904951 41.562 96.0
stria-warmup develop 0 2.937155 41.562 96.0
stria-warmup develop 0 2.970549 41.578 96.0
stria-warmup develop 0 3.00386 41.578 97.2
stria-warmup develop 0 3.037124 41.578 97.2
stria-warmup develop 0 3.069088 41.609 97.2
stria-warmup develop 0 3.102892 41.609 97.2
stria-warmup develop 0 3.134 41.625 98.5
stria-warmup develop 0 3.168056 41.625 98.5
stria-warmup develop 0 3.201941 41.625 98.5
stria-warmup develop 0 3.235511 41.625 98.5
stria-warmup develop 0 3.269144 41.625 99.4
stria-warmup develop 0 3.302863 41.625 99.4
stria-warmup develop 0 3.336599 41.625 99.4
stria-warmup develop 0 3.370429 41.625 98.5
stria-warmup develop 0 3.40489 41.0 98.5
stria-warmup develop 0 3.446871 40.984 98.5
stria-warmup develop 0 3.477933 40.891 98.5
stria-warmup develop 0 3.513705 40.891 99.1
stria-warmup develop 0 3.550666 40.891 99.1
stria-warmup develop 0 3.584691 40.922 99.1
stria-warmup develop 0 3.618519 40.922 99.6
stria-warmup develop 0 3.652896 40.984 99.6
stria-warmup develop 0 3.6868 41.016 99.6
stria-warmup develop 0 3.718634 40.906 99.6
stria-warmup develop 0 3.752279 40.969 100.0
stria-warmup develop 0 3.786348 40.984 100.0
stria-warmup develop 0 3.820115 40.984 100.0
stria-warmup develop 0 3.854044 40.984 100.0
stria-warmup develop 0 3.886692 41.0 99.2
stria-warmup develop 0 3.920663 41.0 99.2
stria-warmup develop 0 3.954449 41.016 99.2
stria-warmup develop 0 3.988513 41.016 99.2
stria-warmup develop 0 4.022764 41.016 99.1
stria-warmup develop 0 4.055784 41.031 99.1
stria-warmup develop 0 4.089846 41.047 99.1
stria-warmup develop 0 4.123732 41.062 99.7
stria-warmup develop 0 4.157451 41.062 99.7
stria-warmup develop 0 4.191152 41.062 99.7
stria-warmup develop 0 4.224726 41.062 99.7
stria-warmup develop 0 4.258363 41.062 99.3
stria-warmup develop 0 4.292239 41.062 99.3
stria-warmup develop 0 4.32626 41.062 99.3
stria-warmup develop 0 4.3606 41.062 99.3
stria-warmup develop 0 4.394895 41.062 99.6
stria-warmup develop 0 4.430103 41.062 99.6
stria-warmup develop 0 4.462045 41.062 99.6
stria-warmup develop 0 4.497949 41.062 100.0
stria-warmup develop 0 4.531863 41.062 100.0
stria-warmup develop 0 4.567078 41.078 100.0
stria-warmup develop 0 4.601118 41.078 100.0
stria-warmup develop 0 4.633893 41.109 100.0
stria-warmup develop 0 4.670064 41.188 100.0
stria-warmup develop 0 4.704242 41.25 100.0
stria-warmup develop 0 4.738546 41.344 100.0
stria-warmup develop 0 4.772372 41.344 99.1
stria-warmup develop 0 4.804383 41.359 99.1
stria-warmup develop 0 4.836681 41.359 99.1
stria-warmup develop 0 4.870566 41.375 99.7
stria-warmup develop 0 4.904258 41.375 99.7
stria-warmup develop 0 4.937883 41.375 99.7
stria-warmup develop 0 4.972124 41.391 99.7
stria-warmup develop 0 5.00681 41.406 99.9
stria-warmup develop 0 5.040621 41.422 99.9
stria-warmup develop 0 5.071898 41.422 99.9
stria-warmup develop 0 5.106191 41.422 99.9
stria-warmup develop 0 5.139937 41.422 99.1
stria-warmup develop 0 5.173643 41.438 99.1
stria-warmup develop 0 5.207177 41.438 99.1
stria-warmup develop 0 5.242558 41.438 99.1
stria-warmup develop 0 5.274006 41.438 100.0
stria-warmup develop 0 5.307665 41.453 100.0
stria-warmup develop 0 5.341304 41.469 100.0
stria-warmup develop 0 5.380119 41.469 99.7
stria-warmup develop 0 5.413967 41.516 99.7
stria-warmup develop 0 5.447954 41.531 99.7
stria-warmup develop 0 5.48185 41.625 99.7
stria-warmup develop 0 5.515854 41.688 99.0
stria-warmup develop 0 5.549746 41.703 99.0
stria-warmup develop 0 5.585461 41.766 99.0
stria-warmup develop 0 5.619418 41.766 98.9
stria-warmup develop 0 5.657328 41.766 98.9
stria-warmup develop 0 5.691333 41.766 98.9
stria-warmup develop 0 5.72501 41.781 98.9
stria-warmup develop 0 5.758507 41.781 99.5
stria-warmup develop 0 5.791272 41.781 99.5
stria-warmup develop 0 5.823651 41.797 99.5
stria-warmup develop 0 5.857108 41.797 99.5
stria-warmup develop 0 5.890719 41.797 100.0
stria-warmup develop 0 5.922076 41.797 100.0
stria-warmup develop 0 5.95559 41.812 100.0
stria-warmup develop 0 5.986675 41.828 100.0
stria-warmup develop 0 6.020497 41.844 99.9
stria-warmup develop 0 6.054797 41.844 99.9
stria-warmup develop 0 6.088483 41.844 99.9
stria-warmup develop 0 6.122179 41.844 98.8
stria-warmup develop 0 6.156354 41.844 98.8
stria-warmup develop 0 6.190003 41.844 98.8
stria-warmup develop 0 6.223959 41.844 98.8
stria-warmup develop 0 6.258158 41.844 100.0
stria-warmup develop 0 6.292975 41.922 100.0
stria-warmup develop 0 6.327203 41.938 100.0
stria-warmup develop 0 6.363092 42.016 100.0
stria-warmup develop 0 6.396791 42.406 99.4
stria-warmup develop 0 6.430722 42.422 99.4
stria-warmup develop 0 6.464788 42.438 99.4
stria-warmup develop 0 6.498582 42.453 99.1
stria-warmup develop 0 6.532821 42.469 99.1
stria-warmup develop 0 6.566698 42.469 99.1
stria-warmup develop 0 6.600298 42.469 99.1
stria-warmup develop 0 6.634234 42.734 100.0
stria-warmup develop 0 6.668081 42.734 100.0
stria-warmup develop 0 6.699156 42.734 100.0
stria-warmup develop 0 6.732996 42.75 100.0
stria-warmup develop 0 6.766984 42.781 99.9
stria-warmup develop 0 6.803299 42.828 99.9
stria-warmup develop 0 6.83695 42.844 99.9
stria-warmup develop 0 6.870717 42.891 98.4
stria-warmup develop 0 6.904693 42.922 98.4
stria-warmup develop 0 6.938721 42.938 98.4
stria-warmup develop 0 6.972668 42.938 98.4
stria-warmup develop 0 7.0062 42.938 100.0
stria-warmup develop 0 7.042807 42.922 100.0
stria-warmup develop 0 7.076888 42.938 100.0
stria-warmup develop 0 7.107068 42.938 100.0
stria-warmup develop 0 7.139607 42.938 99.3
stria-warmup develop 0 7.17372 42.953 99.3
stria-warmup develop 0 7.207919 42.953 99.3
stria-warmup develop 0 7.24195 42.953 98.4
stria-warmup develop 0 7.27785 42.969 98.4
stria-warmup develop 0 7.310468 42.984 98.4
stria-warmup develop 0 7.344634 43.0 98.4
stria-warmup develop 0 7.378743 43.0 100.0
stria-warmup develop 0 7.410403 43.0 100.0
stria-warmup develop 0 7.443916 43.0 100.0
stria-warmup develop 0 7.477992 43.0 100.0
stria-warmup develop 0 7.511963 43.0 100.0
stria-warmup develop 0 7.545963 43.016 100.0
stria-warmup develop 0 7.578346 43.016 100.0
stria-warmup develop 0 7.612164 43.031 100.0
stria-warmup develop 0 7.646127 43.047 100.0
stria-warmup develop 0 7.679791 43.094 100.0
stria-warmup develop 0 7.71344 43.141 100.0
stria-warmup develop 0 7.747308 43.156 98.5
stria-warmup develop 0 7.781527 43.188 98.5
stria-warmup develop 0 7.815807 43.188 98.5
stria-warmup develop 0 7.847065 43.188 98.5
stria-warmup develop 0 7.880148 43.203 99.5
stria-warmup develop 0 7.912588 43.203 99.5
stria-warmup develop 0 7.946329 43.203 99.5
stria-warmup develop 0 7.980239 43.219 99.5
stria-warmup develop 0 8.014287 43.203 100.0
stria-warmup develop 0 8.048962 43.203 100.0
stria-warmup develop 0 8.082894 43.219 100.0
stria-warmup develop 0 8.116759 43.234 100.0
stria-warmup develop 0 8.150457 43.234 100.0
stria-warmup develop 0 8.183007 43.25 100.0
stria-warmup develop 0 8.217044 43.25 100.0
stria-warmup develop 0 8.251005 43.25 98.4
stria-warmup develop 0 8.293046 43.25 98.4
stria-warmup develop 0 8.326712 43.281 98.4
stria-warmup develop 0 8.36043 43.281 98.4
stria-warmup develop 0 8.394669 43.312 99.4
stria-warmup develop 0 8.428364 43.359 99.4
stria-warmup develop 0 8.461665 43.422 99.4
stria-warmup develop 0 8.494998 43.453 99.4
stria-warmup develop 0 8.529245 43.469 99.7
stria-warmup develop 0 8.56295 43.469 99.7
stria-warmup develop 0 8.59281 43.484 99.7
stria-warmup develop 0 8.628372 43.5 100.0
stria-warmup develop 0 8.65933 43.5 100.0
stria-warmup develop 0 8.693399 43.5 100.0
stria-warmup develop 0 8.727736 43.516 100.0
stria-warmup develop 0 8.761738 43.531 100.0
stria-warmup develop 0 8.795009 43.547 100.0
stria-warmup develop 0 8.829334 43.547 100.0
stria-warmup develop 0 8.866415 43.547 100.0
stria-warmup develop 0 8.900411 43.547 99.6
stria-warmup develop 0 8.93428 43.562 99.6
stria-warmup develop 0 8.966349 43.594 99.6
stria-warmup develop 0 8.998134 43.656 97.4
stria-warmup develop 0 9.027085 43.859 97.4
stria-warmup develop 0 9.060425 43.938 97.4
stria-warmup develop 0 9.094419 43.938 97.4
stria-warmup develop 0 9.127855 43.953 99.7
stria-warmup develop 0 9.157204 43.969 99.7
stria-warmup develop 0 9.196294 43.969 99.7
stria-warmup develop 0 9.230163 44.0 99.7
stria-warmup develop 0 9.265366 44.016 98.8
stria-warmup develop 0 9.297054 44.016 98.8
stria-warmup develop 0 9.330944 44.016 98.8
stria-warmup develop 0 9.364681 44.031 98.8
stria-warmup develop 0 9.398485 44.031 99.5
stria-warmup develop 0 9.432157 44.047 99.5
stria-warmup develop 0 9.463211 44.062 99.5
stria-warmup develop 0 9.496968 44.125 99.5
stria-warmup develop 0 9.530925 44.203 100.0
stria-warmup develop 0 9.564497 44.328 100.0
stria-warmup develop 0 9.598162 44.328 100.0
stria-warmup develop 0 9.630103 44.328 100.0
stria-warmup develop 0 9.664021 44.344 100.0
stria-warmup develop 0 9.69778 44.359 100.0
stria-warmup develop 0 9.731966 44.359 100.0
stria-warmup develop 0 9.765748 44.359 100.0
stria-warmup develop 0 9.799538 44.391 100.0
stria-warmup develop 0 9.8284 44.406 100.0
stria-warmup develop 0 9.862654 44.406 100.0
stria-warmup develop 0 9.896536 44.406 98.9
stria-warmup develop 0 9.927852 44.406 98.9
stria-warmup develop 0 9.961566 44.422 98.9
stria-warmup develop 0 9.995024 44.578 98.9
stria-warmup develop 0 10.028984 44.609 99.6
stria-warmup develop 0 10.062658 44.625 99.6
stria-warmup develop 0 10.096825 44.641 99.6
stria-warmup develop 0 10.130626 44.656 100.0
stria-warmup develop 0 10.164628 44.703 100.0
stria-warmup develop 0 10.198491 44.734 100.0
stria-warmup develop 0 10.232372 44.75 100.0
stria-warmup develop 0 10.266042 44.75 98.8
stria-warmup develop 0 10.297724 44.781 98.8
stria-warmup develop 0 10.330127 44.812 98.8
stria-warmup develop 0 10.364164 44.812 98.8
stria-warmup develop 0 10.393983 44.812 100.0
stria-warmup develop 0 10.427634 44.812 100.0
stria-warmup develop 0 10.46118 44.859 100.0
stria-warmup develop 0 10.494489 44.875 100.0
stria-warmup develop 0 10.528092 44.891 99.6
stria-warmup develop 0 10.561884 44.938 99.6
stria-warmup develop 0 10.595612 44.938 99.6
stria-warmup develop 0 10.624564 44.938 98.4
stria-warmup develop 0 10.656991 44.953 98.4
stria-warmup develop 0 10.690358 44.953 98.4
stria-warmup develop 0 10.722438 44.984 98.4
stria-warmup develop 0 10.756795 45.016 99.3
stria-warmup develop 0 10.790451 45.016 99.3
stria-warmup develop 0 10.823699 45.047 99.3
stria-warmup develop 0 10.857299 45.047 99.3
stria-warmup develop 0 10.889489 45.094 99.0
stria-warmup develop 0 10.923285 45.156 99.0
stria-warmup develop 0 10.957126 45.219 99.0
stria-warmup develop 0 10.990693 45.219 99.0
stria-warmup develop 0 11.023689 45.219 99.1
stria-warmup develop 0 11.05713 45.219 99.1
stria-warmup develop 0 11.090321 45.219 99.1
stria-warmup develop 0 11.124155 45.219 99.1
stria-warmup develop 0 11.155879 45.25 100.0
stria-warmup develop 0 11.1854 45.281 100.0
stria-warmup develop 0 11.217279 45.312 100.0
stria-warmup develop 0 11.251337 45.25 99.0
stria-warmup develop 0 11.282184 45.25 99.0
stria-warmup develop 0 11.315834 45.266 99.0
stria-warmup develop 0 11.349847 45.281 99.0
stria-warmup develop 0 11.383609 45.297 98.7
stria-warmup develop 0 11.417786 45.297 98.7
stria-warmup develop 0 11.451883 45.312 98.7
stria-warmup develop 0 11.485747 45.328 98.7
stria-warmup develop 0 11.519751 45.328 99.1
stria-warmup develop 0 11.551325 45.328 99.1
stria-warmup develop 0 11.584425 45.359 99.1
stria-warmup develop 0 11.618267 45.375 99.1
stria-warmup develop 0 11.65187 45.375 100.0
stria-warmup develop 0 11.686058 45.375 100.0
stria-warmup develop 0 11.716848 45.375 100.0
stria-warmup develop 0 11.750604 45.391 97.5
stria-warmup develop 0 11.779839 45.406 97.5
stria-warmup develop 0 11.813562 45.406 97.5
stria-warmup develop 0 11.847606 45.438 97.5
stria-warmup develop 0 11.881268 45.453 99.7
stria-warmup develop 0 11.914918 45.453 99.7
stria-warmup develop 0 11.949129 45.453 99.7
stria-warmup develop 0 11.983166 45.469 99.7
stria-warmup develop 0 12.01704 45.484 100.0
stria-warmup develop 0 12.050803 45.484 100.0
stria-warmup develop 0 12.084855 45.5 100.0
stria-warmup develop 0 12.118765 45.516 100.0
stria-warmup develop 0 12.15206 45.516 100.0
stria-warmup develop 0 12.185855 45.547 100.0
stria-warmup develop 0 12.216348 45.547 100.0
stria-warmup develop 0 12.255106 45.484 98.5
stria-warmup develop 0 12.290516 45.531 98.5
stria-warmup develop 0 12.327282 45.5 98.5
stria-warmup develop 0 12.361278 45.484 98.5
stria-warmup develop 0 12.395374 45.484 99.5
stria-warmup develop 0 12.429147 45.5 99.5
stria-warmup develop 0 12.463388 45.516 99.5
stria-warmup develop 0 12.497395 45.516 99.5
stria-warmup develop 0 12.530061 45.547 98.5
stria-warmup develop 0 12.562152 45.562 98.5
stria-warmup develop 0 12.595907 45.562 98.5
stria-warmup develop 0 12.629978 45.562 99.2
stria-warmup develop 0 12.663598 45.578 99.2
stria-warmup develop 0 12.700596 45.578 99.2
stria-warmup develop 0 12.733271 45.594 99.2
stria-warmup develop 0 12.762346 45.594 99.0
stria-warmup develop 0 12.795026 45.625 99.0
stria-warmup develop 0 12.829174 45.734 99.0
stria-warmup develop 0 12.860941 45.781 99.0
stria-warmup develop 0 12.894559 45.781 100.0
stria-warmup develop 0 12.928612 45.609 100.0
stria-warmup develop 0 12.963701 45.625 100.0
stria-warmup develop 0 12.997167 45.625 100.0
stria-warmup develop 0 13.030067 45.641 100.0
stria-warmup develop 0 13.063978 45.656 100.0
stria-warmup develop 0 13.097708 45.656 100.0
stria-warmup develop 0 13.130055 45.656 98.8
stria-warmup develop 0 13.164165 45.672 98.8
stria-warmup develop 0 13.197895 45.688 98.8
stria-warmup develop 0 13.231543 45.688 98.8
stria-warmup develop 0 13.271288 45.703 100.0
stria-warmup develop 0 13.3054 45.703 100.0
stria-warmup develop 0 13.339139 45.719 100.0
stria-warmup develop 0 13.371719 45.734 100.0
stria-warmup develop 0 13.405465 45.766 98.5
stria-warmup develop 0 13.43933 45.766 98.5
stria-warmup develop 0 13.473039 45.453 98.5
stria-warmup develop 0 13.506966 45.453 100.0
stria-warmup develop 0 13.540622 45.469 100.0
stria-warmup develop 0 13.577863 45.484 100.0
stria-warmup develop 0 13.608379 45.484 100.0
stria-warmup develop 0 13.637902 45.5 99.8
stria-warmup develop 0 13.671687 45.562 99.8
stria-warmup develop 0 13.7054 45.594 99.8
stria-warmup develop 0 13.73916 45.625 99.8
stria-warmup develop 0 13.773001 45.688 100.0
stria-warmup develop 0 13.80685 45.719 100.0
stria-warmup develop 0 13.840924 45.734 100.0
stria-warmup develop 0 13.875134 45.75 100.0
stria-warmup develop 0 13.908914 45.75 99.2
stria-warmup develop 0 13.942664 45.75 99.2
stria-warmup develop 0 13.976836 45.75 99.2
stria-warmup develop 0 14.011028 45.781 98.4
stria-warmup develop 0 14.042574 45.781 98.4
stria-warmup develop 0 14.076456 45.797 98.4
stria-warmup develop 0 14.106053 45.812 98.4
stria-warmup develop 0 14.140181 45.828 100.0
stria-warmup develop 0 14.170009 45.828 100.0
stria-warmup develop 0 14.20357 45.844 100.0
stria-warmup develop 0 14.237752 45.844 100.0
stria-warmup develop 0 14.271617 45.844 99.0
stria-warmup develop 0 14.305048 45.844 99.0
stria-warmup develop 0 14.338901 45.875 99.0
stria-warmup develop 0 14.372588 45.875 99.0
stria-warmup develop 0 14.405037 45.891 99.7
stria-warmup develop 0 14.438377 45.891 99.7
stria-warmup develop 0 14.473121 45.922 99.7
stria-warmup develop 0 14.505588 45.969 99.3
stria-warmup develop 0 14.535059 46.0 99.3
stria-warmup develop 0 14.569923 46.016 99.3
stria-warmup develop 0 14.602478 46.047 99.3
stria-warmup develop 0 14.636794 46.047 98.4
stria-warmup develop 0 14.670889 46.047 98.4
stria-warmup develop 0 14.706995 46.047 98.4
stria-warmup develop 0 14.740353 46.062 98.4
stria-warmup develop 0 14.774626 46.062 100.0
stria-warmup develop 0 14.808112 46.062 100.0
stria-warmup develop 0 14.84167 46.062 100.0
stria-warmup develop 0 14.875577 46.078 97.5
stria-warmup develop 0 14.911383 46.078 97.5
stria-warmup develop 0 14.940636 46.094 97.5
stria-warmup develop 0 14.974365 45.938 97.5
stria-warmup develop 0 15.011404 45.953 99.6
stria-warmup develop 0 15.045603 45.953 99.6
stria-warmup develop 0 15.079602 45.953 99.6
stria-warmup develop 0 15.113065 45.953 99.6
stria-warmup develop 0 15.147218 45.953 99.7
stria-warmup develop 0 15.177817 45.953 99.7
stria-warmup develop 0 15.211951 45.953 99.7
stria-warmup develop 0 15.245822 45.953 99.7
stria-warmup develop 0 15.279527 45.953 99.0
stria-warmup develop 0 15.313646 45.953 99.0
stria-warmup develop 0 15.347649 45.953 99.0
stria-warmup develop 0 15.380775 45.953 98.5
stria-warmup branch 0 0.000507 0.172 0.0
stria-warmup branch 0 0.033525 13.094 0.0
stria-warmup branch 0 0.067476 21.078 0.0
stria-warmup branch 0 0.098467 25.781 24.0
stria-warmup branch 0 0.132387 30.359 24.0
stria-warmup branch 0 0.162863 30.922 24.0
stria-warmup branch 0 0.19638 30.922 24.0
stria-warmup branch 0 0.23013 30.922 51.2
stria-warmup branch 0 0.263631 30.938 51.2
stria-warmup branch 0 0.297185 30.938 51.2
stria-warmup branch 0 0.330794 30.953 51.2
stria-warmup branch 0 0.364538 30.953 68.8
stria-warmup branch 0 0.398136 30.984 68.8
stria-warmup branch 0 0.431812 31.047 68.8
stria-warmup branch 0 0.465491 31.047 80.4
stria-warmup branch 0 0.498911 31.047 80.4
stria-warmup branch 0 0.529374 31.047 80.4
stria-warmup branch 0 0.562232 31.062 80.4
stria-warmup branch 0 0.595493 31.062 87.0
stria-warmup branch 0 0.629241 31.078 87.0
stria-warmup branch 0 0.662832 31.078 87.0
stria-warmup branch 0 0.696789 31.078 87.0
stria-warmup branch 0 0.728885 31.094 91.9
stria-warmup branch 0 0.762219 31.109 91.9
stria-warmup branch 0 0.796259 31.141 91.9
stria-warmup branch 0 0.826955 31.266 91.9
stria-warmup branch 0 0.860279 31.312 94.8
stria-warmup branch 0 0.893581 31.375 94.8
stria-warmup branch 0 0.927477 31.438 94.8
stria-warmup branch 0 0.960448 31.453 96.6
stria-warmup branch 0 0.998956 31.453 96.6
stria-warmup branch 0 1.032936 31.453 96.6
stria-warmup branch 0 1.066384 31.453 96.6
stria-warmup branch 0 1.097859 31.453 99.9
stria-warmup branch 0 1.131551 31.469 99.9
stria-warmup branch 0 1.165276 31.469 99.9
stria-warmup branch 0 1.199365 31.484 99.9
stria-warmup branch 0 1.23329 31.484 98.2
stria-warmup branch 0 1.26741 31.484 98.2
stria-warmup branch 0 1.301229 31.484 98.2
stria-warmup branch 0 1.334995 31.5 98.3
stria-warmup branch 0 1.36901 31.516 98.3
stria-warmup branch 0 1.402703 31.531 98.3
stria-warmup branch 0 1.436415 31.531 98.3
stria-warmup branch 0 1.465579 31.531 100.0
stria-warmup branch 0 1.499314 31.531 100.0
stria-warmup branch 0 1.53297 31.531 100.0
stria-warmup branch 0 1.562882 31.531 100.0
stria-warmup branch 0 1.596671 31.531 99.1
stria-warmup branch 0 1.630612 31.531 99.1
stria-warmup branch 0 1.663241 31.547 99.1
stria-warmup branch 0 1.698599 31.547 94.8
stria-warmup branch 0 1.757274 31.547 94.8
stria-warmup branch 0 1.795775 31.562 94.8
stria-warmup branch 0 1.829878 31.562 94.8
stria-warmup branch 0 1.864073 31.562 87.4
stria-warmup branch 0 1.897872 31.562 87.4
stria-warmup branch 0 1.931716 31.562 87.4
stria-warmup branch 0 1.965385 31.578 91.9
stria-warmup branch 0 1.998947 31.578 91.9
stria-warmup branch 0 2.033367 31.594 91.9
stria-warmup branch 0 2.064141 31.609 91.9
stria-warmup branch 0 2.098365 31.656 94.6
stria-warmup branch 0 2.132383 31.672 94.6
stria-warmup branch 0 2.166319 31.719 94.6
stria-warmup branch 0 2.200301 31.734 94.6
stria-warmup branch 0 2.234218 31.75 96.5
stria-warmup branch 0 2.268289 31.75 96.5
stria-warmup branch 0 2.302062 31.766 96.5
stria-warmup branch 0 2.336094 31.766 97.6
stria-warmup branch 0 2.369858 31.781 97.6
stria-warmup branch 0 2.403591 31.781 97.6
stria-warmup branch 0 2.435989 33.766 97.6
stria-warmup branch 0 2.473899 35.359 93.2
stria-warmup branch 0 2.50854 37.984 93.2
stria-warmup branch 0 2.538114 40.672 93.2
stria-warmup branch 0 2.571467 43.797 93.2
stria-warmup branch 0 2.60389 46.938 97.1
stria-warmup branch 0 2.637781 47.203 97.1
stria-warmup branch 0 2.669662 47.25 97.1
stria-warmup branch 0 2.703378 47.281 97.1
stria-warmup branch 0 2.737273 47.328 97.6
stria-warmup branch 0 2.771242 47.344 97.6
stria-warmup branch 0 2.805008 47.359 97.6
stria-warmup branch 0 2.838896 47.359 97.4
stria-warmup branch 0 2.873249 47.375 97.4
stria-warmup branch 0 2.902712 47.375 97.4
stria-warmup branch 0 2.936482 47.375 97.4
stria-warmup branch 0 2.968573 47.391 98.8
stria-warmup branch 0 3.001134 47.391 98.8
stria-warmup branch 0 3.034818 47.391 98.8
stria-warmup branch 0 3.06875 47.406 98.8
stria-warmup branch 0 3.102673 47.422 98.1
stria-warmup branch 0 3.136455 47.438 98.1
stria-warmup branch 0 3.170186 47.438 98.1
stria-warmup branch 0 3.204057 47.438 98.1
stria-warmup branch 0 3.237859 47.438 99.3
stria-warmup branch 0 3.27172 47.438 99.3
stria-warmup branch 0 3.302627 47.438 99.3
stria-warmup branch 0 3.336308 47.438 98.5
stria-warmup branch 0 3.369923 47.438 98.5
stria-warmup branch 0 3.403639 47.438 98.5
stria-warmup branch 0 3.437184 47.438 98.5
stria-warmup branch 0 3.468519 47.453 99.0
stria-warmup branch 0 3.502512 47.453 99.0
stria-warmup branch 0 3.531442 47.453 99.0
stria-warmup branch 0 3.565721 47.469 99.0
stria-warmup branch 0 3.600045 47.484 99.1
stria-warmup branch 0 3.634231 47.516 99.1
stria-warmup branch 0 3.668384 47.547 99.1
stria-warmup branch 0 3.698906 47.594 99.1
stria-warmup branch 0 3.73286 47.625 99.1
stria-warmup branch 0 3.765402 47.641 99.1
stria-warmup branch 0 3.799724 47.641 99.1
stria-warmup branch 0 3.833613 47.641 99.1
stria-warmup branch 0 3.867857 47.656 99.4
stria-warmup branch 0 3.901576 47.656 99.4
stria-warmup branch 0 3.932393 47.656 99.4
stria-warmup branch 0 3.966692 47.672 100.0
stria-warmup branch 0 4.000619 47.672 100.0
stria-warmup branch 0 4.033499 47.688 100.0
stria-warmup branch 0 4.067174 47.703 100.0
stria-warmup branch 0 4.100976 47.719 100.0
stria-warmup branch 0 4.135605 47.719 100.0
stria-warmup branch 0 4.169558 47.719 100.0
stria-warmup branch 0 4.203094 47.719 100.0
stria-warmup branch 0 4.235555 47.719 99.9
stria-warmup branch 0 4.269546 47.719 99.9
stria-warmup branch 0 4.303658 47.719 99.9
stria-warmup branch 0 4.335736 47.719 98.4
stria-warmup branch 0 4.369666 47.719 98.4
stria-warmup branch 0 4.402557 47.719 98.4
stria-warmup branch 0 4.436333 47.719 98.4
stria-warmup branch 0 4.47 47.719 100.0
stria-warmup branch 0 4.503624 47.719 100.0
stria-warmup branch 0 4.535569 47.719 100.0
stria-warmup branch 0 4.569426 47.734 100.0
stria-warmup branch 0 4.603331 47.734 98.8
stria-warmup branch 0 4.63717 47.766 98.8
stria-warmup branch 0 4.668703 47.828 98.8
stria-warmup branch 0 4.702667 47.891 98.8
stria-warmup branch 0 4.73644 47.969 100.0
stria-warmup branch 0 4.76859 47.969 100.0
stria-warmup branch 0 4.799856 47.984 100.0
stria-warmup branch 0 4.83565 47.984 100.0
stria-warmup branch 0 4.869146 48.0 98.8
stria-warmup branch 0 4.902384 48.0 98.8
stria-warmup branch 0 4.937924 48.0 98.8
stria-warmup branch 0 4.971595 48.016 99.1
stria-warmup branch 0 5.00544 48.031 99.1
stria-warmup branch 0 5.03811 48.047 99.1
stria-warmup branch 0 5.073012 48.047 99.1
stria-warmup branch 0 5.103202 48.047 100.0
stria-warmup branch 0 5.135203 48.047 100.0
stria-warmup branch 0 5.16868 48.047 100.0
stria-warmup branch 0 5.201872 48.062 100.0
stria-warmup branch 0 5.235725 48.062 98.5
stria-warmup branch 0 5.268539 48.062 98.5
stria-warmup branch 0 5.301905 48.078 98.5
stria-warmup branch 0 5.335674 48.094 99.3
stria-warmup branch 0 5.37054 48.094 99.3
stria-warmup branch 0 5.403863 48.125 99.3
stria-warmup branch 0 5.435942 48.156 99.3
stria-warmup branch 0 5.469514 48.188 99.0
stria-warmup branch 0 5.5031 48.312 99.0
stria-warmup branch 0 5.536855 48.328 99.0
stria-warmup branch 0 5.570547 48.391 99.0
stria-warmup branch 0 5.603916 48.391 100.0
stria-warmup branch 0 5.637439 48.391 100.0
stria-warmup branch 0 5.670544 48.391 100.0
stria-warmup branch 0 5.704122 48.406 100.0
stria-warmup branch 0 5.735687 48.406 99.7
stria-warmup branch 0 5.769358 48.406 99.7
stria-warmup branch 0 5.803143 48.422 99.7
stria-warmup branch 0 5.835242 48.422 99.7
stria-warmup branch 0 5.86782 48.422 99.7
stria-warmup branch 0 5.901847 48.422 99.7
stria-warmup branch 0 5.935255 48.438 99.7
stria-warmup branch 0 5.96882 48.453 100.0
stria-warmup branch 0 6.003597 48.453 100.0
stria-warmup branch 0 6.037387 48.469 100.0
stria-warmup branch 0 6.071141 48.469 100.0
stria-warmup branch 0 6.105632 48.469 100.0
stria-warmup branch 0 6.139795 48.469 100.0
stria-warmup branch 0 6.17689 48.469 100.0
stria-warmup branch 0 6.208036 48.469 100.0
stria-warmup branch 0 6.23862 48.469 99.3
stria-warmup branch 0 6.271479 48.531 99.3
stria-warmup branch 0 6.305272 48.562 99.3
stria-warmup branch 0 6.339161 48.594 98.8
stria-warmup branch 0 6.373067 48.766 98.8
stria-warmup branch 0 6.406887 49.016 98.8
stria-warmup branch 0 6.44068 49.031 98.8
stria-warmup branch 0 6.474827 49.047 99.1
stria-warmup branch 0 6.508671 49.078 99.1
stria-warmup branch 0 6.542456 49.078 99.1
stria-warmup branch 0 6.576444 49.078 99.1
stria-warmup branch 0 6.610509 49.109 100.0
stria-warmup branch 0 6.644309 49.109 100.0
stria-warmup branch 0 6.678118 49.109 100.0
stria-warmup branch 0 6.71173 49.109 98.5
stria-warmup branch 0 6.747162 49.141 98.5
stria-warmup branch 0 6.780807 49.141 98.5
stria-warmup branch 0 6.814546 49.203 98.5
stria-warmup branch 0 6.848741 49.219 99.6
stria-warmup branch 0 6.882868 49.266 99.6
stria-warmup branch 0 6.916925 49.281 99.6
stria-warmup branch 0 6.951278 49.297 99.6
stria-warmup branch 0 6.98544 49.297 99.7
stria-warmup branch 0 7.018516 49.297 99.7
stria-warmup branch 0 7.048845 49.297 99.7
stria-warmup branch 0 7.082506 49.312 99.7
stria-warmup branch 0 7.116356 49.312 100.0
stria-warmup branch 0 7.150347 49.328 100.0
stria-warmup branch 0 7.183497 49.328 100.0
stria-warmup branch 0 7.217243 49.328 99.8
stria-warmup branch 0 7.251206 49.344 99.8
stria-warmup branch 0 7.285076 49.359 99.8
stria-warmup branch 0 7.318836 49.359 99.8
stria-warmup branch 0 7.352492 49.375 100.0
stria-warmup branch 0 7.386598 49.375 100.0
stria-warmup branch 0 7.420523 49.375 100.0
stria-warmup branch 0 7.452361 49.375 100.0
stria-warmup branch 0 7.486184 49.375 99.3
stria-warmup branch 0 7.519602 49.391 99.3
stria-warmup branch 0 7.552468 49.391 99.3
stria-warmup branch 0 7.586469 49.391 99.3
stria-warmup branch 0 7.620408 49.422 99.4
stria-warmup branch 0 7.654161 49.453 99.4
stria-warmup branch 0 7.688001 49.484 99.4
stria-warmup branch 0 7.721798 49.531 99.3
stria-warmup branch 0 7.755602 49.562 99.3
stria-warmup branch 0 7.789325 49.578 99.3
stria-warmup branch 0 7.823422 49.578 99.3
stria-warmup branch 0 7.857574 49.578 100.0
stria-warmup branch 0 7.886612 49.594 100.0
stria-warmup branch 0 7.918513 49.594 100.0
stria-warmup branch 0 7.952477 49.609 100.0
stria-warmup branch 0 7.986428 49.609 98.8
stria-warmup branch 0 8.02057 49.609 98.8
stria-warmup branch 0 8.054301 49.609 98.8
stria-warmup branch 0 8.088446 49.625 99.2
stria-warmup branch 0 8.127423 49.641 99.2
stria-warmup branch 0 8.161641 49.516 99.2
stria-warmup branch 0 8.19373 49.516 99.2
stria-warmup branch 0 8.227817 49.516 99.0
stria-warmup branch 0 8.260182 45.359 99.0
stria-warmup branch 0 8.293884 45.359 99.0
stria-warmup branch 0 8.327741 45.375 99.0
stria-warmup branch 0 8.361375 45.375 99.4
stria-warmup branch 0 8.390499 45.406 99.4
stria-warmup branch 0 8.421439 45.438 99.4
stria-warmup branch 0 8.455373 45.5 99.4
stria-warmup branch 0 8.489212 45.547 99.6
stria-warmup branch 0 8.520664 44.641 99.6
stria-warmup branch 0 8.554813 44.641 99.6
stria-warmup branch 0 8.588075 44.656 99.6
stria-warmup branch 0 8.621963 44.656 99.9
stria-warmup branch 0 8.655735 44.672 99.9
stria-warmup branch 0 8.687737 44.672 99.9
stria-warmup branch 0 8.719216 44.688 99.1
stria-warmup branch 0 8.754034 44.703 99.1
stria-warmup branch 0 8.788053 44.719 99.1
stria-warmup branch 0 8.821719 44.719 99.1
stria-warmup branch 0 8.852447 44.719 99.0
stria-warmup branch 0 8.886359 44.719 99.0
stria-warmup branch 0 8.920082 44.734 99.0
stria-warmup branch 0 8.953782 44.766 99.0
stria-warmup branch 0 8.987573 44.828 100.0
stria-warmup branch 0 9.021499 45.094 100.0
stria-warmup branch 0 9.055401 45.109 100.0
stria-warmup branch 0 9.089454 45.125 98.9
stria-warmup branch 0 9.12099 45.125 98.9
stria-warmup branch 0 9.155039 45.141 98.9
stria-warmup branch 0 9.188809 45.141 98.9
stria-warmup branch 0 9.222421 45.172 99.7
stria-warmup branch 0 9.256496 45.188 99.7
stria-warmup branch 0 9.290408 45.188 99.7
stria-warmup branch 0 9.324081 45.188 99.7
stria-warmup branch 0 9.355921 45.203 100.0
stria-warmup branch 0 9.386192 45.203 100.0
stria-warmup branch 0 9.419002 45.219 100.0
stria-warmup branch 0 9.45183 45.234 100.0
stria-warmup branch 0 9.485168 45.281 99.1
stria-warmup branch 0 9.520487 45.344 99.1
stria-warmup branch 0 9.553668 45.438 99.1
stria-warmup branch 0 9.585154 45.5 99.1
stria-warmup branch 0 9.618901 45.5 98.6
stria-warmup branch 0 9.652673 45.516 98.6
stria-warmup branch 0 9.686549 45.516 98.6
stria-warmup branch 0 9.720482 45.531 98.8
stria-warmup branch 0 9.754444 45.531 98.8
stria-warmup branch 0 9.788236 45.547 98.8
stria-warmup branch 0 9.818722 45.562 98.8
stria-warmup branch 0 9.852647 45.578 99.5
stria-warmup branch 0 9.885844 45.578 99.5
stria-warmup branch 0 9.918878 45.578 99.5
stria-warmup branch 0 9.950415 45.594 99.5
stria-warmup branch 0 9.984092 45.75 99.4
stria-warmup branch 0 10.014079 45.766 99.4
stria-warmup branch 0 10.047619 45.812 99.4
stria-warmup branch 0 10.077287 45.812 99.4
stria-warmup branch 0 10.111013 45.844 99.5
stria-warmup branch 0 10.144867 45.875 99.5
stria-warmup branch 0 10.176838 45.891 99.5
stria-warmup branch 0 10.207049 45.922 99.5
stria-warmup branch 0 10.240966 45.938 99.4
stria-warmup branch 0 10.274708 45.953 99.4
stria-warmup branch 0 10.308171 45.969 99.4
stria-warmup branch 0 10.341647 46.0 97.7
stria-warmup branch 0 10.375676 46.0 97.7
stria-warmup branch 0 10.409458 46.0 97.7
stria-warmup branch 0 10.440001 46.016 97.7
stria-warmup branch 0 10.474027 46.062 100.0
stria-warmup branch 0 10.507854 46.062 100.0
stria-warmup branch 0 10.541315 46.094 100.0
stria-warmup branch 0 10.575015 46.125 100.0
stria-warmup branch 0 10.608417 46.125 100.0
stria-warmup branch 0 10.643518 46.125 100.0
stria-warmup branch 0 10.677072 46.141 100.0
stria-warmup branch 0 10.710782 46.156 100.0
stria-warmup branch 0 10.743597 46.203 99.6
stria-warmup branch 0 10.777631 46.203 99.6
stria-warmup branch 0 10.811575 46.219 99.6
stria-warmup branch 0 10.844156 46.234 99.6
stria-warmup branch 0 10.878221 46.266 99.6
stria-warmup branch 0 10.912075 46.328 99.6
stria-warmup branch 0 10.945457 46.359 99.6
stria-warmup branch 0 10.979408 46.406 100.0
stria-warmup branch 0 11.012936 46.406 100.0
stria-warmup branch 0 11.047059 46.406 100.0
stria-warmup branch 0 11.080965 46.406 100.0
stria-warmup branch 0 11.115017 46.406 100.0
stria-warmup branch 0 11.149103 46.422 100.0
stria-warmup branch 0 11.183197 46.469 100.0
stria-warmup branch 0 11.217534 46.531 98.8
stria-warmup branch 0 11.251502 46.578 98.8
stria-warmup branch 0 11.285519 46.578 98.8
stria-warmup branch 0 11.319385 46.594 98.8
stria-warmup branch 0 11.353433 46.625 98.9
stria-warmup branch 0 11.387209 46.625 98.9
stria-warmup branch 0 11.419355 46.625 98.9
stria-warmup branch 0 11.452515 46.641 98.9
stria-warmup branch 0 11.486712 46.656 100.0
stria-warmup branch 0 11.52049 46.656 100.0
stria-warmup branch 0 11.554437 46.672 100.0
stria-warmup branch 0 11.590674 46.688 97.4
stria-warmup branch 0 11.624687 46.703 97.4
stria-warmup branch 0 11.658526 46.703 97.4
stria-warmup branch 0 11.693515 46.156 97.4
stria-warmup branch 0 11.727384 46.172 99.5
stria-warmup branch 0 11.761011 46.172 99.5
stria-warmup branch 0 11.793516 46.188 99.5
stria-warmup branch 0 11.82745 46.203 99.5
stria-warmup branch 0 11.861315 45.938 100.0
stria-warmup branch 0 11.89682 45.953 100.0
stria-warmup branch 0 11.930669 45.953 100.0
stria-warmup branch 0 11.963556 45.953 100.0
stria-warmup branch 0 11.997609 45.969 99.1
stria-warmup branch 0 12.031807 45.984 99.1
stria-warmup branch 0 12.065823 45.984 99.1
stria-warmup branch 0 12.09969 46.016 100.0
stria-warmup branch 0 12.133545 46.016 100.0
stria-warmup branch 0 12.167267 46.016 100.0
stria-warmup branch 0 12.20123 46.047 100.0
stria-warmup branch 0 12.235241 46.062 100.0
stria-warmup branch 0 12.269409 46.109 100.0
stria-warmup branch 0 12.299676 46.188 100.0
stria-warmup branch 0 12.333602 46.234 100.0
stria-warmup branch 0 12.366821 46.25 99.4
stria-warmup branch 0 12.396412 46.25 99.4
stria-warmup branch 0 12.430145 46.266 99.4
stria-warmup branch 0 12.462164 46.281 99.4
stria-warmup branch 0 12.495947 46.281 100.0
stria-warmup branch 0 12.529896 46.312 100.0
stria-warmup branch 0 12.56372 46.328 100.0
stria-warmup branch 0 12.597877 46.328 98.7
stria-warmup branch 0 12.631974 46.328 98.7
stria-warmup branch 0 12.665465 46.344 98.7
stria-warmup branch 0 12.69946 46.094 98.7
stria-warmup branch 0 12.735943 46.094 99.5
stria-warmup branch 0 12.767838 46.125 99.5
stria-warmup branch 0 12.801529 46.188 99.5
stria-warmup branch 0 12.835508 46.266 99.5
stria-warmup branch 0 12.868462 46.281 100.0
stria-warmup branch 0 12.901801 46.281 100.0
stria-warmup branch 0 12.935476 46.297 100.0
stria-warmup branch 0 12.969296 46.312 98.5
stria-warmup branch 0 13.003272 46.312 98.5
stria-warmup branch 0 13.035321 46.344 98.5
stria-warmup branch 0 13.069465 46.359 98.5
stria-warmup branch 0 13.103302 46.359 100.0
stria-warmup branch 0 13.137339 46.375 100.0
stria-warmup branch 0 13.168895 46.375 100.0
stria-warmup branch 0 13.203087 46.391 100.0
stria-warmup branch 0 13.235182 46.391 98.8
stria-warmup branch 0 13.268849 46.406 98.8
stria-warmup branch 0 13.302723 46.406 98.8
stria-warmup branch 0 13.336552 46.422 98.8
stria-warmup branch 0 13.370601 46.438 99.1
stria-warmup branch 0 13.404396 46.453 99.1
stria-warmup branch 0 13.438105 46.453 99.1
stria-warmup branch 0 13.470721 46.453 99.3
stria-warmup branch 0 13.504436 46.453 99.3
stria-warmup branch 0 13.538533 46.469 99.3
stria-warmup branch 0 13.572555 46.484 99.3
stria-warmup branch 0 13.606567 46.484 100.0
stria-warmup branch 0 13.639539 46.562 100.0
stria-warmup branch 0 13.673485 46.578 100.0
stria-warmup branch 0 13.707562 46.609 100.0
stria-warmup branch 0 13.741358 46.641 98.9
stria-warmup branch 0 13.775219 46.688 98.9
stria-warmup branch 0 13.809188 46.719 98.9
stria-warmup branch 0 13.843217 46.734 98.3
stria-warmup branch 0 13.87707 46.75 98.3
stria-warmup branch 0 13.906536 46.75 98.3
stria-warmup branch 0 13.938044 46.75 98.3
stria-warmup branch 0 13.971785 46.75 99.5
stria-warmup branch 0 14.005606 46.781 99.5
stria-warmup branch 0 14.039406 46.781 99.5
stria-warmup branch 0 14.073282 46.797 99.5
stria-warmup branch 0 14.103828 46.812 99.4
stria-warmup branch 0 14.135678 46.828 99.4
stria-warmup branch 0 14.169673 46.828 99.4
stria-warmup branch 0 14.203981 46.781 99.4
stria-warmup branch 0 14.23783 46.781 99.5
stria-warmup branch 0 14.270735 45.094 99.5
stria-warmup branch 0 14.305655 45.062 99.5
stria-warmup branch 0 14.34965 43.875 100.0
stria-warmup branch 0 14.383277 43.891 100.0
stria-warmup branch 0 14.417064 43.891 100.0
stria-warmup branch 0 14.450872 43.891 100.0
stria-warmup branch 0 14.484779 43.938 99.4
stria-warmup branch 0 14.518903 43.984 99.4
stria-warmup branch 0 14.552792 44.0 99.4
stria-warmup branch 0 14.586652 44.047 99.4
stria-warmup branch 0 14.620626 44.047 100.0
stria-warmup branch 0 14.654756 44.047 100.0
stria-warmup branch 0 14.686454 44.047 100.0
stria-warmup branch 0 14.720268 44.047 99.0
stria-warmup branch 0 14.750533 44.062 99.0
stria-warmup branch 0 14.784424 44.062 99.0
stria-warmup branch 0 14.818412 44.062 99.0
stria-warmup branch 0 14.852105 44.078 99.6
stria-warmup branch 0 14.886202 44.078 99.6
stria-warmup branch 0 14.919854 44.094 99.6
stria-warmup branch 0 14.953886 44.094 99.6
stria-warmup branch 0 14.983906 44.094 99.9
stria-warmup branch 0 15.020857 44.094 99.9
stria-warmup branch 0 15.057289 44.094 99.9
stria-warmup branch 0 15.090958 44.094 99.9
stria-warmup branch 0 15.124449 44.094 100.0
stria-warmup branch 0 15.157985 44.094 100.0
stria-warmup branch 0 15.202532 44.094 100.0
stria-warmup branch 0 15.236196 44.094 99.4
stria-warmup branch 0 15.269837 44.094 99.4
stria-warmup branch 0 15.303276 44.094 99.4
stria-warmup branch 0 15.336797 44.094 99.4
stria-warmup branch 0 15.370434 44.094 100.0
stria-warmup branch 0 15.404084 45.719 100.0
stria develop 1 0.00061 0.172 0.0
stria develop 1 0.034734 17.219 6.6
stria develop 1 0.068396 22.406 6.6
stria develop 1 0.102261 27.484 6.6
stria develop 1 0.135925 30.297 6.6
stria develop 1 0.169207 30.297 42.6
stria develop 1 0.202689 30.297 42.6
stria develop 1 0.236555 30.297 42.6
stria develop 1 0.266616 30.312 42.6
stria develop 1 0.300312 30.375 62.8
stria develop 1 0.334128 30.375 62.8
stria develop 1 0.368046 30.391 62.8
stria develop 1 0.401608 30.406 76.2
stria develop 1 0.435665 30.484 76.2
stria develop 1 0.469514 30.484 76.2
stria develop 1 0.503202 30.484 76.2
stria develop 1 0.536814 30.484 86.4
stria develop 1 0.570583 30.5 86.4
stria develop 1 0.604181 30.516 86.4
stria develop 1 0.63735 30.516 86.4
stria develop 1 0.671424 30.516 91.8
stria develop 1 0.705639 30.516 91.8
stria develop 1 0.73972 30.547 91.8
stria develop 1 0.77375 30.547 91.8
stria develop 1 0.80762 30.703 96.3
stria develop 1 0.841764 30.797 96.3
stria develop 1 0.875633 30.922 96.3
stria develop 1 0.909528 30.922 95.2
stria develop 1 0.94272 30.938 95.2
stria develop 1 0.973909 30.938 95.2
stria develop 1 1.007863 30.938 95.2
stria develop 1 1.041499 30.938 97.1
stria develop 1 1.075295 30.938 97.1
stria develop 1 1.109062 30.953 97.1
stria develop 1 1.142859 30.953 97.1
stria develop 1 1.176631 30.969 98.5
stria develop 1 1.210335 30.969 98.5
stria develop 1 1.244402 30.969 98.5
stria develop 1 1.278159 30.969 97.3
stria develop 1 1.311959 30.984 97.3
stria develop 1 1.346014 31.0 97.3
stria develop 1 1.380247 31.016 97.3
stria develop 1 1.414172 31.016 99.8
stria develop 1 1.445253 31.016 99.8
stria develop 1 1.479008 31.016 99.8
stria develop 1 1.50907 31.016 99.8
stria develop 1 1.542813 31.016 99.7
stria develop 1 1.576678 31.016 99.7
stria develop 1 1.611147 31.016 99.7
stria develop 1 1.644888 31.031 99.7
stria develop 1 1.679136 31.031 98.4
stria develop 1 1.713071 31.047 98.4
stria develop 1 1.747038 31.047 98.4
stria develop 1 1.784809 31.047 100.0
stria develop 1 1.81904 31.047 100.0
stria develop 1 1.852871 31.062 100.0
stria develop 1 1.8878 31.062 100.0
stria develop 1 1.920114 31.062 98.4
stria develop 1 1.954033 31.094 98.4
stria develop 1 1.98792 31.125 98.4
stria develop 1 2.021644 31.156 98.4
stria develop 1 2.055517 31.203 98.9
stria develop 1 2.089054 31.219 98.9
stria develop 1 2.122897 31.219 98.9
stria develop 1 2.156579 31.234 99.9
stria develop 1 2.190551 31.25 99.9
stria develop 1 2.224287 31.25 99.9
stria develop 1 2.256377 31.266 99.9
stria develop 1 2.288696 31.266 100.0
stria develop 1 2.322626 33.0 100.0
stria develop 1 2.356201 35.781 100.0
stria develop 1 2.390222 39.219 100.0
stria develop 1 2.430483 42.406 100.0
stria develop 1 2.46481 45.859 100.0
stria develop 1 2.498383 46.688 100.0
stria develop 1 2.533652 46.719 98.4
stria develop 1 2.56767 46.75 98.4
stria develop 1 2.602517 46.812 98.4
stria develop 1 2.634352 46.828 98.4
stria develop 1 2.668173 46.844 99.2
stria develop 1 2.701983 46.844 99.2
stria develop 1 2.73813 46.844 99.2
stria develop 1 2.772046 46.859 99.2
stria develop 1 2.806172 46.859 99.0
stria develop 1 2.840504 46.875 99.0
stria develop 1 2.874438 46.875 99.0
stria develop 1 2.908511 46.875 99.6
stria develop 1 2.942316 46.891 99.6
stria develop 1 2.97505 46.906 99.6
stria develop 1 3.009191 46.922 99.6
stria develop 1 3.043333 46.922 100.0
stria develop 1 3.077561 46.922 100.0
stria develop 1 3.106679 46.922 100.0
stria develop 1 3.147604 46.922 100.0
stria develop 1 3.18481 46.922 96.6
stria develop 1 3.228959 46.844 96.6
stria develop 1 3.260617 46.844 96.6
stria develop 1 3.292428 46.844 94.9
stria develop 1 3.32655 42.344 94.9
stria develop 1 3.360382 42.375 94.9
stria develop 1 3.392384 38.094 94.9
stria develop 1 3.426979 38.094 96.3
stria develop 1 3.460385 38.094 96.3
stria develop 1 3.493229 38.125 96.3
stria develop 1 3.522704 38.125 96.3
stria develop 1 3.557049 38.188 97.5
stria develop 1 3.590872 38.219 97.5
stria develop 1 3.624203 38.25 97.5
stria develop 1 3.658075 38.266 98.4
stria develop 1 3.69208 37.953 98.4
stria develop 1 3.72922 37.953 98.4
stria develop 1 3.761326 37.953 98.4
stria develop 1 3.795431 37.969 100.0
stria develop 1 3.827989 37.969 100.0
stria develop 1 3.861411 37.984 100.0
stria develop 1 3.89534 37.984 100.0
stria develop 1 3.929209 38.0 99.0
stria develop 1 3.961312 38.016 99.0
stria develop 1 3.99466 38.031 99.0
stria develop 1 4.031437 38.047 98.4
stria develop 1 4.061373 38.047 98.4
stria develop 1 4.095657 38.047 98.4
stria develop 1 4.129712 38.047 98.4
stria develop 1 4.164113 38.047 100.0
stria develop 1 4.194641 38.047 100.0
stria develop 1 4.22799 38.047 100.0
stria develop 1 4.262062 38.047 100.0
stria develop 1 4.296024 38.047 98.5
stria develop 1 4.328345 37.938 98.5
stria develop 1 4.363353 37.938 98.5
stria develop 1 4.397352 37.953 98.5
stria develop 1 4.434156 37.953 100.0
stria develop 1 4.467882 37.969 100.0
stria develop 1 4.502992 37.969 100.0
stria develop 1 4.53632 38.0 99.1
stria develop 1 4.567508 38.062 99.1
stria develop 1 4.602834 38.125 99.1
stria develop 1 4.632362 37.953 99.1
stria develop 1 4.666522 38.156 98.7
stria develop 1 4.700012 38.156 98.7
stria develop 1 4.733888 38.172 98.7
stria develop 1 4.767774 38.172 98.7
stria develop 1 4.801618 38.188 99.0
stria develop 1 4.835381 38.188 99.0
stria develop 1 4.867158 38.203 99.0
stria develop 1 4.900658 38.219 99.0
stria develop 1 4.92922 38.25 99.2
stria develop 1 4.963067 38.25 99.2
stria develop 1 4.994678 38.25 99.2
stria develop 1 5.025539 38.25 99.2
stria develop 1 5.059448 38.25 100.0
stria develop 1 5.093338 38.266 100.0
stria develop 1 5.123978 38.266 100.0
stria develop 1 5.156582 38.266 98.7
stria develop 1 5.190661 38.281 98.7
stria develop 1 5.224597 38.297 98.7
stria develop 1 5.258061 38.25 98.7
stria develop 1 5.291118 38.25 100.0
stria develop 1 5.321285 38.297 100.0
stria develop 1 5.354482 38.312 100.0
stria develop 1 5.388198 38.406 100.0
stria develop 1 5.424891 38.469 98.8
stria develop 1 5.458828 38.484 98.8
stria develop 1 5.491974 38.547 98.8
stria develop 1 5.525643 38.547 98.8
stria develop 1 5.559802 38.547 99.3
stria develop 1 5.59374 38.562 99.3
stria develop 1 5.627881 38.578 99.3
stria develop 1 5.661057 38.578 99.3
stria develop 1 5.698731 38.578 99.3
stria develop 1 5.730327 38.594 99.3
stria develop 1 5.762494 38.594 99.3
stria develop 1 5.796996 38.594 99.9
stria develop 1 5.831157 38.609 99.9
stria develop 1 5.865002 38.625 99.9
stria develop 1 5.898879 38.625 99.9
stria develop 1 5.932805 38.641 99.6
stria develop 1 5.965522 38.641 99.6
stria develop 1 5.999587 38.641 99.6
stria develop 1 6.033758 38.641 98.9
stria develop 1 6.069926 38.641 98.9
stria develop 1 6.103883 38.641 98.9
stria develop 1 6.138333 38.641 98.9
stria develop 1 6.167616 38.656 98.4
stria develop 1 6.201384 38.719 98.4
stria develop 1 6.235569 38.75 98.4
stria develop 1 6.265503 38.797 98.4
stria develop 1 6.298351 39.141 99.1
stria develop 1 6.327878 39.203 99.1
stria develop 1 6.361632 39.219 99.1
stria develop 1 6.395526 39.234 99.1
stria develop 1 6.429299 39.266 99.5
stria develop 1 6.462655 39.266 99.5
stria develop 1 6.496403 39.266 99.5
stria develop 1 6.530414 42.812 99.5
stria develop 1 6.564841 42.812 98.8
stria develop 1 6.599227 42.812 98.8
stria develop 1 6.633445 42.828 98.8
stria develop 1 6.667797 42.859 100.0
stria develop 1 6.70185 42.891 100.0
stria develop 1 6.736189 42.922 100.0
stria develop 1 6.770224 42.969 100.0
stria develop 1 6.804392 42.984 100.0
stria develop 1 6.838732 43.0 100.0
stria develop 1 6.870866 43.016 100.0
stria develop 1 6.904789 43.016 100.0
stria develop 1 6.938411 43.016 98.8
stria develop 1 6.971867 43.031 98.8
stria develop 1 7.005289 43.031 98.8
stria develop 1 7.039448 43.031 100.0
stria develop 1 7.073193 43.047 100.0
stria develop 1 7.106891 43.047 100.0
stria develop 1 7.136362 43.0 100.0
stria develop 1 7.184181 42.984 99.0
stria develop 1 7.218298 42.984 99.0
stria develop 1 7.252331 43.0 99.0
stria develop 1 7.285309 43.0 97.7
stria develop 1 7.315018 43.0 97.7
stria develop 1 7.349554 43.0 97.7
stria develop 1 7.383699 43.0 97.7
stria develop 1 7.418003 43.0 98.7
stria develop 1 7.451811 43.016 98.7
stria develop 1 7.486141 43.016 98.7
stria develop 1 7.519233 43.016 98.7
stria develop 1 7.553177 43.047 98.4
stria develop 1 7.5834 43.078 98.4
stria develop 1 7.62184 43.109 98.4
stria develop 1 7.655417 43.156 98.4
stria develop 1 7.687481 43.031 98.8
stria develop 1 7.721293 43.047 98.8
stria develop 1 7.754147 43.047 98.8
stria develop 1 7.787928 43.047 99.7
stria develop 1 7.81782 43.062 99.7
stria develop 1 7.851994 43.062 99.7
stria develop 1 7.886017 43.078 99.7
stria develop 1 7.920199 43.078 99.2
stria develop 1 7.954012 43.078 99.2
stria develop 1 7.987752 43.078 99.2
stria develop 1 8.021142 43.094 99.2
stria develop 1 8.054691 43.109 99.3
stria develop 1 8.090182 43.125 99.3
stria develop 1 8.124022 43.125 99.3
stria develop 1 8.157837 43.125 99.3
stria develop 1 8.191515 43.125 99.6
stria develop 1 8.224842 43.125 99.6
stria develop 1 8.256725 43.156 99.6
stria develop 1 8.290472 43.156 100.0
stria develop 1 8.323923 43.188 100.0
stria develop 1 8.357542 43.25 100.0
stria develop 1 8.391599 43.312 100.0
stria develop 1 8.425629 43.344 99.2
stria develop 1 8.458887 43.344 99.2
stria develop 1 8.49266 43.359 99.2
stria develop 1 8.526583 43.359 99.2
stria develop 1 8.560355 43.375 99.2
stria develop 1 8.591319 43.375 99.2
stria develop 1 8.625177 43.375 99.2
stria develop 1 8.65936 43.406 99.6
stria develop 1 8.693393 43.422 99.6
stria develop 1 8.727267 43.422 99.6
stria develop 1 8.761104 43.422 99.6
stria develop 1 8.794205 43.422 100.0
stria develop 1 8.828231 43.438 100.0
stria develop 1 8.862166 43.453 100.0
stria develop 1 8.895849 43.5 100.0
stria develop 1 8.92967 43.672 100.0
stria develop 1 8.963431 43.812 100.0
stria develop 1 8.997292 43.812 100.0
stria develop 1 9.031025 43.828 100.0
stria develop 1 9.064721 43.844 99.1
stria develop 1 9.098395 43.844 99.1
stria develop 1 9.129278 43.875 99.1
stria develop 1 9.162849 43.891 99.6
stria develop 1 9.193464 43.891 99.6
stria develop 1 9.227049 43.891 99.6
stria develop 1 9.261002 43.906 99.6
stria develop 1 9.294857 43.906 99.3
stria develop 1 9.328514 43.922 99.3
stria develop 1 9.362151 43.938 99.3
stria develop 1 9.391551 43.984 99.3
stria develop 1 9.424926 44.047 99.6
stria develop 1 9.458549 44.141 99.6
stria develop 1 9.492234 44.203 99.6
stria develop 1 9.52546 44.203 99.6
stria develop 1 9.559129 44.219 100.0
stria develop 1 9.592626 44.219 100.0
stria develop 1 9.626122 44.234 100.0
stria develop 1 9.659734 44.234 99.1
stria develop 1 9.688623 44.25 99.1
stria develop 1 9.723202 44.281 99.1
stria develop 1 9.756964 44.281 99.1
stria develop 1 9.790311 44.281 100.0
stria develop 1 9.823932 44.281 100.0
stria develop 1 9.85765 44.297 100.0
stria develop 1 9.891363 44.469 100.0
stria develop 1 9.925213 44.5 99.6
stria develop 1 9.958861 44.516 99.6
stria develop 1 9.992298 44.531 99.6
stria develop 1 10.025855 44.547 99.6
stria develop 1 10.054842 44.594 99.6
stria develop 1 10.088982 44.594 99.6
stria develop 1 10.122701 44.641 99.6
stria develop 1 10.156278 44.641 99.6
stria develop 1 10.189809 44.672 100.0
stria develop 1 10.224691 44.703 100.0
stria develop 1 10.254311 44.703 100.0
stria develop 1 10.288238 44.703 99.0
stria develop 1 10.322185 44.703 99.0
stria develop 1 10.352011 44.719 99.0
stria develop 1 10.385957 44.766 99.0
stria develop 1 10.419729 44.781 99.7
stria develop 1 10.45359 44.812 99.7
stria develop 1 10.48789 44.828 99.7
stria develop 1 10.520803 44.828 99.7
stria develop 1 10.551848 44.844 99.6
stria develop 1 10.5857 44.844 99.6
stria develop 1 10.619432 44.875 99.6
stria develop 1 10.653537 44.906 99.6
stria develop 1 10.687498 44.906 100.0
stria develop 1 10.721329 44.938 100.0
stria develop 1 10.754895 44.938 100.0
stria develop 1 10.788592 44.984 99.6
stria develop 1 10.822632 45.062 99.6
stria develop 1 10.854485 45.109 99.6
stria develop 1 10.887959 45.109 99.6
stria develop 1 10.921706 45.109 100.0
stria develop 1 10.95557 45.109 100.0
stria develop 1 10.98973 45.109 100.0
stria develop 1 11.019114 45.109 100.0
stria develop 1 11.053 45.156 98.8
stria develop 1 11.086959 45.172 98.8
stria develop 1 11.119175 45.203 98.8
stria develop 1 11.15331 45.25 98.8
stria develop 1 11.187307 45.25 100.0
stria develop 1 11.220815 45.281 100.0
stria develop 1 11.254123 45.297 100.0
stria develop 1 11.28786 45.297 98.1
stria develop 1 11.32077 45.297 98.1
stria develop 1 11.35446 45.312 98.1
stria develop 1 11.387907 45.359 98.1
stria develop 1 11.421061 45.359 99.8
stria develop 1 11.454932 45.375 99.8
stria develop 1 11.488985 45.406 99.8
stria develop 1 11.522819 45.406 99.8
stria develop 1 11.556543 45.406 98.9
stria develop 1 11.590345 45.406 98.9
stria develop 1 11.624167 45.422 98.9
stria develop 1 11.654388 45.438 98.9
stria develop 1 11.688333 45.438 100.0
stria develop 1 11.72216 45.469 100.0
stria develop 1 11.756044 45.484 100.0
stria develop 1 11.789941 45.484 98.7
stria develop 1 11.823633 45.484 98.7
stria develop 1 11.854771 45.5 98.7
stria develop 1 11.888677 45.516 98.7
stria develop 1 11.920785 45.516 99.9
stria develop 1 11.95413 45.531 99.9
stria develop 1 11.988195 45.547 99.9
stria develop 1 12.021873 45.547 99.9
stria develop 1 12.055758 45.578 100.0
stria develop 1 12.089847 45.578 100.0
stria develop 1 12.123486 45.609 100.0
stria develop 1 12.157077 45.688 100.0
stria develop 1 12.190824 45.766 100.0
stria develop 1 12.224634 45.781 100.0
stria develop 1 12.258905 45.781 100.0
stria develop 1 12.292708 45.797 99.6
stria develop 1 12.327017 45.812 99.6
stria develop 1 12.360736 45.812 99.6
stria develop 1 12.39445 45.844 99.6
stria develop 1 12.428262 45.859 99.4
stria develop 1 12.462377 45.859 99.4
stria develop 1 12.495791 45.859 99.4
stria develop 1 12.529305 45.875 99.4
stria develop 1 12.56245 45.875 99.6
stria develop 1 12.596425 45.891 99.6
stria develop 1 12.630327 45.906 99.6
stria develop 1 12.663903 45.969 98.5
stria develop 1 12.697791 46.047 98.5
stria develop 1 12.731626 46.078 98.5
stria develop 1 12.763044 46.078 98.5
stria develop 1 12.796862 46.094 99.8
stria develop 1 12.830773 46.109 99.8
stria develop 1 12.864533 46.109 99.8
stria develop 1 12.898228 46.141 99.8
stria develop 1 12.931845 46.156 98.8
stria develop 1 12.964497 46.156 98.8
stria develop 1 12.997841 46.172 98.8
stria develop 1 13.031843 46.172 98.8
stria develop 1 13.065434 46.188 100.0
stria develop 1 13.09928 46.141 100.0
stria develop 1 13.139485 46.141 100.0
stria develop 1 13.173163 46.141 99.1
stria develop 1 13.206772 46.172 99.1
stria develop 1 13.240541 46.188 99.1
stria develop 1 13.274547 45.984 99.1
stria develop 1 13.308231 45.984 99.8
stria develop 1 13.348781 45.984 99.8
stria develop 1 13.382732 46.0 99.8
stria develop 1 13.416637 46.016 100.0
stria develop 1 13.450626 46.016 100.0
stria develop 1 13.485217 46.031 100.0
stria develop 1 13.515688 46.094 100.0
stria develop 1 13.549546 46.109 99.9
stria develop 1 13.583674 46.156 99.9
stria develop 1 13.615517 46.203 99.9
stria develop 1 13.649315 46.25 99.9
stria develop 1 13.683226 46.266 99.3
stria develop 1 13.716999 46.266 99.3
stria develop 1 13.750838 46.281 99.3
stria develop 1 13.784494 46.281 99.3
stria develop 1 13.818158 46.281 100.0
stria develop 1 13.848785 46.312 100.0
stria develop 1 13.882755 46.312 100.0
stria develop 1 13.91656 46.312 98.8
stria develop 1 13.950647 46.344 98.8
stria develop 1 13.984467 46.359 98.8
stria develop 1 14.018242 46.312 98.8
stria develop 1 14.050148 46.328 100.0
stria develop 1 14.079544 46.328 100.0
stria develop 1 14.114686 46.328 100.0
stria develop 1 14.14856 46.328 100.0
stria develop 1 14.179625 46.344 99.7
stria develop 1 14.213305 46.359 99.7
stria develop 1 14.247085 46.375 99.7
stria develop 1 14.28083 46.375 99.7
stria develop 1 14.314645 46.406 98.9
stria develop 1 14.348469 46.438 98.9
stria develop 1 14.385018 46.484 98.9
stria develop 1 14.418598 46.5 99.3
stria develop 1 14.452302 46.531 99.3
stria develop 1 14.48622 46.531 99.3
stria develop 1 14.519591 46.531 99.3
stria develop 1 14.552495 46.531 99.4
stria develop 1 14.585871 46.547 99.4
stria develop 1 14.619349 46.547 99.4
stria develop 1 14.653097 46.547 99.4
stria develop 1 14.686675 46.547 99.6
stria develop 1 14.717515 46.562 99.6
stria develop 1 14.75123 46.562 99.6
stria develop 1 14.784732 46.578 99.6
stria develop 1 14.818488 46.578 100.0
stria develop 1 14.852245 46.594 100.0
stria develop 1 14.886035 46.594 100.0
stria develop 1 14.920041 46.594 99.6
stria develop 1 14.953989 46.594 99.6
stria develop 1 14.988086 46.594 99.6
stria develop 1 15.021566 46.594 99.6
stria develop 1 15.054608 46.594 100.0
stria develop 1 15.088368 46.594 100.0
stria develop 1 15.121644 46.594 100.0
stria develop 1 15.155389 46.594 100.0
stria develop 1 15.188427 46.594 99.6
stria develop 1 15.222098 46.594 99.6
stria branch 1 0.000541 0.172 0.0
stria branch 1 0.0344 15.547 6.0
stria branch 1 0.067382 21.359 6.0
stria branch 1 0.098611 26.109 6.0
stria branch 1 0.132389 30.75 6.0
stria branch 1 0.166061 30.75 41.1
stria branch 1 0.199877 30.75 41.1
stria branch 1 0.233249 30.75 41.1
stria branch 1 0.267029 30.766 41.1
stria branch 1 0.300327 30.828 64.6
stria branch 1 0.33417 30.828 64.6
stria branch 1 0.367818 30.844 64.6
stria branch 1 0.401656 30.859 64.6
stria branch 1 0.435691 30.922 77.2
stria branch 1 0.469864 30.922 77.2
stria branch 1 0.503696 30.922 77.2
stria branch 1 0.537775 30.922 86.2
stria branch 1 0.571577 30.938 86.2
stria branch 1 0.605376 30.953 86.2
stria branch 1 0.638956 30.953 86.2
stria branch 1 0.672739 30.953 90.1
stria branch 1 0.706829 30.953 90.1
stria branch 1 0.740452 30.969 90.1
stria branch 1 0.774381 30.984 90.1
stria branch 1 0.808278 31.094 95.2
stria branch 1 0.842213 31.172 95.2
stria branch 1 0.876139 31.312 95.2
stria branch 1 0.906177 31.375 95.8
stria branch 1 0.940196 31.391 95.8
stria branch 1 0.97592 31.391 95.8
stria branch 1 1.01033 31.391 95.8
stria branch 1 1.044242 31.391 97.0
stria branch 1 1.078016 31.391 97.0
stria branch 1 1.112018 31.406 97.0
stria branch 1 1.145838 31.406 97.0
stria branch 1 1.17955 31.422 98.1
stria branch 1 1.213543 31.422 98.1
stria branch 1 1.247442 31.422 98.1
stria branch 1 1.281034 31.422 98.3
stria branch 1 1.314367 31.438 98.3
stria branch 1 1.348152 31.453 98.3
stria branch 1 1.38189 31.453 98.3
stria branch 1 1.416112 31.484 98.1
stria branch 1 1.450546 31.484 98.1
stria branch 1 1.479909 31.484 98.1
stria branch 1 1.512943 31.484 98.1
stria branch 1 1.546874 31.484 100.0
stria branch 1 1.581078 31.484 100.0
stria branch 1 1.614761 31.484 100.0
stria branch 1 1.645293 31.5 100.0
stria branch 1 1.679147 31.5 100.0
stria branch 1 1.713276 31.5 100.0
stria branch 1 1.747371 31.516 100.0
stria branch 1 1.779845 31.516 97.7
stria branch 1 1.813829 31.516 97.7
stria branch 1 1.847592 31.516 97.7
stria branch 1 1.881478 31.531 97.7
stria branch 1 1.911194 31.531 99.0
stria branch 1 1.944788 31.547 99.0
stria branch 1 1.977616 31.562 99.0
stria branch 1 2.011411 31.594 99.0
stria branch 1 2.045145 31.625 100.0
stria branch 1 2.077809 31.672 100.0
stria branch 1 2.109419 31.688 100.0
stria branch 1 2.143176 31.688 100.0
stria branch 1 2.175698 31.703 98.7
stria branch 1 2.209591 31.719 98.7
stria branch 1 2.243214 31.719 98.7
stria branch 1 2.276932 31.734 98.7
stria branch 1 2.310684 31.734 100.0
stria branch 1 2.343157 34.062 100.0
stria branch 1 2.37712 36.953 100.0
stria branch 1 2.411095 39.953 99.6
stria branch 1 2.442973 42.953 99.6
stria branch 1 2.47378 46.156 99.6
stria branch 1 2.507646 47.172 99.6
stria branch 1 2.541539 47.203 99.1
stria branch 1 2.575491 47.234 99.1
stria branch 1 2.609413 47.297 99.1
stria branch 1 2.643024 47.312 99.1
stria branch 1 2.677131 47.328 98.8
stria branch 1 2.71121 47.328 98.8
stria branch 1 2.745008 47.328 98.8
stria branch 1 2.775938 47.344 98.8
stria branch 1 2.810298 47.344 99.7
stria branch 1 2.844412 47.359 99.7
stria branch 1 2.879481 47.359 99.7
stria branch 1 2.913448 47.359 100.0
stria branch 1 2.947535 47.375 100.0
stria branch 1 2.980219 47.391 100.0
stria branch 1 3.014138 47.406 100.0
stria branch 1 3.048231 47.406 100.0
stria branch 1 3.081824 47.406 100.0
stria branch 1 3.115891 47.406 100.0
stria branch 1 3.149806 47.406 100.0
stria branch 1 3.182068 47.406 99.9
stria branch 1 3.215832 47.406 99.9
stria branch 1 3.249831 47.406 99.9
stria branch 1 3.282463 47.406 99.9
stria branch 1 3.316401 47.406 98.8
stria branch 1 3.349142 47.422 98.8
stria branch 1 3.38248 47.422 98.8
stria branch 1 3.416161 47.422 100.0
stria branch 1 3.450178 47.438 100.0
stria branch 1 3.482403 47.453 100.0
stria branch 1 3.515804 47.484 100.0
stria branch 1 3.549506 47.516 99.4
stria branch 1 3.583204 47.562 99.4
stria branch 1 3.616963 47.594 99.4
stria branch 1 3.650939 47.609 99.4
stria branch 1 3.684581 47.609 100.0
stria branch 1 3.718641 47.609 100.0
stria branch 1 3.7505 47.625 100.0
stria branch 1 3.784008 47.625 97.9
stria branch 1 3.817642 47.641 97.9
stria branch 1 3.850684 47.641 97.9
stria branch 1 3.879736 47.641 97.9
stria branch 1 3.91348 47.656 99.1
stria branch 1 3.945709 47.672 99.1
stria branch 1 3.979581 47.688 99.1
stria branch 1 4.01381 47.688 99.1
stria branch 1 4.047656 47.688 100.0
stria branch 1 4.081803 47.688 100.0
stria branch 1 4.115382 47.688 100.0
stria branch 1 4.148899 47.688 100.0
stria branch 1 4.177808 47.688 100.0
stria branch 1 4.209851 47.688 100.0
stria branch 1 4.242357 47.688 100.0
stria branch 1 4.275868 47.688 100.0
stria branch 1 4.309373 47.688 98.5
stria branch 1 4.342765 47.688 98.5
stria branch 1 4.376818 47.688 98.5
stria branch 1 4.410353 47.688 98.5
stria branch 1 4.443857 47.703 98.5
stria branch 1 4.477516 47.703 98.5
stria branch 1 4.511309 47.734 98.5
stria branch 1 4.545026 47.797 100.0
stria branch 1 4.578647 47.844 100.0
stria branch 1 4.612042 47.938 100.0
stria branch 1 4.645629 47.938 100.0
stria branch 1 4.677831 47.938 100.0
stria branch 1 4.707106 47.953 100.0
stria branch 1 4.740676 47.953 100.0
stria branch 1 4.774107 47.969 100.0
stria branch 1 4.807784 47.969 100.0
stria branch 1 4.841311 47.984 100.0
stria branch 1 4.874806 48.0 100.0
stria branch 1 4.908206 48.016 100.0
stria branch 1 4.942037 48.016 100.0
stria branch 1 4.975712 48.016 100.0
stria branch 1 5.009037 48.016 100.0
stria branch 1 5.043263 48.016 100.0
stria branch 1 5.077218 48.031 100.0
stria branch 1 5.111034 48.031 100.0
stria branch 1 5.144819 48.031 100.0
stria branch 1 5.176517 48.031 99.4
stria branch 1 5.210393 48.047 99.4
stria branch 1 5.247153 48.062 99.4
stria branch 1 5.281064 48.094 99.4
stria branch 1 5.315341 48.125 100.0
stria branch 1 5.349102 48.141 100.0
stria branch 1 5.382684 48.219 100.0
stria branch 1 5.415821 48.297 99.0
stria branch 1 5.449797 48.359 99.0
stria branch 1 5.480877 48.359 99.0
stria branch 1 5.5146 48.359 99.0
stria branch 1 5.545371 48.359 98.2
stria branch 1 5.578916 48.359 98.2
stria branch 1 5.612844 48.375 98.2
stria branch 1 5.646588 48.375 98.2
stria branch 1 5.679625 48.391 99.7
stria branch 1 5.71374 48.391 99.7
stria branch 1 5.74537 48.391 99.7
stria branch 1 5.779396 48.391 99.7
stria branch 1 5.813481 48.406 100.0
stria branch 1 5.847268 48.422 100.0
stria branch 1 5.881295 48.422 100.0
stria branch 1 5.915074 48.438 98.1
stria branch 1 5.948358 48.438 98.1
stria branch 1 5.981795 48.438 98.1
stria branch 1 6.016572 48.438 98.1
stria branch 1 6.050509 48.438 100.0
stria branch 1 6.084201 48.438 100.0
stria branch 1 6.118088 48.438 100.0
stria branch 1 6.150664 48.469 100.0
stria branch 1 6.184273 48.531 100.0
stria branch 1 6.218166 48.547 100.0
stria branch 1 6.250655 48.672 100.0
stria branch 1 6.284369 48.984 100.0
stria branch 1 6.318146 49.0 98.4
stria branch 1 6.351872 49.016 98.4
stria branch 1 6.384052 49.031 98.4
stria branch 1 6.417934 49.047 100.0
stria branch 1 6.451553 49.047 100.0
stria branch 1 6.485072 49.047 100.0
stria branch 1 6.518812 49.078 100.0
stria branch 1 6.552808 49.078 100.0
stria branch 1 6.586453 49.078 100.0
stria branch 1 6.620213 49.094 100.0
stria branch 1 6.653988 49.109 100.0
stria branch 1 6.687507 49.156 98.7
stria branch 1 6.717509 49.172 98.7
stria branch 1 6.748203 49.219 98.7
stria branch 1 6.778172 49.234 98.7
stria branch 1 6.810975 49.25 100.0
stria branch 1 6.841637 49.266 100.0
stria branch 1 6.875826 49.266 100.0
stria branch 1 6.904732 49.266 100.0
stria branch 1 6.938442 49.266 100.0
stria branch 1 6.968791 49.281 100.0
stria branch 1 7.002789 49.281 100.0
stria branch 1 7.036982 49.297 97.9
stria branch 1 7.072423 49.297 97.9
stria branch 1 7.106412 49.297 97.9
stria branch 1 7.140429 49.297 97.9
stria branch 1 7.176321 49.328 98.7
stria branch 1 7.210216 49.328 98.7
stria branch 1 7.242338 49.344 98.7
stria branch 1 7.276521 49.344 98.7
stria branch 1 7.310669 49.344 99.6
stria branch 1 7.344483 49.344 99.6
stria branch 1 7.37861 49.344 99.6
stria branch 1 7.41227 49.344 99.1
stria branch 1 7.446155 49.359 99.1
stria branch 1 7.480156 49.359 99.1
stria branch 1 7.511203 49.375 99.1
stria branch 1 7.545133 49.391 100.0
stria branch 1 7.578953 49.453 100.0
stria branch 1 7.612392 49.5 100.0
stria branch 1 7.646423 49.531 100.0
stria branch 1 7.68048 49.547 99.2
stria branch 1 7.714678 49.547 99.2
stria branch 1 7.748548 49.547 99.2
stria branch 1 7.781839 49.562 99.2
stria branch 1 7.815227 49.562 99.3
stria branch 1 7.84918 49.578 99.3
stria branch 1 7.88248 49.578 99.3
stria branch 1 7.916478 49.578 99.9
stria branch 1 7.948565 49.578 99.9
stria branch 1 7.982003 49.594 99.9
stria branch 1 8.016295 49.609 99.9
stria branch 1 8.050674 49.625 100.0
stria branch 1 8.084351 49.625 100.0
stria branch 1 8.11794 49.625 100.0
stria branch 1 8.151773 49.625 100.0
stria branch 1 8.185337 49.625 100.0
stria branch 1 8.217345 49.641 100.0
stria branch 1 8.251033 49.641 100.0
stria branch 1 8.284857 49.672 100.0
stria branch 1 8.318376 49.734 100.0
stria branch 1 8.352205 49.781 100.0
stria branch 1 8.383967 49.828 100.0
stria branch 1 8.417842 49.828 98.4
stria branch 1 8.451596 49.844 98.4
stria branch 1 8.485838 49.844 98.4
stria branch 1 8.519711 49.859 98.4
stria branch 1 8.553663 49.859 98.9
stria branch 1 8.587921 49.859 98.9
stria branch 1 8.621881 49.891 98.9
stria branch 1 8.655718 49.906 98.9
stria branch 1 8.685366 49.906 99.1
stria branch 1 8.719104 49.906 99.1
stria branch 1 8.752866 49.906 99.1
stria branch 1 8.786542 49.922 99.1
stria branch 1 8.820222 49.922 100.0
stria branch 1 8.853748 49.953 100.0
stria branch 1 8.887401 50.109 100.0
stria branch 1 8.921107 50.312 100.0
stria branch 1 8.95482 50.312 100.0
stria branch 1 8.987059 50.328 100.0
stria branch 1 9.020789 50.344 100.0
stria branch 1 9.054618 50.344 100.0
stria branch 1 9.088346 50.359 100.0
stria branch 1 9.120292 50.391 100.0
stria branch 1 9.153979 50.391 100.0
stria branch 1 9.187493 50.391 98.9
stria branch 1 9.220935 50.406 98.9
stria branch 1 9.254631 50.406 98.9
stria branch 1 9.288099 50.406 98.9
stria branch 1 9.321858 50.438 100.0
stria branch 1 9.355593 50.469 100.0
stria branch 1 9.389178 50.516 100.0
stria branch 1 9.423009 50.625 99.0
stria branch 1 9.456875 50.688 99.0
stria branch 1 9.490474 50.688 99.0
stria branch 1 9.524352 50.703 99.0
stria branch 1 9.558462 50.703 100.0
stria branch 1 9.59227 50.719 100.0
stria branch 1 9.627073 50.719 100.0
stria branch 1 9.660886 50.734 100.0
stria branch 1 9.694565 50.75 98.6
stria branch 1 9.728107 50.766 98.6
stria branch 1 9.761689 50.766 98.6
stria branch 1 9.795183 50.766 98.5
stria branch 1 9.82776 50.781 98.5
stria branch 1 9.861199 50.938 98.5
stria branch 1 9.894795 50.969 98.5
stria branch 1 9.926896 51.0 100.0
stria branch 1 9.960505 51.0 100.0
stria branch 1 9.994473 51.031 100.0
stria branch 1 10.028746 51.062 100.0
stria branch 1 10.06275 51.078 98.1
stria branch 1 10.095091 51.125 98.1
stria branch 1 10.128892 51.125 98.1
stria branch 1 10.162643 51.141 98.1
stria branch 1 10.196474 51.172 100.0
stria branch 1 10.230523 51.188 100.0
stria branch 1 10.26463 51.188 100.0
stria branch 1 10.297621 51.188 99.8
stria branch 1 10.330014 51.203 99.8
stria branch 1 10.363806 51.25 99.8
stria branch 1 10.398154 51.266 99.8
stria branch 1 10.432128 51.281 100.0
stria branch 1 10.465434 51.312 100.0
stria branch 1 10.499203 51.312 100.0
stria branch 1 10.533058 51.328 100.0
stria branch 1 10.56794 51.328 98.5
stria branch 1 10.600613 51.359 98.5
stria branch 1 10.633935 51.375 98.5
stria branch 1 10.668003 51.375 99.0
stria branch 1 10.701655 51.406 99.0
stria branch 1 10.732768 51.406 99.0
stria branch 1 10.76675 51.453 99.0
stria branch 1 10.800802 51.516 100.0
stria branch 1 10.834826 51.578 100.0
stria branch 1 10.867284 51.578 100.0
stria branch 1 10.901468 51.578 100.0
stria branch 1 10.933941 51.578 99.8
stria branch 1 10.964828 46.016 99.8
stria branch 1 10.999896 46.016 99.8
stria branch 1 11.033869 46.062 99.8
stria branch 1 11.067644 46.078 99.6
stria branch 1 11.101468 45.922 99.6
stria branch 1 11.135328 45.969 99.6
stria branch 1 11.169157 45.969 99.6
stria branch 1 11.202947 46.0 99.6
stria branch 1 11.236665 46.016 99.6
stria branch 1 11.27041 46.016 99.6
stria branch 1 11.304256 46.016 100.0
stria branch 1 11.338418 46.031 100.0
stria branch 1 11.372138 46.047 100.0
stria branch 1 11.406338 46.047 100.0
stria branch 1 11.43723 46.062 99.7
stria branch 1 11.471153 46.078 99.7
stria branch 1 11.504755 46.094 99.7
stria branch 1 11.538802 45.406 99.7
stria branch 1 11.572766 45.406 100.0
stria branch 1 11.602605 45.422 100.0
stria branch 1 11.636263 45.438 100.0
stria branch 1 11.670077 45.438 99.3
stria branch 1 11.703765 45.469 99.3
stria branch 1 11.737649 45.484 99.3
stria branch 1 11.771429 45.484 99.3
stria branch 1 11.805302 45.484 100.0
stria branch 1 11.839203 45.484 100.0
stria branch 1 11.872663 45.5 100.0
stria branch 1 11.902858 45.516 100.0
stria branch 1 11.936759 45.516 100.0
stria branch 1 11.970498 45.547 100.0
stria branch 1 12.004265 45.547 100.0
stria branch 1 12.037781 45.547 100.0
stria branch 1 12.071474 45.578 99.4
stria branch 1 12.105491 45.594 99.4
stria branch 1 12.139187 45.641 99.4
stria branch 1 12.170525 45.719 99.5
stria branch 1 12.20449 45.766 99.5
stria branch 1 12.237289 45.781 99.5
stria branch 1 12.271298 45.797 99.5
stria branch 1 12.304427 45.797 100.0
stria branch 1 12.335609 45.812 100.0
stria branch 1 12.369487 45.828 100.0
stria branch 1 12.403488 45.844 100.0
stria branch 1 12.437135 45.859 98.5
stria branch 1 12.471063 45.719 98.5
stria branch 1 12.505927 45.719 98.5
stria branch 1 12.539666 45.734 98.5
stria branch 1 12.573608 45.75 99.4
stria branch 1 12.611426 45.75 99.4
stria branch 1 12.645525 45.781 99.4
stria branch 1 12.67924 45.844 100.0
stria branch 1 12.713241 45.922 100.0
stria branch 1 12.745475 45.938 100.0
stria branch 1 12.779261 45.938 100.0
stria branch 1 12.813396 45.953 99.4
stria branch 1 12.845445 45.969 99.4
stria branch 1 12.8797 45.969 99.4
stria branch 1 12.913541 46.0 99.4
stria branch 1 12.947224 46.016 99.7
stria branch 1 12.980713 46.016 99.7
stria branch 1 13.014614 46.031 99.7
stria branch 1 13.044742 46.031 99.6
stria branch 1 13.078518 46.047 99.6
stria branch 1 13.109653 46.047 99.6
stria branch 1 13.143685 46.062 99.6
stria branch 1 13.177461 46.062 100.0
stria branch 1 13.211496 46.078 100.0
stria branch 1 13.245432 46.094 100.0
stria branch 1 13.279384 46.109 100.0
stria branch 1 13.313595 46.109 99.4
stria branch 1 13.346587 46.109 99.4
stria branch 1 13.38051 46.109 99.4
stria branch 1 13.414295 46.125 99.4
stria branch 1 13.448007 46.141 100.0
stria branch 1 13.482348 46.141 100.0
stria branch 1 13.516262 46.219 100.0
stria branch 1 13.549968 46.234 98.7
stria branch 1 13.583752 46.266 98.7
stria branch 1 13.617594 46.297 98.7
stria branch 1 13.651726 46.375 98.7
stria branch 1 13.685735 46.391 100.0
stria branch 1 13.719624 46.391 100.0
stria branch 1 13.753472 46.406 100.0
stria branch 1 13.787289 46.406 100.0
stria branch 1 13.82119 46.406 100.0
stria branch 1 13.855181 46.406 100.0
stria branch 1 13.89279 46.438 100.0
stria branch 1 13.926865 46.438 99.2
stria branch 1 13.960681 46.469 99.2
stria branch 1 13.994468 46.484 99.2
stria branch 1 14.026313 46.484 99.2
stria branch 1 14.060283 46.5 98.8
stria branch 1 14.094279 46.5 98.8
stria branch 1 14.127987 46.5 98.8
stria branch 1 14.161614 46.5 98.8
stria branch 1 14.195385 46.516 99.2
stria branch 1 14.229208 46.531 99.2
stria branch 1 14.263118 46.547 99.2
stria branch 1 14.296624 46.547 98.2
stria branch 1 14.330073 46.578 98.2
stria branch 1 14.359852 46.594 98.2
stria branch 1 14.393659 46.656 98.2
stria branch 1 14.427082 46.672 100.0
stria branch 1 14.460576 46.703 100.0
stria branch 1 14.494095 46.703 100.0
stria branch 1 14.527622 46.703 100.0
stria branch 1 14.561137 46.703 99.6
stria branch 1 14.594774 46.719 99.6
stria branch 1 14.628298 46.719 99.6
stria branch 1 14.662063 46.719 99.6
stria branch 1 14.692779 46.719 100.0
stria branch 1 14.726692 46.734 100.0
stria branch 1 14.760477 46.734 100.0
stria branch 1 14.792557 46.75 100.0
stria branch 1 14.826126 46.75 100.0
stria branch 1 14.859624 46.766 100.0
stria branch 1 14.896794 46.766 100.0
stria branch 1 14.930311 46.766 98.9
stria branch 1 14.963753 46.766 98.9
stria branch 1 14.997745 46.766 98.9
stria branch 1 15.031569 46.766 98.9
stria branch 1 15.065296 46.766 100.0
stria branch 1 15.09461 46.766 100.0
stria branch 1 15.126411 46.766 100.0
stria branch 1 15.158926 46.766 100.0
stria branch 1 15.192867 46.766 98.7
stria branch 1 15.226636 46.766 98.7
stria branch 1 15.260374 0.0 0.0
stria branch 2 0.000409 0.172 0.0
stria branch 2 0.034234 18.625 0.0
stria branch 2 0.06811 24.0 0.0
stria branch 2 0.102336 28.828 0.0
stria branch 2 0.136214 31.016 37.1
stria branch 2 0.170372 31.016 37.1
stria branch 2 0.204209 31.016 37.1
stria branch 2 0.237878 31.031 37.1
stria branch 2 0.271725 31.031 60.5
stria branch 2 0.303076 31.094 60.5
stria branch 2 0.337215 31.094 60.5
stria branch 2 0.371186 31.125 60.5
stria branch 2 0.404761 31.188 76.3
stria branch 2 0.438458 31.188 76.3
stria branch 2 0.470979 31.188 76.3
stria branch 2 0.500237 31.188 83.2
stria branch 2 0.534276 31.188 83.2
stria branch 2 0.568286 31.203 83.2
stria branch 2 0.602256 31.219 83.2
stria branch 2 0.635959 31.219 90.3
stria branch 2 0.669798 31.219 90.3
stria branch 2 0.709667 31.234 90.3
stria branch 2 0.742377 31.25 90.3
stria branch 2 0.775709 31.281 94.0
stria branch 2 0.806634 31.406 94.0
stria branch 2 0.840742 31.5 94.0
stria branch 2 0.874769 31.578 96.3
stria branch 2 0.908594 31.578 96.3
stria branch 2 0.942765 31.594 96.3
stria branch 2 0.976416 31.594 96.3
stria branch 2 1.010581 31.594 97.6
stria branch 2 1.039847 31.594 97.6
stria branch 2 1.073 31.594 97.6
stria branch 2 1.112278 31.609 97.6
stria branch 2 1.148012 31.609 98.3
stria branch 2 1.179195 31.625 98.3
stria branch 2 1.213635 31.625 98.3
stria branch 2 1.247059 31.625 96.1
stria branch 2 1.280816 31.625 96.1
stria branch 2 1.314751 31.641 96.1
stria branch 2 1.346995 31.656 96.1
stria branch 2 1.381114 31.656 98.5
stria branch 2 1.414665 31.672 98.5
stria branch 2 1.4462 31.672 98.5
stria branch 2 1.480119 31.672 98.5
stria branch 2 1.518876 31.672 98.9
stria branch 2 1.553044 31.672 98.9
stria branch 2 1.586953 31.672 98.9
stria branch 2 1.622072 31.672 98.7
stria branch 2 1.653807 31.688 98.7
stria branch 2 1.687497 31.688 98.7
stria branch 2 1.721092 31.688 98.7
stria branch 2 1.754815 31.703 100.0
stria branch 2 1.788523 31.703 100.0
stria branch 2 1.822312 31.703 100.0
stria branch 2 1.856333 31.703 100.0
stria branch 2 1.890587 31.719 99.0
stria branch 2 1.924249 31.719 99.0
stria branch 2 1.953883 31.734 99.0
stria branch 2 1.99302 31.75 99.0
stria branch 2 2.025289 31.797 100.0
stria branch 2 2.059442 25.766 100.0
stria branch 2 2.09531 25.812 100.0
stria branch 2 2.129373 25.844 99.2
stria branch 2 2.162939 25.875 99.2
stria branch 2 2.19634 25.875 99.2
stria branch 2 2.229383 25.891 99.2
stria branch 2 2.259357 25.891 100.0
stria branch 2 2.294454 25.906 100.0
stria branch 2 2.328378 25.906 100.0
stria branch 2 2.360538 28.922 100.0
stria branch 2 2.393871 31.859 100.0
stria branch 2 2.427967 35.062 100.0
stria branch 2 2.464638 38.328 100.0
stria branch 2 2.495622 41.469 100.0
stria branch 2 2.529419 41.734 99.0
stria branch 2 2.566786 41.781 99.0
stria branch 2 2.60099 41.828 99.0
stria branch 2 2.637837 41.875 99.3
stria branch 2 2.667683 41.875 99.3
stria branch 2 2.701513 41.891 99.3
stria branch 2 2.735416 41.891 99.3
stria branch 2 2.768884 41.906 99.3
stria branch 2 2.803083 41.906 99.3
stria branch 2 2.837012 41.922 99.3
stria branch 2 2.871039 41.938 99.3
stria branch 2 2.900232 41.938 99.7
stria branch 2 2.934386 41.938 99.7
stria branch 2 2.96811 41.969 99.7
stria branch 2 3.002359 41.953 100.0
stria branch 2 3.036354 41.969 100.0
stria branch 2 3.070353 41.969 100.0
stria branch 2 3.104573 41.969 100.0
stria branch 2 3.136834 41.969 100.0
stria branch 2 3.168853 41.969 100.0
stria branch 2 3.202426 41.969 100.0
stria branch 2 3.23773 41.969 100.0
stria branch 2 3.271036 41.969 99.1
stria branch 2 3.304397 41.969 99.1
stria branch 2 3.337738 41.969 99.1
stria branch 2 3.371041 41.984 99.1
stria branch 2 3.402211 41.984 99.6
stria branch 2 3.435225 41.984 99.6
stria branch 2 3.469037 42.0 99.6
stria branch 2 3.503865 42.016 99.9
stria branch 2 3.53605 42.062 99.9
stria branch 2 3.568856 42.078 99.9
stria branch 2 3.602724 42.125 99.9
stria branch 2 3.63665 42.156 99.4
stria branch 2 3.670594 42.172 99.4
stria branch 2 3.702612 42.172 99.4
stria branch 2 3.736578 42.172 99.4
stria branch 2 3.770634 42.188 100.0
stria branch 2 3.803111 42.188 100.0
stria branch 2 3.837267 42.203 100.0
stria branch 2 3.871081 42.203 100.0
stria branch 2 3.904375 42.203 99.9
stria branch 2 3.937935 42.219 99.9
stria branch 2 3.971037 42.234 99.9
stria branch 2 4.004472 42.25 99.7
stria branch 2 4.037727 42.25 99.7
stria branch 2 4.069731 42.25 99.7
stria branch 2 4.102122 42.25 99.7
stria branch 2 4.135737 42.25 99.7
stria branch 2 4.169104 42.25 99.7
stria branch 2 4.202944 42.25 99.7
stria branch 2 4.236434 42.25 99.7
stria branch 2 4.271308 42.25 99.7
stria branch 2 4.304763 42.25 99.7
stria branch 2 4.338377 42.25 99.7
stria branch 2 4.371889 42.25 99.7
stria branch 2 4.405539 42.25 99.3
stria branch 2 4.438849 42.25 99.3
stria branch 2 4.472301 42.266 99.3
stria branch 2 4.50437 42.266 100.0
stria branch 2 4.537827 42.297 100.0
stria branch 2 4.571293 42.375 100.0
stria branch 2 4.605174 42.453 100.0
stria branch 2 4.638801 42.516 100.0
stria branch 2 4.674128 42.516 100.0
stria branch 2 4.704569 42.531 100.0
stria branch 2 4.738225 42.531 100.0
stria branch 2 4.770835 42.547 100.0
stria branch 2 4.802655 42.547 100.0
stria branch 2 4.833573 42.547 100.0
stria branch 2 4.867418 42.562 100.0
stria branch 2 4.901738 42.578 99.3
stria branch 2 4.936019 42.594 99.3
stria branch 2 4.970039 42.594 99.3
stria branch 2 5.003571 42.594 98.7
stria branch 2 5.037765 42.594 98.7
stria branch 2 5.071676 42.609 98.7
stria branch 2 5.106013 42.609 98.7
stria branch 2 5.138277 42.609 100.0
stria branch 2 5.171057 42.609 100.0
stria branch 2 5.205175 42.625 100.0
stria branch 2 5.237708 42.641 100.0
stria branch 2 5.271063 42.641 100.0
stria branch 2 5.304742 42.688 100.0
stria branch 2 5.338635 42.703 100.0
stria branch 2 5.371844 42.797 100.0
stria branch 2 5.40294 42.859 98.9
stria branch 2 5.436702 42.875 98.9
stria branch 2 5.470436 42.938 98.9
stria branch 2 5.500234 42.938 96.9
stria branch 2 5.534827 42.938 96.9
stria branch 2 5.573819 42.938 96.9
stria branch 2 5.608184 42.953 96.9
stria branch 2 5.642202 42.953 97.6
stria branch 2 5.671968 42.734 97.6
stria branch 2 5.702804 42.75 97.6
stria branch 2 5.732717 42.75 97.6
stria branch 2 5.766508 42.75 98.7
stria branch 2 5.79607 42.75 98.7
stria branch 2 5.830117 42.766 98.7
stria branch 2 5.861431 42.781 98.7
stria branch 2 5.893863 42.781 99.1
stria branch 2 5.927769 42.797 99.1
stria branch 2 5.964486 42.797 99.1
stria branch 2 5.993175 42.797 99.1
stria branch 2 6.027156 42.797 100.0
stria branch 2 6.058828 42.797 100.0
stria branch 2 6.09227 42.797 100.0
stria branch 2 6.125938 42.797 98.4
stria branch 2 6.160038 42.844 98.4
stria branch 2 6.193939 42.891 98.4
stria branch 2 6.227894 42.922 98.4
stria branch 2 6.261473 43.109 100.0
stria branch 2 6.293821 43.359 100.0
stria branch 2 6.32726 43.375 100.0
stria branch 2 6.36102 43.391 100.0
stria branch 2 6.393829 43.422 100.0
stria branch 2 6.427196 43.422 100.0
stria branch 2 6.461005 43.422 100.0
stria branch 2 6.495013 43.453 100.0
stria branch 2 6.529107 43.453 98.5
stria branch 2 6.562725 43.453 98.5
stria branch 2 6.596569 43.453 98.5
stria branch 2 6.630233 43.484 99.6
stria branch 2 6.664243 43.5 99.6
stria branch 2 6.698208 43.547 99.6
stria branch 2 6.732573 43.578 99.6
stria branch 2 6.766536 43.609 99.2
stria branch 2 6.800441 43.641 99.2
stria branch 2 6.834098 43.656 99.2
stria branch 2 6.867943 43.656 99.2
stria branch 2 6.901886 43.656 100.0
stria branch 2 6.935956 43.656 100.0
stria branch 2 6.969304 43.672 100.0
stria branch 2 7.002152 43.672 98.0
stria branch 2 7.035956 43.688 98.0
stria branch 2 7.068813 43.688 98.0
stria branch 2 7.102074 43.688 98.0
stria branch 2 7.135923 43.703 100.0
stria branch 2 7.16983 43.719 100.0
stria branch 2 7.203615 43.719 100.0
stria branch 2 7.237073 43.734 100.0
stria branch 2 7.271275 43.734 100.0
stria branch 2 7.305085 43.734 100.0
stria branch 2 7.339192 43.734 100.0
stria branch 2 7.372965 43.734 100.0
stria branch 2 7.403294 43.75 100.0
stria branch 2 7.437001 43.75 100.0
stria branch 2 7.470863 43.75 100.0
stria branch 2 7.504814 43.781 99.7
stria branch 2 7.538432 43.812 99.7
stria branch 2 7.572594 43.844 99.7
stria branch 2 7.606557 43.891 99.7
stria branch 2 7.640588 43.922 100.0
stria branch 2 7.674323 43.938 100.0
stria branch 2 7.70811 43.938 100.0
stria branch 2 7.739544 43.938 100.0
stria branch 2 7.773418 43.953 100.0
stria branch 2 7.807099 43.953 100.0
stria branch 2 7.840869 43.969 100.0
stria branch 2 7.87458 43.969 100.0
stria branch 2 7.908231 43.969 99.5
stria branch 2 7.942153 43.969 99.5
stria branch 2 7.975761 43.984 99.5
stria branch 2 8.009366 44.0 99.2
stria branch 2 8.04323 44.016 99.2
stria branch 2 8.0769 44.016 99.2
stria branch 2 8.11106 44.016 99.2
stria branch 2 8.145033 44.016 100.0
stria branch 2 8.178847 44.016 100.0
stria branch 2 8.212566 44.047 100.0
stria branch 2 8.246483 44.062 100.0
stria branch 2 8.279347 44.078 98.8
stria branch 2 8.308411 44.141 98.8
stria branch 2 8.342107 44.203 98.8
stria branch 2 8.375963 44.234 98.8
stria branch 2 8.41006 44.234 98.8
stria branch 2 8.444207 44.25 98.8
stria branch 2 8.477839 44.25 98.8
stria branch 2 8.511787 44.266 99.5
stria branch 2 8.545496 44.266 99.5
stria branch 2 8.579453 44.266 99.5
stria branch 2 8.613307 44.297 99.5
stria branch 2 8.646942 44.312 100.0
stria branch 2 8.680852 44.312 100.0
stria branch 2 8.711326 44.312 100.0
stria branch 2 8.745357 44.312 100.0
stria branch 2 8.779142 44.328 99.9
stria branch 2 8.81142 44.344 99.9
stria branch 2 8.845271 44.391 99.9
stria branch 2 8.878845 44.625 99.9
stria branch 2 8.91258 44.703 99.6
stria branch 2 8.946147 44.703 99.6
stria branch 2 8.979606 44.719 99.6
stria branch 2 9.012689 44.734 99.9
stria branch 2 9.046472 44.734 99.9
stria branch 2 9.080112 44.766 99.9
stria branch 2 9.113893 44.781 99.9
stria branch 2 9.147733 44.781 99.6
stria branch 2 9.180757 44.781 99.6
stria branch 2 9.213097 44.797 99.6
stria branch 2 9.2465 44.797 99.6
stria branch 2 9.279871 44.812 99.0
stria branch 2 9.313631 44.828 99.0
stria branch 2 9.347425 44.875 99.0
stria branch 2 9.380642 44.938 98.7
stria branch 2 9.414329 45.031 98.7
stria branch 2 9.447815 45.094 98.7
stria branch 2 9.481441 45.094 98.7
stria branch 2 9.515086 45.109 100.0
stria branch 2 9.548842 45.125 100.0
stria branch 2 9.57968 45.125 100.0
stria branch 2 9.612907 45.125 100.0
stria branch 2 9.646279 45.156 99.3
stria branch 2 9.680148 45.172 99.3
stria branch 2 9.713802 45.172 99.3
stria branch 2 9.747875 45.172 99.3
stria branch 2 9.781979 45.172 99.0
stria branch 2 9.815893 45.188 99.0
stria branch 2 9.8495 45.359 99.0
stria branch 2 9.883491 45.391 99.6
stria branch 2 9.917462 45.406 99.6
stria branch 2 9.950152 45.422 99.6
stria branch 2 9.983842 45.438 99.6
stria branch 2 10.017153 45.484 99.8
stria branch 2 10.050655 45.516 99.8
stria branch 2 10.084262 45.531 99.8
stria branch 2 10.115619 45.531 99.8
stria branch 2 10.149966 45.562 100.0
stria branch 2 10.184083 45.609 100.0
stria branch 2 10.217663 45.609 100.0
stria branch 2 10.2517 45.609 100.0
stria branch 2 10.282988 45.625 99.2
stria branch 2 10.316761 45.656 99.2
stria branch 2 10.350384 45.672 99.2
stria branch 2 10.383857 45.703 99.8
stria branch 2 10.417735 45.734 99.8
stria branch 2 10.451674 45.734 99.8
stria branch 2 10.485589 45.734 99.8
stria branch 2 10.519467 45.75 99.3
stria branch 2 10.553279 45.766 99.3
stria branch 2 10.586963 45.812 99.3
stria branch 2 10.622915 45.812 99.3
stria branch 2 10.65695 45.828 99.9
stria branch 2 10.69294 45.844 99.9
stria branch 2 10.726532 45.875 99.9
stria branch 2 10.760782 45.938 100.0
stria branch 2 10.790817 46.016 100.0
stria branch 2 10.832327 46.016 100.0
stria branch 2 10.861663 45.734 100.0
stria branch 2 10.895139 45.578 99.1
stria branch 2 10.928938 45.531 99.1
stria branch 2 10.962678 45.531 99.1
stria branch 2 10.994482 45.547 99.1
stria branch 2 11.02714 45.594 98.7
stria branch 2 11.060499 45.625 98.7
stria branch 2 11.094462 45.672 98.7
stria branch 2 11.1282 45.672 98.7
stria branch 2 11.161874 45.688 99.5
stria branch 2 11.193777 45.719 99.5
stria branch 2 11.227493 45.719 99.5
stria branch 2 11.260977 45.719 99.1
stria branch 2 11.294726 45.734 99.1
stria branch 2 11.328259 45.75 99.1
stria branch 2 11.361913 45.75 99.1
stria branch 2 11.395543 45.766 99.9
stria branch 2 11.429034 45.781 99.9
stria branch 2 11.462779 45.797 99.9
stria branch 2 11.496796 45.797 99.9
stria branch 2 11.53029 45.797 99.3
stria branch 2 11.563989 45.812 99.3
stria branch 2 11.598502 45.828 99.3
stria branch 2 11.632583 45.828 99.6
stria branch 2 11.666875 45.844 99.6
stria branch 2 11.700141 45.875 99.6
stria branch 2 11.733871 45.875 99.6
stria branch 2 11.767883 45.875 100.0
stria branch 2 11.800252 45.875 100.0
stria branch 2 11.83383 45.891 100.0
stria branch 2 11.867412 45.906 100.0
stria branch 2 11.901135 45.906 99.0
stria branch 2 11.932461 45.938 99.0
stria branch 2 11.966216 45.938 99.0
stria branch 2 11.999868 45.969 99.0
stria branch 2 12.03359 45.969 99.4
stria branch 2 12.063592 45.984 99.4
stria branch 2 12.09728 46.031 99.4
stria branch 2 12.130801 46.125 99.4
stria branch 2 12.161916 46.172 99.4
stria branch 2 12.195791 46.172 99.4
stria branch 2 12.229543 46.188 99.4
stria branch 2 12.26314 46.203 99.7
stria branch 2 12.297117 46.203 99.7
stria branch 2 12.330729 46.219 99.7
stria branch 2 12.364368 46.25 99.7
stria branch 2 12.398069 46.25 99.6
stria branch 2 12.431649 46.25 99.6
stria branch 2 12.461195 46.25 99.6
stria branch 2 12.495094 46.266 99.6
stria branch 2 12.528562 46.281 100.0
stria branch 2 12.562226 46.281 100.0
stria branch 2 12.592051 46.312 100.0
stria branch 2 12.626268 46.375 100.0
stria branch 2 12.660518 46.453 99.6
stria branch 2 12.694501 46.469 99.6
stria branch 2 12.728523 46.469 99.6
stria branch 2 12.761074 46.484 99.8
stria branch 2 12.794451 46.5 99.8
stria branch 2 12.828196 46.516 99.8
stria branch 2 12.862015 46.547 99.8
stria branch 2 12.89594 46.547 99.6
stria branch 2 12.928009 46.547 99.6
stria branch 2 12.961989 46.562 99.6
stria branch 2 12.995592 46.578 99.6
stria branch 2 13.029664 46.578 100.0
stria branch 2 13.063746 46.594 100.0
stria branch 2 13.096201 46.594 100.0
stria branch 2 13.129913 46.594 100.0
stria branch 2 13.163594 46.625 99.6
stria branch 2 13.197617 46.641 99.6
stria branch 2 13.231524 46.641 99.6
stria branch 2 13.265536 46.641 100.0
stria branch 2 13.299798 46.641 100.0
stria branch 2 13.333659 46.656 100.0
stria branch 2 13.367355 46.672 100.0
stria branch 2 13.400721 46.672 99.0
stria branch 2 13.434316 46.688 99.0
stria branch 2 13.467761 46.75 99.0
stria branch 2 13.501973 46.766 99.0
stria branch 2 13.535842 46.812 99.7
stria branch 2 13.569915 46.859 99.7
stria branch 2 13.603901 46.906 99.7
stria branch 2 13.637656 46.922 99.1
stria branch 2 13.670986 46.922 99.1
stria branch 2 13.704818 46.938 99.1
stria branch 2 13.738647 46.938 99.1
stria branch 2 13.772657 46.938 100.0
stria branch 2 13.805245 46.969 100.0
stria branch 2 13.838687 46.969 100.0
stria branch 2 13.872137 46.969 100.0
stria branch 2 13.905988 47.0 100.0
stria branch 2 13.939692 47.016 100.0
stria branch 2 13.973311 47.016 100.0
stria branch 2 14.006303 47.031 100.0
stria branch 2 14.03649 47.031 100.0
stria branch 2 14.068756 47.031 100.0
stria branch 2 14.102304 47.031 100.0
stria branch 2 14.133476 47.047 100.0
stria branch 2 14.166859 47.062 99.5
stria branch 2 14.198871 47.078 99.5
stria branch 2 14.232474 47.078 99.5
stria branch 2 14.266175 47.078 99.4
stria branch 2 14.299106 47.125 99.4
stria branch 2 14.332808 47.172 99.4
stria branch 2 14.366976 47.141 99.4
stria branch 2 14.40145 47.188 99.8
stria branch 2 14.435241 47.188 99.8
stria branch 2 14.46909 47.188 99.8
stria branch 2 14.502834 47.188 99.8
stria branch 2 14.533452 47.203 98.7
stria branch 2 14.567346 47.203 98.7
stria branch 2 14.600701 47.203 98.7
stria branch 2 14.634067 47.203 98.7
stria branch 2 14.667435 47.219 99.7
stria branch 2 14.699672 47.219 99.7
stria branch 2 14.732424 47.234 99.7
stria branch 2 14.766541 47.234 99.6
stria branch 2 14.800734 47.234 99.6
stria branch 2 14.833975 47.25 99.6
stria branch 2 14.868119 47.25 99.6
stria branch 2 14.903153 47.25 100.0
stria branch 2 14.937026 47.25 100.0
stria branch 2 14.97095 47.25 100.0
stria branch 2 15.004344 47.25 100.0
stria branch 2 15.038124 47.25 98.8
stria branch 2 15.066857 47.25 98.8
stria branch 2 15.100647 47.25 98.8
stria branch 2 15.134417 47.25 98.8
stria branch 2 15.168334 47.25 100.0
stria branch 2 15.202122 0.0 0.0
stria develop 2 0.000499 0.172 0.0
stria develop 2 0.034653 17.047 4.4
stria develop 2 0.068027 22.172 4.4
stria develop 2 0.101892 27.25 4.4
stria develop 2 0.135525 30.281 4.4
stria develop 2 0.169368 30.281 40.0
stria develop 2 0.200135 30.281 40.0
stria develop 2 0.234124 30.281 40.0
stria develop 2 0.267059 30.297 40.0
stria develop 2 0.300807 30.359 63.8
stria develop 2 0.334362 30.359 63.8
stria develop 2 0.368223 30.375 63.8
stria develop 2 0.402413 30.391 76.0
stria develop 2 0.436989 30.453 76.0
stria develop 2 0.466867 30.453 76.0
stria develop 2 0.500896 30.453 76.0
stria develop 2 0.534545 30.453 86.1
stria develop 2 0.568478 30.469 86.1
stria develop 2 0.601807 30.484 86.1
stria develop 2 0.635111 30.484 86.1
stria develop 2 0.668949 30.484 90.2
stria develop 2 0.702841 30.484 90.2
stria develop 2 0.736945 30.516 90.2
stria develop 2 0.770751 30.516 93.3
stria develop 2 0.804711 30.672 93.3
stria develop 2 0.838674 30.75 93.3
stria develop 2 0.872843 30.828 93.3
stria develop 2 0.906874 30.891 95.5
stria develop 2 0.940516 30.906 95.5
stria develop 2 0.974566 30.906 95.5
stria develop 2 1.008529 30.906 95.5
stria develop 2 1.042766 30.906 98.1
stria develop 2 1.07648 30.906 98.1
stria develop 2 1.110182 30.922 98.1
stria develop 2 1.143908 30.922 98.1
stria develop 2 1.174862 30.938 99.0
stria develop 2 1.208724 30.938 99.0
stria develop 2 1.242592 30.938 99.0
stria develop 2 1.276676 30.938 99.4
stria develop 2 1.310313 30.953 99.4
stria develop 2 1.343476 30.969 99.4
stria develop 2 1.376767 30.984 99.4
stria develop 2 1.410415 30.984 99.5
stria develop 2 1.441526 30.984 99.5
stria develop 2 1.475392 30.984 99.5
stria develop 2 1.509372 30.984 99.5
stria develop 2 1.543686 30.984 98.9
stria develop 2 1.577675 30.984 98.9
stria develop 2 1.611383 31.0 98.9
stria develop 2 1.645215 31.0 98.8
stria develop 2 1.679064 31.0 98.8
stria develop 2 1.71292 31.016 98.8
stria develop 2 1.746721 31.016 98.8
stria develop 2 1.779053 31.016 100.0
stria develop 2 1.813066 31.016 100.0
stria develop 2 1.846978 31.031 100.0
stria develop 2 1.880999 31.031 100.0
stria develop 2 1.914866 31.031 100.0
stria develop 2 1.948763 31.062 100.0
stria develop 2 1.983023 31.094 100.0
stria develop 2 2.016861 31.125 100.0
stria develop 2 2.050456 31.156 99.9
stria develop 2 2.084377 31.188 99.9
stria develop 2 2.118335 31.188 99.9
stria develop 2 2.151761 31.203 99.2
stria develop 2 2.185419 31.219 99.2
stria develop 2 2.219135 31.219 99.2
stria develop 2 2.2529 31.234 99.2
stria develop 2 2.286795 31.234 100.0
stria develop 2 2.320735 32.906 100.0
stria develop 2 2.353943 35.625 100.0
stria develop 2 2.387923 38.625 100.0
stria develop 2 2.421437 41.75 99.5
stria develop 2 2.455263 45.328 99.5
stria develop 2 2.488388 46.656 99.5
stria develop 2 2.522328 46.688 99.0
stria develop 2 2.556121 46.719 99.0
stria develop 2 2.590086 46.766 99.0
stria develop 2 2.624139 46.797 99.0
stria develop 2 2.657764 46.812 100.0
stria develop 2 2.691539 46.812 100.0
stria develop 2 2.724869 46.812 100.0
stria develop 2 2.7587 46.828 100.0
stria develop 2 2.793039 46.828 99.1
stria develop 2 2.82685 46.844 99.1
stria develop 2 2.860863 46.844 99.1
stria develop 2 2.893417 46.844 99.1
stria develop 2 2.926793 46.859 99.4
stria develop 2 2.960714 46.875 99.4
stria develop 2 2.994711 46.891 99.4
stria develop 2 3.028533 46.891 100.0
stria develop 2 3.063394 46.891 100.0
stria develop 2 3.097131 46.891 100.0
stria develop 2 3.130666 46.891 100.0
stria develop 2 3.164215 46.891 99.3
stria develop 2 3.19783 46.891 99.3
stria develop 2 3.231813 46.891 99.3
stria develop 2 3.26542 46.891 99.3
stria develop 2 3.298754 46.891 100.0
stria develop 2 3.332695 46.906 100.0
stria develop 2 3.366687 46.906 100.0
stria develop 2 3.39774 46.906 99.1
stria develop 2 3.431603 46.922 99.1
stria develop 2 3.465871 46.938 99.1
stria develop 2 3.498749 46.969 99.1
stria develop 2 3.532847 47.0 100.0
stria develop 2 3.564727 47.047 100.0
stria develop 2 3.596594 47.078 100.0
stria develop 2 3.630196 47.094 100.0
stria develop 2 3.663795 47.094 99.6
stria develop 2 3.697252 47.094 99.6
stria develop 2 3.730724 47.109 99.6
stria develop 2 3.764342 47.109 99.6
stria develop 2 3.797929 47.125 99.1
stria develop 2 3.831187 47.125 99.1
stria develop 2 3.863736 47.125 99.1
stria develop 2 3.897181 47.141 98.8
stria develop 2 3.930703 47.156 98.8
stria develop 2 3.964441 47.172 98.8
stria develop 2 3.998105 47.172 98.8
stria develop 2 4.031473 47.172 99.3
stria develop 2 4.065394 47.172 99.3
stria develop 2 4.099652 47.172 99.3
stria develop 2 4.133473 47.172 99.3
stria develop 2 4.166878 47.172 99.6
stria develop 2 4.20043 47.172 99.6
stria develop 2 4.234333 47.172 99.6
stria develop 2 4.267873 47.172 99.6
stria develop 2 4.301552 47.172 99.8
stria develop 2 4.335012 47.172 99.8
stria develop 2 4.368437 47.172 99.8
stria develop 2 4.402306 47.172 99.7
stria develop 2 4.436181 47.188 99.7
stria develop 2 4.469944 47.203 99.7
stria develop 2 4.504134 47.219 99.7
stria develop 2 4.537989 47.297 99.2
stria develop 2 4.57071 47.359 99.2
stria develop 2 4.604491 47.422 99.2
stria develop 2 4.637975 47.422 99.2
stria develop 2 4.671503 47.438 100.0
stria develop 2 4.705526 47.438 100.0
stria develop 2 4.73935 47.453 100.0
stria develop 2 4.773355 47.453 97.2
stria develop 2 4.807281 47.453 97.2
stria develop 2 4.841287 47.484 97.2
stria develop 2 4.87497 47.5 97.2
stria develop 2 4.908663 47.5 100.0
stria develop 2 4.941656 47.5 100.0
stria develop 2 4.975587 47.5 100.0
stria develop 2 5.008878 47.5 100.0
stria develop 2 5.042387 47.516 100.0
stria develop 2 5.07639 47.516 100.0
stria develop 2 5.110466 47.516 100.0
stria develop 2 5.145705 47.516 100.0
stria develop 2 5.179366 47.531 99.1
stria develop 2 5.213265 47.547 99.1
stria develop 2 5.247078 47.578 99.1
stria develop 2 5.281171 47.609 99.2
stria develop 2 5.315438 47.625 99.2
stria develop 2 5.349715 47.703 99.2
stria develop 2 5.384189 47.781 99.2
stria develop 2 5.417999 47.844 100.0
stria develop 2 5.450328 47.844 100.0
stria develop 2 5.484095 47.844 100.0
stria develop 2 5.517729 47.844 100.0
stria develop 2 5.549838 47.859 99.0
stria develop 2 5.583834 47.859 99.0
stria develop 2 5.617901 47.859 99.0
stria develop 2 5.651772 47.875 100.0
stria develop 2 5.685533 47.875 100.0
stria develop 2 5.719374 47.875 100.0
stria develop 2 5.753392 47.875 100.0
stria develop 2 5.787337 47.891 100.0
stria develop 2 5.820695 47.906 100.0
stria develop 2 5.854616 47.922 100.0
stria develop 2 5.888496 47.922 100.0
stria develop 2 5.922476 47.922 100.0
stria develop 2 5.953978 47.922 100.0
stria develop 2 5.987798 47.922 100.0
stria develop 2 6.02147 47.922 100.0
stria develop 2 6.055375 47.922 98.9
stria develop 2 6.088985 47.922 98.9
stria develop 2 6.12336 47.984 98.9
stria develop 2 6.154044 48.016 98.5
stria develop 2 6.187436 48.047 98.5
stria develop 2 6.220676 48.344 98.5
stria develop 2 6.254468 48.469 98.5
stria develop 2 6.285935 48.484 99.0
stria develop 2 6.319734 48.5 99.0
stria develop 2 6.351717 48.531 99.0
stria develop 2 6.387608 48.531 99.0
stria develop 2 6.42136 48.531 100.0
stria develop 2 6.456049 48.562 100.0
stria develop 2 6.489794 48.562 100.0
stria develop 2 6.524852 48.562 100.0
stria develop 2 6.559065 48.562 97.9
stria develop 2 6.593166 48.578 97.9
stria develop 2 6.625265 48.594 97.9
stria develop 2 6.65503 48.641 99.5
stria develop 2 6.688932 48.656 99.5
stria develop 2 6.721203 48.703 99.5
stria develop 2 6.75336 48.734 99.5
stria develop 2 6.787472 48.734 98.8
stria develop 2 6.821276 48.75 98.8
stria develop 2 6.854972 48.75 98.8
stria develop 2 6.889125 48.75 98.8
stria develop 2 6.923367 48.766 100.0
stria develop 2 6.957311 48.766 100.0
stria develop 2 6.991575 48.766 100.0
stria develop 2 7.025732 48.781 97.9
stria develop 2 7.059694 48.781 97.9
stria develop 2 7.093469 48.781 97.9
stria develop 2 7.127259 48.797 97.9
stria develop 2 7.161173 48.812 100.0
stria develop 2 7.193376 48.828 100.0
stria develop 2 7.22719 48.828 100.0
stria develop 2 7.25592 48.828 100.0
stria develop 2 7.289706 48.828 100.0
stria develop 2 7.323412 48.828 100.0
stria develop 2 7.357567 48.828 100.0
stria develop 2 7.391431 48.844 100.0
stria develop 2 7.425041 48.844 100.0
stria develop 2 7.458645 48.859 100.0
stria develop 2 7.492532 48.875 100.0
stria develop 2 7.526087 48.938 100.0
stria develop 2 7.559687 48.969 98.5
stria develop 2 7.593534 49.016 98.5
stria develop 2 7.623968 49.031 98.5
stria develop 2 7.657532 49.031 100.0
stria develop 2 7.691332 49.031 100.0
stria develop 2 7.725014 49.047 100.0
stria develop 2 7.758706 49.047 100.0
stria develop 2 7.788578 49.047 98.8
stria develop 2 7.822663 49.062 98.8
stria develop 2 7.856792 49.062 98.8
stria develop 2 7.890454 49.062 98.8
stria develop 2 7.923962 49.078 100.0
stria develop 2 7.957721 49.094 100.0
stria develop 2 7.991431 49.109 100.0
stria develop 2 8.025319 49.109 100.0
stria develop 2 8.058649 49.109 100.0
stria develop 2 8.092262 49.109 100.0
stria develop 2 8.125318 49.109 100.0
stria develop 2 8.153999 49.125 98.6
stria develop 2 8.187691 49.125 98.6
stria develop 2 8.221686 49.156 98.6
stria develop 2 8.255518 49.203 98.6
stria develop 2 8.288208 49.266 99.9
stria develop 2 8.322012 49.297 99.9
stria develop 2 8.355799 49.312 99.9
stria develop 2 8.389673 49.312 99.9
stria develop 2 8.423434 49.328 99.2
stria develop 2 8.457267 49.344 99.2
stria develop 2 8.491039 49.344 99.2
stria develop 2 8.525005 49.344 99.2
stria develop 2 8.558675 49.375 100.0
stria develop 2 8.592485 49.391 100.0
stria develop 2 8.622687 49.391 100.0
stria develop 2 8.656329 49.391 99.4
stria develop 2 8.690132 49.391 99.4
stria develop 2 8.723693 49.406 99.4
stria develop 2 8.75288 49.406 99.4
stria develop 2 8.786709 49.438 100.0
stria develop 2 8.818366 49.5 100.0
stria develop 2 8.852134 49.766 100.0
stria develop 2 8.885742 49.781 100.0
stria develop 2 8.919186 49.797 99.0
stria develop 2 8.953228 49.797 99.0
stria develop 2 8.986666 49.812 99.0
stria develop 2 9.018396 49.812 99.0
stria develop 2 9.052206 49.844 99.7
stria develop 2 9.085878 49.859 99.7
stria develop 2 9.119405 49.859 99.7
stria develop 2 9.151698 49.859 99.7
stria develop 2 9.185488 49.875 100.0
stria develop 2 9.21909 49.875 100.0
stria develop 2 9.252596 49.891 100.0
stria develop 2 9.286307 49.906 100.0
stria develop 2 9.320023 49.984 100.0
stria develop 2 9.353729 50.109 100.0
stria develop 2 9.387377 50.172 100.0
stria develop 2 9.421459 50.172 99.7
stria develop 2 9.455491 50.188 99.7
stria develop 2 9.489327 50.188 99.7
stria develop 2 9.523298 50.203 99.7
stria develop 2 9.554012 50.203 99.3
stria develop 2 9.587667 50.219 99.3
stria develop 2 9.619106 50.234 99.3
stria develop 2 9.651747 50.25 99.3
stria develop 2 9.685819 50.25 100.0
stria develop 2 9.71985 50.25 100.0
stria develop 2 9.753724 50.266 100.0
stria develop 2 9.787365 50.422 99.5
stria develop 2 9.821207 50.438 99.5
stria develop 2 9.854005 50.484 99.5
stria develop 2 9.887583 50.484 99.5
stria develop 2 9.919156 50.516 99.5
stria develop 2 9.953089 50.547 99.5
stria develop 2 9.985014 50.562 99.5
stria develop 2 10.017037 50.609 99.5
stria develop 2 10.050598 50.609 100.0
stria develop 2 10.084172 50.625 100.0
stria develop 2 10.117703 50.641 100.0
stria develop 2 10.150305 50.672 100.0
stria develop 2 10.183863 50.672 99.3
stria develop 2 10.217728 50.672 99.3
stria develop 2 10.251383 50.688 99.3
stria develop 2 10.285193 50.734 99.8
stria develop 2 10.318795 50.75 99.8
stria develop 2 10.352524 50.766 99.8
stria develop 2 10.381799 50.797 99.8
stria develop 2 10.41601 50.797 100.0
stria develop 2 10.45009 50.812 100.0
stria develop 2 10.484283 50.812 100.0
stria develop 2 10.51798 50.844 100.0
stria develop 2 10.551764 50.859 99.3
stria develop 2 10.585679 50.859 99.3
stria develop 2 10.619689 50.891 99.3
stria develop 2 10.652618 50.891 99.3
stria develop 2 10.686808 50.938 100.0
stria develop 2 10.720703 51.0 100.0
stria develop 2 10.754586 51.062 100.0
stria develop 2 10.788484 51.062 99.3
stria develop 2 10.822278 51.062 99.3
stria develop 2 10.856201 51.062 99.3
stria develop 2 10.88995 51.062 99.3
stria develop 2 10.924097 51.062 99.5
stria develop 2 10.958057 51.125 99.5
stria develop 2 10.991508 51.141 99.5
stria develop 2 11.025428 51.172 99.5
stria develop 2 11.059157 51.203 99.1
stria develop 2 11.092881 51.203 99.1
stria develop 2 11.126671 51.234 99.1
stria develop 2 11.160398 51.25 100.0
stria develop 2 11.194052 51.25 100.0
stria develop 2 11.226674 51.25 100.0
stria develop 2 11.257624 51.266 100.0
stria develop 2 11.2913 51.281 99.7
stria develop 2 11.324326 51.281 99.7
stria develop 2 11.355182 51.312 99.7
stria develop 2 11.389085 51.328 99.7
stria develop 2 11.423025 51.328 99.2
stria develop 2 11.453968 51.328 99.2
stria develop 2 11.487754 51.328 99.2
stria develop 2 11.520637 51.344 99.2
stria develop 2 11.552661 51.359 100.0
stria develop 2 11.582845 51.359 100.0
stria develop 2 11.616068 51.391 100.0
stria develop 2 11.650169 51.406 100.0
stria develop 2 11.683635 51.406 99.9
stria develop 2 11.717227 51.406 99.9
stria develop 2 11.750766 51.422 99.9
stria develop 2 11.784598 51.422 99.4
stria develop 2 11.814727 51.438 99.4
stria develop 2 11.847568 51.438 99.4
stria develop 2 11.881381 51.469 99.4
stria develop 2 11.915167 51.469 100.0
stria develop 2 11.948729 51.5 100.0
stria develop 2 11.982317 51.5 100.0
stria develop 2 12.016512 51.531 100.0
stria develop 2 12.049834 51.594 100.0
stria develop 2 12.083652 51.656 100.0
stria develop 2 12.117224 51.688 100.0
stria develop 2 12.15067 51.688 100.0
stria develop 2 12.184618 51.703 100.0
stria develop 2 12.218173 51.719 100.0
stria develop 2 12.247572 51.719 100.0
stria develop 2 12.281283 51.75 100.0
stria develop 2 12.314991 51.766 100.0
stria develop 2 12.34384 51.766 100.0
stria develop 2 12.377569 51.766 100.0
stria develop 2 12.407637 51.766 97.6
stria develop 2 12.441297 51.781 97.6
stria develop 2 12.475449 51.797 97.6
stria develop 2 12.50862 51.797 97.6
stria develop 2 12.541851 51.828 100.0
stria develop 2 12.57532 51.906 100.0
stria develop 2 12.609025 51.984 100.0
stria develop 2 12.642649 51.984 100.0
stria develop 2 12.676484 52.0 99.9
stria develop 2 12.710275 52.0 99.9
stria develop 2 12.744462 52.016 99.9
stria develop 2 12.77797 52.047 99.9
stria develop 2 12.810001 52.062 100.0
stria develop 2 12.844102 52.062 100.0
stria develop 2 12.878023 52.062 100.0
stria develop 2 12.911673 52.078 99.4
stria develop 2 12.945422 52.094 99.4
stria develop 2 12.979643 52.094 99.4
stria develop 2 13.013331 52.109 99.4
stria develop 2 13.047258 52.109 100.0
stria develop 2 13.081414 52.125 100.0
stria develop 2 13.115533 52.141 100.0
stria develop 2 13.148659 52.156 100.0
stria develop 2 13.182512 52.156 100.0
stria develop 2 13.216207 52.156 100.0
stria develop 2 13.249814 52.156 100.0
stria develop 2 13.283337 52.172 100.0
stria develop 2 13.316936 52.188 100.0
stria develop 2 13.350316 52.188 100.0
stria develop 2 13.385792 52.25 100.0
stria develop 2 13.420228 52.25 98.5
stria develop 2 13.453912 52.25 98.5
stria develop 2 13.487707 52.25 98.5
stria develop 2 13.520659 52.266 98.5
stria develop 2 13.554391 52.281 98.8
stria develop 2 13.587297 52.297 98.8
stria develop 2 13.620692 52.312 98.8
stria develop 2 13.654413 52.312 98.8
stria develop 2 13.687546 52.312 100.0
stria develop 2 13.721176 52.312 100.0
stria develop 2 13.755023 52.328 100.0
stria develop 2 13.789194 52.328 99.6
stria develop 2 13.8227 52.344 99.6
stria develop 2 13.856178 52.359 99.6
stria develop 2 13.889683 52.375 99.6
stria develop 2 13.921786 52.375 100.0
stria develop 2 13.955458 52.391 100.0
stria develop 2 13.985097 52.391 100.0
stria develop 2 14.018822 52.391 100.0
stria develop 2 14.049323 52.406 99.1
stria develop 2 14.087328 52.422 99.1
stria develop 2 14.12063 52.422 99.1
stria develop 2 14.154098 52.438 99.1
stria develop 2 14.187357 52.438 100.0
stria develop 2 14.221072 52.469 100.0
stria develop 2 14.249873 52.531 100.0
stria develop 2 14.283136 52.547 100.0
stria develop 2 14.316569 52.578 99.3
stria develop 2 14.350027 52.594 99.3
stria develop 2 14.383501 52.594 99.3
stria develop 2 14.412304 52.594 98.6
stria develop 2 14.44566 52.594 98.6
stria develop 2 14.479391 52.609 98.6
stria develop 2 14.513212 52.609 98.6
stria develop 2 14.546973 52.609 100.0
stria develop 2 14.580722 52.609 100.0
stria develop 2 14.614615 52.625 100.0
stria develop 2 14.648386 52.625 100.0
stria develop 2 14.68241 52.641 99.3
stria develop 2 14.716206 52.641 99.3
stria develop 2 14.750278 52.656 99.3
stria develop 2 14.783963 52.656 99.3
stria develop 2 14.817 52.656 100.0
stria develop 2 14.850874 52.656 100.0
stria develop 2 14.883613 52.656 100.0
stria develop 2 14.914457 52.656 98.0
stria develop 2 14.948051 52.656 98.0
stria develop 2 14.980883 52.656 98.0
stria develop 2 15.01457 52.656 98.0
stria develop 2 15.048545 52.656 99.9
stria develop 2 15.08238 52.656 99.9
stria develop 2 15.116263 52.656 99.9
stria develop 3 0.00045 0.172 0.0
stria develop 3 0.034037 18.344 3.7
stria develop 3 0.067822 23.531 3.7
stria develop 3 0.10057 28.359 3.7
stria develop 3 0.134444 30.234 39.4
stria develop 3 0.167243 30.234 39.4
stria develop 3 0.200534 30.234 39.4
stria develop 3 0.234322 30.25 39.4
stria develop 3 0.267273 30.25 63.3
stria develop 3 0.301289 30.328 63.3
stria develop 3 0.335191 30.328 63.3
stria develop 3 0.367287 30.359 63.3
stria develop 3 0.40089 30.422 76.6
stria develop 3 0.434662 30.422 76.6
stria develop 3 0.465643 30.422 76.6
stria develop 3 0.499152 30.422 76.6
stria develop 3 0.53287 30.422 85.0
stria develop 3 0.566733 30.438 85.0
stria develop 3 0.600473 30.453 85.0
stria develop 3 0.633921 30.453 85.0
stria develop 3 0.667769 30.453 90.6
stria develop 3 0.701477 30.469 90.6
stria develop 3 0.735229 30.484 90.6
stria develop 3 0.766885 30.484 93.6
stria develop 3 0.800564 30.641 93.6
stria develop 3 0.833926 30.719 93.6
stria develop 3 0.867254 30.797 93.6
stria develop 3 0.901004 30.859 97.0
stria develop 3 0.933901 30.875 97.0
stria develop 3 0.967483 30.875 97.0
stria develop 3 1.001188 30.875 97.0
stria develop 3 1.035003 30.875 97.0
stria develop 3 1.068866 30.891 97.0
stria develop 3 1.102832 30.891 97.0
stria develop 3 1.136255 30.891 97.7
stria develop 3 1.170317 30.906 97.7
stria develop 3 1.204334 30.906 97.7
stria develop 3 1.235853 30.906 97.7
stria develop 3 1.26965 30.906 100.0
stria develop 3 1.303969 30.922 100.0
stria develop 3 1.338391 30.938 100.0
stria develop 3 1.372067 30.953 100.0
stria develop 3 1.405873 30.953 98.0
stria develop 3 1.435802 30.953 98.0
stria develop 3 1.469573 30.953 98.0
stria develop 3 1.503673 30.953 98.0
stria develop 3 1.537535 30.953 100.0
stria develop 3 1.571404 30.953 100.0
stria develop 3 1.605362 30.969 100.0
stria develop 3 1.63918 30.969 99.6
stria develop 3 1.673321 30.969 99.6
stria develop 3 1.707449 30.984 99.6
stria develop 3 1.736486 30.984 99.6
stria develop 3 1.767208 30.984 99.1
stria develop 3 1.800537 30.984 99.1
stria develop 3 1.834293 30.984 99.1
stria develop 3 1.867209 31.0 99.1
stria develop 3 1.900561 31.0 100.0
stria develop 3 1.934503 31.016 100.0
stria develop 3 1.968595 31.031 100.0
stria develop 3 2.002478 31.109 100.0
stria develop 3 2.035059 31.125 100.0
stria develop 3 2.065342 31.156 100.0
stria develop 3 2.096365 31.172 100.0
stria develop 3 2.130373 31.172 100.0
stria develop 3 2.159959 31.188 99.9
stria develop 3 2.193998 31.203 99.9
stria develop 3 2.22808 31.203 99.9
stria develop 3 2.261941 31.219 98.4
stria develop 3 2.296023 31.219 98.4
stria develop 3 2.329995 34.391 98.4
stria develop 3 2.363844 37.453 98.4
stria develop 3 2.398038 40.516 99.0
stria develop 3 2.431901 43.766 99.0
stria develop 3 2.466038 46.656 99.0
stria develop 3 2.500662 46.672 99.0
stria develop 3 2.534317 46.734 99.4
stria develop 3 2.568259 46.781 99.4
stria develop 3 2.602194 46.812 99.4
stria develop 3 2.63613 46.828 99.4
stria develop 3 2.67018 46.828 99.3
stria develop 3 2.704083 46.828 99.3
stria develop 3 2.737867 46.844 99.3
stria develop 3 2.771606 46.844 100.0
stria develop 3 2.805534 46.859 100.0
stria develop 3 2.836583 46.859 100.0
stria develop 3 2.870753 46.859 100.0
stria develop 3 2.905063 46.875 99.9
stria develop 3 2.938707 46.891 99.9
stria develop 3 2.971738 46.906 99.9
stria develop 3 3.005259 46.906 99.9
stria develop 3 3.038709 46.906 99.0
stria develop 3 3.072227 46.906 99.0
stria develop 3 3.106379 46.906 99.0
stria develop 3 3.140503 46.906 99.5
stria develop 3 3.174421 46.906 99.5
stria develop 3 3.208191 46.906 99.5
stria develop 3 3.242177 46.906 99.5
stria develop 3 3.276062 46.906 100.0
stria develop 3 3.310033 46.906 100.0
stria develop 3 3.343797 46.922 100.0
stria develop 3 3.375535 46.922 100.0
stria develop 3 3.408869 46.922 100.0
stria develop 3 3.442588 46.953 100.0
stria develop 3 3.47774 46.953 100.0
stria develop 3 3.511325 47.016 100.0
stria develop 3 3.545246 47.047 100.0
stria develop 3 3.57917 47.078 100.0
stria develop 3 3.612842 47.094 100.0
stria develop 3 3.646295 47.109 100.0
stria develop 3 3.679979 47.109 100.0
stria develop 3 3.71353 47.109 100.0
stria develop 3 3.746864 47.125 100.0
stria develop 3 3.780244 47.125 97.9
stria develop 3 3.813967 47.141 97.9
stria develop 3 3.847605 47.141 97.9
stria develop 3 3.880194 47.141 97.9
stria develop 3 3.914022 47.156 98.6
stria develop 3 3.947932 47.172 98.6
stria develop 3 3.981703 47.188 98.6
stria develop 3 4.015212 47.188 98.8
stria develop 3 4.048196 47.188 98.8
stria develop 3 4.082061 47.188 98.8
stria develop 3 4.115571 47.188 98.8
stria develop 3 4.149528 47.188 99.4
stria develop 3 4.18314 47.188 99.4
stria develop 3 4.216597 47.188 99.4
stria develop 3 4.24819 47.188 99.4
stria develop 3 4.282206 47.188 99.5
stria develop 3 4.316366 47.188 99.5
stria develop 3 4.350395 47.188 99.5
stria develop 3 4.384006 47.188 99.5
stria develop 3 4.418186 47.203 100.0
stria develop 3 4.452136 47.203 100.0
stria develop 3 4.485976 47.234 100.0
stria develop 3 4.519839 47.297 100.0
stria develop 3 4.5539 47.344 100.0
stria develop 3 4.587943 47.375 100.0
stria develop 3 4.622011 47.438 100.0
stria develop 3 4.656072 47.438 99.3
stria develop 3 4.687295 47.453 99.3
stria develop 3 4.721136 47.469 99.3
stria develop 3 4.755276 47.469 99.3
stria develop 3 4.788518 47.469 100.0
stria develop 3 4.822488 47.484 100.0
stria develop 3 4.856686 47.5 100.0
stria develop 3 4.890883 47.516 97.9
stria develop 3 4.924767 47.516 97.9
stria develop 3 4.956518 47.516 97.9
stria develop 3 4.988043 47.516 97.9
stria develop 3 5.020135 47.516 99.8
stria develop 3 5.053518 47.531 99.8
stria develop 3 5.086913 47.531 99.8
stria develop 3 5.120812 47.531 99.8
stria develop 3 5.154519 47.531 100.0
stria develop 3 5.188236 47.547 100.0
stria develop 3 5.222569 47.562 100.0
stria develop 3 5.255213 47.594 100.0
stria develop 3 5.286127 47.625 99.3
stria develop 3 5.320176 47.641 99.3
stria develop 3 5.353947 47.719 99.3
stria develop 3 5.384789 47.797 99.3
stria develop 3 5.418738 47.859 99.3
stria develop 3 5.451974 47.859 99.3
stria develop 3 5.486039 47.859 99.3
stria develop 3 5.519998 47.859 98.7
stria develop 3 5.550715 47.859 98.7
stria develop 3 5.584412 47.875 98.7
stria develop 3 5.614202 47.875 98.7
stria develop 3 5.647787 47.875 98.0
stria develop 3 5.681271 47.891 98.0
stria develop 3 5.715478 47.891 98.0
stria develop 3 5.744369 47.891 98.0
stria develop 3 5.778246 47.891 100.0
stria develop 3 5.812185 47.922 100.0
stria develop 3 5.845192 47.922 100.0
stria develop 3 5.877553 47.938 100.0
stria develop 3 5.911692 47.938 100.0
stria develop 3 5.945506 47.938 100.0
stria develop 3 5.978506 47.938 100.0
stria develop 3 6.012412 47.938 100.0
stria develop 3 6.045178 47.938 100.0
stria develop 3 6.078512 47.938 100.0
stria develop 3 6.107261 47.938 100.0
stria develop 3 6.136838 48.0 100.0
stria develop 3 6.170103 48.031 100.0
stria develop 3 6.203655 48.094 100.0
stria develop 3 6.23758 48.422 100.0
stria develop 3 6.271346 48.484 98.2
stria develop 3 6.305079 48.516 98.2
stria develop 3 6.338479 48.516 98.2
stria develop 3 6.371849 48.547 98.2
stria develop 3 6.405979 48.547 100.0
stria develop 3 6.439959 48.547 100.0
stria develop 3 6.474061 48.578 100.0
stria develop 3 6.507951 48.578 100.0
stria develop 3 6.541875 48.578 99.5
stria develop 3 6.575919 48.594 99.5
stria develop 3 6.609729 48.609 99.5
stria develop 3 6.643584 48.641 97.9
stria develop 3 6.676918 48.672 97.9
stria develop 3 6.710797 48.719 97.9
stria develop 3 6.744706 48.75 97.9
stria develop 3 6.778504 48.75 100.0
stria develop 3 6.812501 48.766 100.0
stria develop 3 6.846551 48.766 100.0
stria develop 3 6.880517 48.766 100.0
stria develop 3 6.91354 48.781 100.0
stria develop 3 6.947746 48.781 100.0
stria develop 3 6.981329 48.781 100.0
stria develop 3 7.014874 48.797 100.0
stria develop 3 7.04818 48.797 100.0
stria develop 3 7.08218 48.797 100.0
stria develop 3 7.111295 48.812 100.0
stria develop 3 7.145256 48.828 98.5
stria develop 3 7.175596 48.844 98.5
stria develop 3 7.209972 48.844 98.5
stria develop 3 7.244 48.844 98.5
stria develop 3 7.279022 48.844 98.8
stria develop 3 7.313048 48.844 98.8
stria develop 3 7.343677 48.844 98.8
stria develop 3 7.377463 48.859 98.8
stria develop 3 7.411465 48.859 99.6
stria develop 3 7.445504 48.859 99.6
stria develop 3 7.479746 48.906 99.6
stria develop 3 7.51331 48.938 99.6
stria develop 3 7.547129 48.969 100.0
stria develop 3 7.580367 49.016 100.0
stria develop 3 7.613685 49.047 100.0
stria develop 3 7.647646 49.062 99.3
stria develop 3 7.681434 49.062 99.3
stria develop 3 7.714823 49.062 99.3
stria develop 3 7.748154 49.078 99.3
stria develop 3 7.781487 49.078 100.0
stria develop 3 7.81532 49.094 100.0
stria develop 3 7.848206 49.094 100.0
stria develop 3 7.881524 49.094 100.0
stria develop 3 7.915152 49.094 99.7
stria develop 3 7.948794 49.125 99.7
stria develop 3 7.982375 49.125 99.7
stria develop 3 8.016252 49.141 99.7
stria develop 3 8.05026 49.141 100.0
stria develop 3 8.083873 49.141 100.0
stria develop 3 8.11762 49.141 100.0
stria develop 3 8.150287 49.141 100.0
stria develop 3 8.1842 49.156 100.0
stria develop 3 8.217805 49.172 100.0
stria develop 3 8.251577 49.188 100.0
stria develop 3 8.285286 49.266 100.0
stria develop 3 8.319268 49.328 100.0
stria develop 3 8.353194 49.344 100.0
stria develop 3 8.387054 49.344 100.0
stria develop 3 8.42083 49.359 100.0
stria develop 3 8.45445 49.359 100.0
stria develop 3 8.488276 49.375 100.0
stria develop 3 8.521996 49.375 100.0
stria develop 3 8.555624 49.391 98.8
stria develop 3 8.589008 49.406 98.8
stria develop 3 8.622774 49.422 98.8
stria develop 3 8.656426 49.422 99.4
stria develop 3 8.690238 49.422 99.4
stria develop 3 8.723834 49.422 99.4
stria develop 3 8.757198 49.438 99.4
stria develop 3 8.790708 49.469 100.0
stria develop 3 8.824034 49.531 100.0
stria develop 3 8.855699 49.797 100.0
stria develop 3 8.889288 49.812 100.0
stria develop 3 8.922891 49.828 100.0
stria develop 3 8.956354 49.828 100.0
stria develop 3 8.989525 49.844 100.0
stria develop 3 9.023007 49.844 97.5
stria develop 3 9.056445 49.875 97.5
stria develop 3 9.089819 49.891 97.5
stria develop 3 9.123703 49.891 97.5
stria develop 3 9.157008 49.891 100.0
stria develop 3 9.190621 49.906 100.0
stria develop 3 9.224334 49.906 100.0
stria develop 3 9.258426 49.922 100.0
stria develop 3 9.292219 49.938 100.0
stria develop 3 9.325843 50.0 100.0
stria develop 3 9.359703 50.062 100.0
stria develop 3 9.391777 50.188 100.0
stria develop 3 9.425646 50.188 98.6
stria develop 3 9.459565 50.188 98.6
stria develop 3 9.493353 50.203 98.6
stria develop 3 9.527227 50.219 99.4
stria develop 3 9.561064 50.219 99.4
stria develop 3 9.594974 50.234 99.4
stria develop 3 9.628857 50.25 99.4
stria develop 3 9.662833 50.266 100.0
stria develop 3 9.696905 50.266 100.0
stria develop 3 9.730765 50.266 100.0
stria develop 3 9.764667 50.281 100.0
stria develop 3 9.798565 50.438 99.8
stria develop 3 9.832584 50.453 99.8
stria develop 3 9.866411 50.5 99.8
stria develop 3 9.895322 50.5 99.8
stria develop 3 9.929297 50.531 100.0
stria develop 3 9.963209 50.562 100.0
stria develop 3 9.997224 50.578 100.0
stria develop 3 10.030636 50.625 100.0
stria develop 3 10.064991 50.625 100.0
stria develop 3 10.098956 50.641 100.0
stria develop 3 10.132797 50.656 100.0
stria develop 3 10.165687 50.688 98.7
stria develop 3 10.198346 50.688 98.7
stria develop 3 10.232205 50.688 98.7
stria develop 3 10.264773 50.703 98.7
stria develop 3 10.298869 50.75 100.0
stria develop 3 10.3318 50.766 100.0
stria develop 3 10.36546 50.781 100.0
stria develop 3 10.399251 50.812 100.0
stria develop 3 10.431466 50.812 100.0
stria develop 3 10.465162 50.812 100.0
stria develop 3 10.49902 50.828 100.0
stria develop 3 10.532953 50.859 99.1
stria develop 3 10.566671 50.875 99.1
stria develop 3 10.600179 50.875 99.1
stria develop 3 10.633882 50.891 99.1
stria develop 3 10.66755 50.906 98.8
stria develop 3 10.697026 50.938 98.8
stria develop 3 10.730605 51.0 98.8
stria develop 3 10.762563 51.078 98.8
stria develop 3 10.792433 51.078 99.6
stria develop 3 10.826088 51.078 99.6
stria develop 3 10.859898 51.078 99.6
stria develop 3 10.893686 51.078 99.6
stria develop 3 10.927482 51.078 99.6
stria develop 3 10.960847 51.094 99.6
stria develop 3 10.993275 51.141 99.6
stria develop 3 11.026477 51.172 98.8
stria develop 3 11.056311 51.219 98.8
stria develop 3 11.091374 51.219 98.8
stria develop 3 11.125373 51.234 98.8
stria develop 3 11.158836 51.266 100.0
stria develop 3 11.192168 51.266 100.0
stria develop 3 11.225908 51.266 100.0
stria develop 3 11.259946 51.281 100.0
stria develop 3 11.293923 51.297 99.7
stria develop 3 11.328131 51.297 99.7
stria develop 3 11.362536 51.312 99.7
stria develop 3 11.396737 51.328 99.7
stria develop 3 11.43073 51.344 99.6
stria develop 3 11.465067 51.344 99.6
stria develop 3 11.498965 51.344 99.6
stria develop 3 11.532999 51.359 100.0
stria develop 3 11.565866 51.375 100.0
stria develop 3 11.598154 51.375 100.0
stria develop 3 11.6322 51.391 100.0
stria develop 3 11.666526 51.422 99.8
stria develop 3 11.695706 51.422 99.8
stria develop 3 11.729726 51.422 99.8
stria develop 3 11.763994 51.422 99.8
stria develop 3 11.798293 51.438 99.3
stria develop 3 11.832422 51.453 99.3
stria develop 3 11.865862 51.453 99.3
stria develop 3 11.899541 51.484 99.3
stria develop 3 11.933169 51.484 99.4
stria develop 3 11.966836 51.484 99.4
stria develop 3 12.000558 51.516 99.4
stria develop 3 12.034239 51.531 100.0
stria develop 3 12.068116 51.578 100.0
stria develop 3 12.101032 51.656 100.0
stria develop 3 12.133849 51.688 100.0
stria develop 3 12.167601 51.703 100.0
stria develop 3 12.200987 51.719 100.0
stria develop 3 12.234592 51.719 100.0
stria develop 3 12.268128 51.734 100.0
stria develop 3 12.302027 51.75 100.0
stria develop 3 12.335016 51.766 100.0
stria develop 3 12.368594 51.781 100.0
stria develop 3 12.40221 51.781 100.0
stria develop 3 12.43607 51.781 100.0
stria develop 3 12.469806 51.797 100.0
stria develop 3 12.501114 51.812 100.0
stria develop 3 12.534693 51.812 100.0
stria develop 3 12.568467 51.844 100.0
stria develop 3 12.602379 51.906 100.0
stria develop 3 12.635805 51.984 100.0
stria develop 3 12.668022 52.0 98.7
stria develop 3 12.701942 52.0 98.7
stria develop 3 12.731221 52.016 98.7
stria develop 3 12.764774 52.031 98.7
stria develop 3 12.798467 52.031 99.4
stria develop 3 12.832395 52.062 99.4
stria develop 3 12.866326 52.078 99.4
stria develop 3 12.900189 52.078 99.4
stria develop 3 12.933929 52.094 99.1
stria develop 3 12.967177 52.109 99.1
stria develop 3 13.001087 52.109 99.1
stria develop 3 13.034554 52.125 99.8
stria develop 3 13.068774 52.125 99.8
stria develop 3 13.102611 52.125 99.8
stria develop 3 13.136537 52.141 99.8
stria develop 3 13.170234 52.156 99.3
stria develop 3 13.202058 52.172 99.3
stria develop 3 13.235045 52.172 99.3
stria develop 3 13.268861 52.172 99.3
stria develop 3 13.302737 52.172 100.0
stria develop 3 13.336958 52.188 100.0
stria develop 3 13.371131 52.203 100.0
stria develop 3 13.404672 52.203 99.1
stria develop 3 13.438699 52.266 99.1
stria develop 3 13.472636 52.266 99.1
stria develop 3 13.506268 52.266 99.1
stria develop 3 13.539685 52.266 100.0
stria develop 3 13.573153 52.297 100.0
stria develop 3 13.601893 52.297 100.0
stria develop 3 13.637504 52.312 100.0
stria develop 3 13.67095 52.328 98.8
stria develop 3 13.704906 52.328 98.8
stria develop 3 13.737982 52.328 98.8
stria develop 3 13.771348 52.328 98.8
stria develop 3 13.805088 52.344 100.0
stria develop 3 13.838009 52.344 100.0
stria develop 3 13.873849 52.359 100.0
stria develop 3 13.907534 52.375 99.6
stria develop 3 13.941509 52.391 99.6
stria develop 3 13.974312 52.391 99.6
stria develop 3 14.007876 52.406 99.6
stria develop 3 14.041515 52.406 100.0
stria develop 3 14.075202 52.406 100.0
stria develop 3 14.108644 52.422 100.0
stria develop 3 14.142159 52.438 100.0
stria develop 3 14.175648 52.453 100.0
stria develop 3 14.209252 52.453 100.0
stria develop 3 14.242719 52.453 100.0
stria develop 3 14.275539 52.484 100.0
stria develop 3 14.309037 52.547 99.5
stria develop 3 14.342942 52.562 99.5
stria develop 3 14.376728 52.609 99.5
stria develop 3 14.410722 52.609 98.9
stria develop 3 14.444879 52.609 98.9
stria develop 3 14.478777 52.609 98.9
stria develop 3 14.512634 52.609 98.9
stria develop 3 14.551619 52.625 99.0
stria develop 3 14.588323 52.625 99.0
stria develop 3 14.622478 52.625 99.0
stria develop 3 14.657382 52.641 98.1
stria develop 3 14.688985 52.641 98.1
stria develop 3 14.723222 52.656 98.1
stria develop 3 14.755811 52.656 98.1
stria develop 3 14.789591 52.672 100.0
stria develop 3 14.823097 52.672 100.0
stria develop 3 14.856833 52.672 100.0
stria develop 3 14.890355 52.672 100.0
stria develop 3 14.924086 52.672 99.8
stria develop 3 14.957754 52.672 99.8
stria develop 3 14.991407 52.672 99.8
stria develop 3 15.025073 52.672 99.8
stria develop 3 15.058639 52.672 99.7
stria develop 3 15.091088 52.672 99.7
stria develop 3 15.12462 52.672 99.7
stria develop 3 15.158166 52.672 99.2
stria branch 3 0.000552 0.172 0.0
stria branch 3 0.034189 13.516 0.0
stria branch 3 0.067967 22.016 0.0
stria branch 3 0.105902 27.078 21.8
stria branch 3 0.139632 31.047 21.8
stria branch 3 0.173368 31.047 21.8
stria branch 3 0.207307 31.047 51.1
stria branch 3 0.239725 31.047 51.1
stria branch 3 0.274364 31.062 51.1
stria branch 3 0.307348 31.125 51.1
stria branch 3 0.341302 31.125 69.1
stria branch 3 0.376502 31.141 69.1
stria branch 3 0.408473 31.156 69.1
stria branch 3 0.442566 31.172 69.1
stria branch 3 0.476683 31.172 80.7
stria branch 3 0.515001 31.172 80.7
stria branch 3 0.54894 31.172 80.7
stria branch 3 0.582844 31.188 80.7
stria branch 3 0.611804 31.188 86.2
stria branch 3 0.643036 31.203 86.2
stria branch 3 0.676978 31.203 86.2
stria branch 3 0.710874 31.203 91.5
stria branch 3 0.745124 31.219 91.5
stria branch 3 0.777497 31.234 91.5
stria branch 3 0.811117 31.266 91.5
stria branch 3 0.844164 31.391 94.3
stria branch 3 0.877964 31.484 94.3
stria branch 3 0.91189 31.562 94.3
stria branch 3 0.945938 31.578 94.3
stria branch 3 0.977818 31.578 97.9
stria branch 3 1.011671 31.578 97.9
stria branch 3 1.045505 31.578 97.9
stria branch 3 1.079297 31.578 97.9
stria branch 3 1.112977 31.594 98.1
stria branch 3 1.146742 31.594 98.1
stria branch 3 1.180468 31.594 98.1
stria branch 3 1.21413 31.609 98.6
stria branch 3 1.247844 31.609 98.6
stria branch 3 1.280467 31.609 98.6
stria branch 3 1.31412 31.609 98.6
stria branch 3 1.348285 31.641 98.2
stria branch 3 1.385663 31.641 98.2
stria branch 3 1.419546 31.656 98.2
stria branch 3 1.453612 31.656 98.2
stria branch 3 1.488197 31.656 100.0
stria branch 3 1.521075 31.656 100.0
stria branch 3 1.55477 31.656 100.0
stria branch 3 1.588461 31.656 98.2
stria branch 3 1.618104 31.656 98.2
stria branch 3 1.651825 31.672 98.2
stria branch 3 1.681485 31.672 98.2
stria branch 3 1.715499 31.672 100.0
stria branch 3 1.746001 31.688 100.0
stria branch 3 1.779988 31.688 100.0
stria branch 3 1.813937 31.688 100.0
stria branch 3 1.848485 31.688 99.7
stria branch 3 1.882684 31.703 99.7
stria branch 3 1.916807 31.703 99.7
stria branch 3 1.950987 31.703 99.7
stria branch 3 1.985211 31.734 99.3
stria branch 3 2.018944 31.766 99.3
stria branch 3 2.052723 31.797 99.3
stria branch 3 2.086368 31.844 99.4
stria branch 3 2.117887 31.859 99.4
stria branch 3 2.147604 31.859 99.4
stria branch 3 2.181237 31.875 99.4
stria branch 3 2.214176 31.891 100.0
stria branch 3 2.248141 31.891 100.0
stria branch 3 2.281643 31.906 100.0
stria branch 3 2.314985 31.906 100.0
stria branch 3 2.348308 33.188 100.0
stria branch 3 2.382009 36.109 100.0
stria branch 3 2.411426 38.672 100.0
stria branch 3 2.445195 41.672 100.0
stria branch 3 2.479324 45.234 99.6
stria branch 3 2.514103 47.312 99.6
stria branch 3 2.547853 47.328 99.6
stria branch 3 2.578278 47.391 99.6
stria branch 3 2.612119 47.438 99.5
stria branch 3 2.646137 47.469 99.5
stria branch 3 2.680242 47.484 99.5
stria branch 3 2.714262 47.484 99.3
stria branch 3 2.748176 47.484 99.3
stria branch 3 2.782006 47.5 99.3
stria branch 3 2.815859 47.5 99.3
stria branch 3 2.849742 47.516 100.0
stria branch 3 2.883193 47.516 100.0
stria branch 3 2.916811 47.516 100.0
stria branch 3 2.950456 47.531 100.0
stria branch 3 2.984389 47.547 99.9
stria branch 3 3.0183 47.562 99.9
stria branch 3 3.051984 47.562 99.9
stria branch 3 3.085504 47.562 99.9
stria branch 3 3.119405 47.562 100.0
stria branch 3 3.153202 47.562 100.0
stria branch 3 3.186858 47.562 100.0
stria branch 3 3.22055 47.562 99.4
stria branch 3 3.254287 47.562 99.4
stria branch 3 3.287869 47.562 99.4
stria branch 3 3.321388 47.562 99.4
stria branch 3 3.353405 47.562 98.9
stria branch 3 3.387084 47.578 98.9
stria branch 3 3.421077 47.578 98.9
stria branch 3 3.454769 47.578 98.9
stria branch 3 3.488542 47.609 100.0
stria branch 3 3.520107 47.609 100.0
stria branch 3 3.553783 47.656 100.0
stria branch 3 3.585851 47.688 100.0
stria branch 3 3.61966 47.734 99.7
stria branch 3 3.653195 47.75 99.7
stria branch 3 3.684086 47.766 99.7
stria branch 3 3.718151 47.766 98.3
stria branch 3 3.751773 47.766 98.3
stria branch 3 3.785381 47.781 98.3
stria branch 3 3.818879 47.781 98.3
stria branch 3 3.852283 47.797 99.3
stria branch 3 3.885851 47.797 99.3
stria branch 3 3.91944 47.797 99.3
stria branch 3 3.95285 47.812 99.3
stria branch 3 3.985839 47.828 99.7
stria branch 3 4.019509 47.844 99.7
stria branch 3 4.052993 47.844 99.7
stria branch 3 4.08364 47.844 99.7
stria branch 3 4.117756 47.844 100.0
stria branch 3 4.151519 47.844 100.0
stria branch 3 4.185253 47.844 100.0
stria branch 3 4.214959 47.844 98.9
stria branch 3 4.249044 47.844 98.9
stria branch 3 4.282992 47.844 98.9
stria branch 3 4.316455 47.844 98.9
stria branch 3 4.35051 47.844 100.0
stria branch 3 4.387086 47.844 100.0
stria branch 3 4.421066 47.844 100.0
stria branch 3 4.455058 47.844 100.0
stria branch 3 4.488733 47.859 99.9
stria branch 3 4.522616 47.875 99.9
stria branch 3 4.556769 47.922 99.9
stria branch 3 4.590743 47.969 99.6
stria branch 3 4.624512 48.031 99.6
stria branch 3 4.658552 48.094 99.6
stria branch 3 4.692338 48.094 99.6
stria branch 3 4.726205 48.109 100.0
stria branch 3 4.760043 48.109 100.0
stria branch 3 4.793536 48.125 100.0
stria branch 3 4.827558 48.125 100.0
stria branch 3 4.861337 48.141 100.0
stria branch 3 4.895034 48.156 100.0
stria branch 3 4.929001 48.172 100.0
stria branch 3 4.962985 48.172 98.5
stria branch 3 4.996919 48.172 98.5
stria branch 3 5.030817 48.172 98.5
stria branch 3 5.065077 48.172 98.5
stria branch 3 5.098927 48.188 100.0
stria branch 3 5.133179 48.188 100.0
stria branch 3 5.167069 48.188 100.0
stria branch 3 5.200937 48.188 100.0
stria branch 3 5.234625 48.203 99.4
stria branch 3 5.268328 48.219 99.4
stria branch 3 5.301989 48.25 99.4
stria branch 3 5.335592 48.281 99.4
stria branch 3 5.369327 48.297 100.0
stria branch 3 5.403095 48.375 100.0
stria branch 3 5.436121 48.406 100.0
stria branch 3 5.467375 48.469 98.7
stria branch 3 5.501188 48.469 98.7
stria branch 3 5.535178 48.469 98.7
stria branch 3 5.569188 48.469 98.7
stria branch 3 5.597918 48.484 99.2
stria branch 3 5.631648 48.484 99.2
stria branch 3 5.66569 48.484 99.2
stria branch 3 5.699769 48.5 99.2
stria branch 3 5.733832 48.5 100.0
stria branch 3 5.76773 48.5 100.0
stria branch 3 5.80008 48.5 100.0
stria branch 3 5.833822 48.516 100.0
stria branch 3 5.867613 48.531 99.7
stria branch 3 5.901314 48.531 99.7
stria branch 3 5.933234 48.547 99.7
stria branch 3 5.966915 48.547 99.2
stria branch 3 6.000727 48.547 99.2
stria branch 3 6.034306 48.547 99.2
stria branch 3 6.068041 48.547 99.2
stria branch 3 6.101531 48.547 99.3
stria branch 3 6.135055 48.547 99.3
stria branch 3 6.168819 48.609 99.3
stria branch 3 6.202623 48.641 99.3
stria branch 3 6.236413 48.672 100.0
stria branch 3 6.270544 48.812 100.0
stria branch 3 6.309529 49.0 100.0
stria branch 3 6.339191 49.016 97.6
stria branch 3 6.373712 49.031 97.6
stria branch 3 6.405477 49.062 97.6
stria branch 3 6.440345 49.062 97.6
stria branch 3 6.476953 49.062 99.3
stria branch 3 6.510999 49.094 99.3
stria branch 3 6.544152 49.094 99.3
stria branch 3 6.577835 49.094 99.3
stria branch 3 6.613185 49.094 99.5
stria branch 3 6.647109 49.125 99.5
stria branch 3 6.678421 49.125 99.5
stria branch 3 6.711869 49.172 99.5
stria branch 3 6.744154 49.188 100.0
stria branch 3 6.777487 49.234 100.0
stria branch 3 6.811187 49.266 100.0
stria branch 3 6.844972 49.281 99.6
stria branch 3 6.877576 49.281 99.6
stria branch 3 6.910821 49.281 99.6
stria branch 3 6.944641 49.281 99.6
stria branch 3 6.9784 49.297 100.0
stria branch 3 7.012388 49.297 100.0
stria branch 3 7.046261 49.312 100.0
stria branch 3 7.080121 49.312 100.0
stria branch 3 7.113821 49.312 100.0
stria branch 3 7.147818 49.328 100.0
stria branch 3 7.181309 49.344 100.0
stria branch 3 7.21371 49.344 100.0
stria branch 3 7.247049 49.359 98.1
stria branch 3 7.275822 49.359 98.1
stria branch 3 7.309463 49.359 98.1
stria branch 3 7.34294 49.359 98.4
stria branch 3 7.376813 49.359 98.4
stria branch 3 7.410728 49.359 98.4
stria branch 3 7.444757 49.375 98.4
stria branch 3 7.475941 49.375 100.0
stria branch 3 7.508394 49.391 100.0
stria branch 3 7.542417 49.406 100.0
stria branch 3 7.576438 49.469 100.0
stria branch 3 7.610354 49.531 99.0
stria branch 3 7.644145 49.562 99.0
stria branch 3 7.678171 49.578 99.0
stria branch 3 7.712915 49.578 99.0
stria branch 3 7.747151 49.578 99.4
stria branch 3 7.781222 49.594 99.4
stria branch 3 7.815363 49.594 99.4
stria branch 3 7.849487 49.609 100.0
stria branch 3 7.883397 49.609 100.0
stria branch 3 7.917233 49.609 100.0
stria branch 3 7.951052 49.609 100.0
stria branch 3 7.985148 49.625 99.9
stria branch 3 8.018195 49.641 99.9
stria branch 3 8.051999 49.656 99.9
stria branch 3 8.084404 49.656 99.9
stria branch 3 8.115007 49.656 99.5
stria branch 3 8.145939 49.656 99.5
stria branch 3 8.179625 49.656 99.5
stria branch 3 8.213472 49.672 99.5
stria branch 3 8.247001 49.672 100.0
stria branch 3 8.28034 49.703 100.0
stria branch 3 8.309934 49.766 100.0
stria branch 3 8.341746 49.828 98.5
stria branch 3 8.375481 49.859 98.5
stria branch 3 8.404755 49.859 98.5
stria branch 3 8.438867 49.875 98.5
stria branch 3 8.47236 49.875 100.0
stria branch 3 8.501283 49.891 100.0
stria branch 3 8.5345 49.891 100.0
stria branch 3 8.568411 49.891 100.0
stria branch 3 8.601941 49.906 100.0
stria branch 3 8.635645 49.922 100.0
stria branch 3 8.669227 49.938 100.0
stria branch 3 8.702832 49.938 100.0
stria branch 3 8.736442 49.938 99.6
stria branch 3 8.767922 49.953 99.6
stria branch 3 8.800104 49.953 99.6
stria branch 3 8.833721 49.984 99.6
stria branch 3 8.862949 50.047 100.0
stria branch 3 8.896651 50.312 100.0
stria branch 3 8.930235 50.328 100.0
stria branch 3 8.96366 50.344 100.0
stria branch 3 8.998996 50.344 99.1
stria branch 3 9.032575 50.359 99.1
stria branch 3 9.06593 50.375 99.1
stria branch 3 9.100207 50.391 98.7
stria branch 3 9.133936 50.406 98.7
stria branch 3 9.167249 50.406 98.7
stria branch 3 9.20003 50.406 98.7
stria branch 3 9.233707 50.422 99.1
stria branch 3 9.267675 50.422 99.1
stria branch 3 9.301547 50.453 99.1
stria branch 3 9.33573 50.484 99.1
stria branch 3 9.369462 50.531 100.0
stria branch 3 9.403228 50.641 100.0
stria branch 3 9.437191 50.703 100.0
stria branch 3 9.47097 50.703 99.6
stria branch 3 9.507617 50.719 99.6
stria branch 3 9.539981 50.719 99.6
stria branch 3 9.573442 50.734 99.6
stria branch 3 9.607336 50.734 99.0
stria branch 3 9.641409 50.766 99.0
stria branch 3 9.675021 50.781 99.0
stria branch 3 9.709066 50.781 99.0
stria branch 3 9.742663 50.781 100.0
stria branch 3 9.776411 50.781 100.0
stria branch 3 9.81035 50.797 100.0
stria branch 3 9.844009 50.969 99.4
stria branch 3 9.877744 51.0 99.4
stria branch 3 9.911576 51.016 99.4
stria branch 3 9.945447 51.031 99.4
stria branch 3 9.979424 51.062 100.0
stria branch 3 10.013233 51.094 100.0
stria branch 3 10.047207 51.125 100.0
stria branch 3 10.081213 51.141 100.0
stria branch 3 10.118582 51.156 99.5
stria branch 3 10.151776 51.172 99.5
stria branch 3 10.183352 51.203 99.5
stria branch 3 10.217214 51.203 99.5
stria branch 3 10.251331 51.203 99.9
stria branch 3 10.284971 51.219 99.9
stria branch 3 10.317148 51.266 99.9
stria branch 3 10.350939 51.266 100.0
stria branch 3 10.384639 51.297 100.0
stria branch 3 10.418444 51.328 100.0
stria branch 3 10.450068 51.328 100.0
stria branch 3 10.483802 51.328 100.0
stria branch 3 10.517763 51.344 100.0
stria branch 3 10.5511 51.375 100.0
stria branch 3 10.585364 51.391 100.0
stria branch 3 10.619353 51.391 99.2
stria branch 3 10.652956 51.406 99.2
stria branch 3 10.686841 51.422 99.2
stria branch 3 10.719173 51.453 98.2
stria branch 3 10.752898 51.516 98.2
stria branch 3 10.786518 51.594 98.2
stria branch 3 10.820513 51.594 98.2
stria branch 3 10.854527 51.594 100.0
stria branch 3 10.887748 51.594 100.0
stria branch 3 10.921434 51.594 100.0
stria branch 3 10.955108 51.594 100.0
stria branch 3 10.988726 51.641 100.0
stria branch 3 11.025969 51.656 100.0
stria branch 3 11.059836 51.688 100.0
stria branch 3 11.089539 51.734 100.0
stria branch 3 11.123581 51.734 99.1
stria branch 3 11.157502 51.766 99.1
stria branch 3 11.191 51.781 99.1
stria branch 3 11.224566 51.781 99.5
stria branch 3 11.258196 51.781 99.5
stria branch 3 11.292104 51.797 99.5
stria branch 3 11.325021 51.812 99.5
stria branch 3 11.358909 51.812 100.0
stria branch 3 11.391695 51.828 100.0
stria branch 3 11.425382 51.844 100.0
stria branch 3 11.459397 51.859 100.0
stria branch 3 11.493435 51.859 100.0
stria branch 3 11.524805 51.859 100.0
stria branch 3 11.55901 51.875 100.0
stria branch 3 11.59245 51.891 100.0
stria branch 3 11.62503 51.891 98.9
stria branch 3 11.659014 51.922 98.9
stria branch 3 11.693273 51.938 98.9
stria branch 3 11.727024 51.938 98.7
stria branch 3 11.760976 51.938 98.7
stria branch 3 11.793299 51.938 98.7
stria branch 3 11.822332 51.953 98.7
stria branch 3 11.856572 51.969 99.6
stria branch 3 11.890304 51.969 99.6
stria branch 3 11.919338 51.984 99.6
stria branch 3 11.951029 52.0 99.6
stria branch 3 11.984437 52.0 99.2
stria branch 3 12.017896 52.031 99.2
stria branch 3 12.051867 52.031 99.2
stria branch 3 12.085703 52.062 99.2
stria branch 3 12.117938 47.953 100.0
stria branch 3 12.151212 48.031 100.0
stria branch 3 12.184915 48.047 100.0
stria branch 3 12.218881 48.047 100.0
stria branch 3 12.252742 48.062 100.0
stria branch 3 12.286247 48.078 100.0
stria branch 3 12.316927 48.078 100.0
stria branch 3 12.350919 48.109 100.0
stria branch 3 12.38475 48.125 100.0
stria branch 3 12.416678 48.125 100.0
stria branch 3 12.450524 48.125 100.0
stria branch 3 12.484254 48.125 98.4
stria branch 3 12.517934 48.141 98.4
stria branch 3 12.548178 48.156 98.4
stria branch 3 12.581941 48.156 98.4
stria branch 3 12.616058 48.188 100.0
stria branch 3 12.649793 48.297 100.0
stria branch 3 12.683481 48.344 100.0
stria branch 3 12.71717 48.344 100.0
stria branch 3 12.750887 48.359 98.2
stria branch 3 12.784534 48.375 98.2
stria branch 3 12.817909 48.375 98.2
stria branch 3 12.849987 48.406 100.0
stria branch 3 12.881465 48.422 100.0
stria branch 3 12.915282 48.422 100.0
stria branch 3 12.945714 48.422 100.0
stria branch 3 12.979349 48.438 100.0
stria branch 3 13.009476 48.453 100.0
stria branch 3 13.04308 48.453 100.0
stria branch 3 13.076854 48.469 100.0
stria branch 3 13.110575 48.469 99.9
stria branch 3 13.144247 48.469 99.9
stria branch 3 13.177967 47.359 99.9
stria branch 3 13.20934 47.359 99.9
stria branch 3 13.243025 47.359 98.7
stria branch 3 13.276366 47.359 98.7
stria branch 3 13.310123 47.359 98.7
stria branch 3 13.343596 47.375 98.7
stria branch 3 13.377035 47.375 100.0
stria branch 3 13.410721 47.391 100.0
stria branch 3 13.4441 47.391 100.0
stria branch 3 13.477436 47.469 99.0
stria branch 3 13.510534 47.484 99.0
stria branch 3 13.544053 47.516 99.0
stria branch 3 13.577467 47.547 99.0
stria branch 3 13.610894 47.625 99.4
stria branch 3 13.644275 47.641 99.4
stria branch 3 13.677917 47.641 99.4
stria branch 3 13.706659 47.656 99.4
stria branch 3 13.739954 47.656 100.0
stria branch 3 13.773515 47.656 100.0
stria branch 3 13.80285 47.656 100.0
stria branch 3 13.836162 47.688 100.0
stria branch 3 13.869557 47.688 98.2
stria branch 3 13.90303 47.703 98.2
stria branch 3 13.93661 47.719 98.2
stria branch 3 13.969224 47.734 98.2
stria branch 3 14.001335 47.734 99.3
stria branch 3 14.034897 47.75 99.3
stria branch 3 14.068344 47.75 99.3
stria branch 3 14.102216 47.75 100.0
stria branch 3 14.136089 47.766 100.0
stria branch 3 14.167762 47.781 100.0
stria branch 3 14.201732 47.781 100.0
stria branch 3 14.235755 47.797 100.0
stria branch 3 14.267339 47.797 100.0
stria branch 3 14.301781 47.828 100.0
stria branch 3 14.336686 47.891 100.0
stria branch 3 14.370451 47.906 99.7
stria branch 3 14.404317 47.953 99.7
stria branch 3 14.438181 47.953 99.7
stria branch 3 14.472063 47.953 99.7
stria branch 3 14.505849 47.953 99.3
stria branch 3 14.539899 47.953 99.3
stria branch 3 14.573464 47.969 99.3
stria branch 3 14.607594 47.969 100.0
stria branch 3 14.64117 47.969 100.0
stria branch 3 14.675193 47.984 100.0
stria branch 3 14.708948 47.984 100.0
stria branch 3 14.742827 48.0 99.7
stria branch 3 14.776371 48.0 99.7
stria branch 3 14.810361 48.016 99.7
stria branch 3 14.842665 48.016 99.7
stria branch 3 14.876503 48.016 100.0
stria branch 3 14.910135 48.016 100.0
stria branch 3 14.943776 48.016 100.0
stria branch 3 14.977392 48.016 97.5
stria branch 3 15.011007 48.016 97.5
stria branch 3 15.04464 48.016 97.5
stria branch 3 15.078474 47.922 97.5
stria branch 3 15.112174 47.922 99.7
stria branch 3 15.146043 47.922 99.7
stria branch 3 15.180076 47.922 99.7
stria branch 4 0.000518 0.172 0.0
stria branch 4 0.030644 17.625 2.9
stria branch 4 0.063874 22.812 2.9
stria branch 4 0.097244 27.781 2.9
stria branch 4 0.131237 30.781 38.0
stria branch 4 0.165252 30.781 38.0
stria branch 4 0.199062 30.781 38.0
stria branch 4 0.233122 30.781 38.0
stria branch 4 0.262944 30.797 59.8
stria branch 4 0.29882 30.859 59.8
stria branch 4 0.328484 30.859 59.8
stria branch 4 0.362428 30.859 59.8
stria branch 4 0.395996 30.891 74.0
stria branch 4 0.425254 30.953 74.0
stria branch 4 0.459209 30.953 74.0
stria branch 4 0.493141 30.953 74.0
stria branch 4 0.528448 30.953 83.1
stria branch 4 0.563125 30.969 83.1
stria branch 4 0.597444 30.969 83.1
stria branch 4 0.630575 30.984 88.4
stria branch 4 0.664435 30.984 88.4
stria branch 4 0.697261 30.984 88.4
stria branch 4 0.731396 31.0 88.4
stria branch 4 0.765738 31.016 92.9
stria branch 4 0.797203 31.047 92.9
stria branch 4 0.831311 31.172 92.9
stria branch 4 0.862883 31.266 92.9
stria branch 4 0.898391 31.391 96.4
stria branch 4 0.931979 31.406 96.4
stria branch 4 0.965783 31.406 96.4
stria branch 4 0.999379 31.406 96.4
stria branch 4 1.033203 31.406 97.9
stria branch 4 1.066873 31.406 97.9
stria branch 4 1.100633 31.422 97.9
stria branch 4 1.132991 31.422 97.8
stria branch 4 1.168419 31.422 97.8
stria branch 4 1.210365 31.438 97.8
stria branch 4 1.244677 31.438 97.8
stria branch 4 1.278508 31.438 98.8
stria branch 4 1.310743 31.453 98.8
stria branch 4 1.348205 31.469 98.8
stria branch 4 1.382247 31.469 96.7
stria branch 4 1.415304 31.484 96.7
stria branch 4 1.449134 31.484 96.7
stria branch 4 1.479821 31.484 96.7
stria branch 4 1.513631 31.484 99.6
stria branch 4 1.542633 31.484 99.6
stria branch 4 1.576503 31.484 99.6
stria branch 4 1.610471 31.484 99.6
stria branch 4 1.644093 31.5 100.0
stria branch 4 1.677904 31.5 100.0
stria branch 4 1.711779 31.5 100.0
stria branch 4 1.74559 31.516 100.0
stria branch 4 1.779099 31.516 100.0
stria branch 4 1.813149 31.516 100.0
stria branch 4 1.85076 31.516 100.0
stria branch 4 1.884788 31.531 98.5
stria branch 4 1.918681 31.531 98.5
stria branch 4 1.952383 31.547 98.5
stria branch 4 1.986052 31.562 98.5
stria branch 4 2.019619 31.609 100.0
stria branch 4 2.05137 31.625 100.0
stria branch 4 2.085318 31.672 100.0
stria branch 4 2.11932 31.688 100.0
stria branch 4 2.153134 31.703 99.4
stria branch 4 2.186771 28.75 99.4
stria branch 4 2.216303 28.766 99.4
stria branch 4 2.250323 28.438 99.4
stria branch 4 2.285244 26.0 100.0
stria branch 4 2.314135 26.0 100.0
stria branch 4 2.348012 28.953 100.0
stria branch 4 2.381901 32.453 99.7
stria branch 4 2.420156 35.281 99.7
stria branch 4 2.45413 38.547 99.7
stria branch 4 2.484516 41.719 99.7
stria branch 4 2.520331 41.766 99.9
stria branch 4 2.554243 41.812 99.9
stria branch 4 2.587987 41.859 99.9
stria branch 4 2.621791 41.891 99.9
stria branch 4 2.655659 41.906 100.0
stria branch 4 2.689447 41.922 100.0
stria branch 4 2.728197 41.922 100.0
stria branch 4 2.762072 41.938 99.1
stria branch 4 2.795835 41.938 99.1
stria branch 4 2.830818 41.938 99.1
stria branch 4 2.863583 41.953 99.1
stria branch 4 2.900167 41.953 99.3
stria branch 4 2.934089 41.953 99.3
stria branch 4 2.968159 41.984 99.3
stria branch 4 3.002076 42.0 99.3
stria branch 4 3.035788 42.0 100.0
stria branch 4 3.069548 42.0 100.0
stria branch 4 3.102986 42.0 100.0
stria branch 4 3.135779 42.0 98.7
stria branch 4 3.169537 42.0 98.7
stria branch 4 3.203069 42.0 98.7
stria branch 4 3.236639 42.0 98.7
stria branch 4 3.270406 42.0 100.0
stria branch 4 3.299498 42.0 100.0
stria branch 4 3.334925 42.0 100.0
stria branch 4 3.368983 42.016 100.0
stria branch 4 3.402869 42.016 100.0
stria branch 4 3.436402 42.016 100.0
stria branch 4 3.469968 42.031 100.0
stria branch 4 3.503862 42.047 100.0
stria branch 4 3.537362 42.094 100.0
stria branch 4 3.570641 42.125 100.0
stria branch 4 3.604384 42.172 100.0
stria branch 4 3.637847 42.188 99.0
stria branch 4 3.671838 42.203 99.0
stria branch 4 3.705231 42.203 99.0
stria branch 4 3.739062 42.203 99.0
stria branch 4 3.772864 42.219 99.2
stria branch 4 3.806423 42.188 99.2
stria branch 4 3.84022 42.094 99.2
stria branch 4 3.869566 42.094 99.2
stria branch 4 3.903288 42.094 99.7
stria branch 4 3.934909 42.109 99.7
stria branch 4 3.96856 42.125 99.7
stria branch 4 4.002712 42.141 99.7
stria branch 4 4.040021 42.141 99.3
stria branch 4 4.074146 42.141 99.3
stria branch 4 4.108251 42.141 99.3
stria branch 4 4.142322 42.141 100.0
stria branch 4 4.172435 42.141 100.0
stria branch 4 4.206398 42.141 100.0
stria branch 4 4.24047 42.141 100.0
stria branch 4 4.274636 42.141 100.0
stria branch 4 4.308979 42.141 100.0
stria branch 4 4.34277 42.141 100.0
stria branch 4 4.37247 42.141 100.0
stria branch 4 4.406278 42.141 100.0
stria branch 4 4.440222 42.156 100.0
stria branch 4 4.474362 42.156 100.0
stria branch 4 4.508339 42.172 100.0
stria branch 4 4.542266 42.25 100.0
stria branch 4 4.570889 42.297 100.0
stria branch 4 4.604845 42.344 100.0
stria branch 4 4.638198 42.406 98.3
stria branch 4 4.671887 42.406 98.3
stria branch 4 4.705767 42.422 98.3
stria branch 4 4.73961 42.422 98.3
stria branch 4 4.773794 42.438 98.9
stria branch 4 4.804595 42.438 98.9
stria branch 4 4.836634 42.453 98.9
stria branch 4 4.874021 42.469 98.9
stria branch 4 4.911758 42.484 98.2
stria branch 4 4.945389 42.484 98.2
stria branch 4 4.979519 42.484 98.2
stria branch 4 5.013298 42.484 98.7
stria branch 4 5.047235 42.484 98.7
stria branch 4 5.080783 42.5 98.7
stria branch 4 5.114431 42.5 98.7
stria branch 4 5.153848 42.5 100.0
stria branch 4 5.187998 42.516 100.0
stria branch 4 5.222052 42.531 100.0
stria branch 4 5.255749 42.531 100.0
stria branch 4 5.289995 42.562 100.0
stria branch 4 5.324242 42.594 100.0
stria branch 4 5.358115 42.625 100.0
stria branch 4 5.391914 42.75 99.1
stria branch 4 5.425949 42.766 99.1
stria branch 4 5.460069 42.828 99.1
stria branch 4 5.494039 42.828 99.1
stria branch 4 5.527673 42.828 100.0
stria branch 4 5.563276 42.828 100.0
stria branch 4 5.597078 42.844 100.0
stria branch 4 5.630605 42.844 100.0
stria branch 4 5.66425 42.844 99.5
stria branch 4 5.69645 42.859 99.5
stria branch 4 5.730271 42.859 99.5
stria branch 4 5.764022 42.859 99.1
stria branch 4 5.797816 42.859 99.1
stria branch 4 5.831764 42.891 99.1
stria branch 4 5.866292 42.891 99.1
stria branch 4 5.899884 42.906 99.9
stria branch 4 5.933491 42.906 99.9
stria branch 4 5.967021 42.906 99.9
stria branch 4 5.999431 42.906 99.9
stria branch 4 6.033133 42.906 100.0
stria branch 4 6.066727 42.906 100.0
stria branch 4 6.100041 42.906 100.0
stria branch 4 6.134697 42.922 100.0
stria branch 4 6.168854 42.984 100.0
stria branch 4 6.202736 43.016 100.0
stria branch 4 6.236946 43.078 100.0
stria branch 4 6.27037 43.406 100.0
stria branch 4 6.304198 43.422 100.0
stria branch 4 6.337222 43.438 100.0
stria branch 4 6.370166 43.453 100.0
stria branch 4 6.402237 43.469 98.5
stria branch 4 6.436358 43.469 98.5
stria branch 4 6.470037 43.469 98.5
stria branch 4 6.503787 43.5 98.5
stria branch 4 6.535621 43.5 100.0
stria branch 4 6.569625 43.5 100.0
stria branch 4 6.603428 43.516 100.0
stria branch 4 6.63695 43.547 100.0
stria branch 4 6.670693 43.578 99.8
stria branch 4 6.704293 43.609 99.8
stria branch 4 6.736326 43.656 99.8
stria branch 4 6.769224 43.672 98.4
stria branch 4 6.802431 43.688 98.4
stria branch 4 6.833046 43.703 98.4
stria branch 4 6.86718 43.703 98.4
stria branch 4 6.901189 43.703 99.3
stria branch 4 6.935022 43.719 99.3
stria branch 4 6.967977 43.719 99.3
stria branch 4 7.001661 43.719 99.3
stria branch 4 7.035344 43.734 99.9
stria branch 4 7.069127 43.734 99.9
stria branch 4 7.103069 43.734 99.9
stria branch 4 7.134638 43.75 99.9
stria branch 4 7.16824 43.766 99.3
stria branch 4 7.198103 43.781 99.3
stria branch 4 7.231701 43.781 99.3
stria branch 4 7.265329 43.781 99.4
stria branch 4 7.299144 43.781 99.4
stria branch 4 7.333099 43.781 99.4
stria branch 4 7.366749 43.781 99.4
stria branch 4 7.400439 43.797 100.0
stria branch 4 7.434038 43.797 100.0
stria branch 4 7.467678 43.797 100.0
stria branch 4 7.501341 43.844 100.0
stria branch 4 7.535237 43.875 99.5
stria branch 4 7.568953 43.906 99.5
stria branch 4 7.598705 43.953 99.5
stria branch 4 7.628816 43.984 99.5
stria branch 4 7.662168 44.0 99.3
stria branch 4 7.695892 44.0 99.3
stria branch 4 7.728816 44.0 99.3
stria branch 4 7.762452 44.016 99.3
stria branch 4 7.796154 44.016 100.0
stria branch 4 7.829793 44.031 100.0
stria branch 4 7.86343 44.031 100.0
stria branch 4 7.897368 44.031 98.8
stria branch 4 7.931195 44.031 98.8
stria branch 4 7.964832 44.047 98.8
stria branch 4 7.998134 44.062 98.8
stria branch 4 8.033143 44.078 100.0
stria branch 4 8.066994 44.078 100.0
stria branch 4 8.09615 44.078 100.0
stria branch 4 8.129836 44.078 100.0
stria branch 4 8.163356 44.078 99.5
stria branch 4 8.197059 44.109 99.5
stria branch 4 8.230557 44.109 99.5
stria branch 4 8.264053 44.141 98.8
stria branch 4 8.297695 44.203 98.8
stria branch 4 8.331642 44.266 98.8
stria branch 4 8.36524 44.297 98.8
stria branch 4 8.398323 44.297 100.0
stria branch 4 8.431626 44.312 100.0
stria branch 4 8.465207 44.312 100.0
stria branch 4 8.498812 44.328 100.0
stria branch 4 8.531632 44.328 99.2
stria branch 4 8.565043 44.328 99.2
stria branch 4 8.598769 44.359 99.2
stria branch 4 8.630766 44.375 99.2
stria branch 4 8.664294 44.375 99.3
stria branch 4 8.695262 44.375 99.3
stria branch 4 8.726319 44.375 99.3
stria branch 4 8.759677 44.391 99.3
stria branch 4 8.788309 44.391 99.4
stria branch 4 8.821754 44.422 99.4
stria branch 4 8.855506 44.484 99.4
stria branch 4 8.889424 44.75 99.1
stria branch 4 8.923465 44.766 99.1
stria branch 4 8.957471 44.781 99.1
stria branch 4 8.987172 44.781 99.1
stria branch 4 9.02069 44.797 100.0
stria branch 4 9.054777 44.797 100.0
stria branch 4 9.088211 44.828 100.0
stria branch 4 9.121538 44.844 100.0
stria branch 4 9.155366 44.844 100.0
stria branch 4 9.18917 44.844 100.0
stria branch 4 9.223301 44.859 100.0
stria branch 4 9.255772 44.859 100.0
stria branch 4 9.289886 44.875 99.6
stria branch 4 9.323737 44.922 99.6
stria branch 4 9.357287 44.953 99.6
stria branch 4 9.391321 45.094 98.1
stria branch 4 9.42545 45.156 98.1
stria branch 4 9.459284 45.156 98.1
stria branch 4 9.492976 45.172 98.1
stria branch 4 9.526771 45.172 100.0
stria branch 4 9.559613 45.188 100.0
stria branch 4 9.593 45.188 100.0
stria branch 4 9.626806 45.203 100.0
stria branch 4 9.660146 45.219 100.0
stria branch 4 9.693776 45.234 100.0
stria branch 4 9.726284 45.234 100.0
stria branch 4 9.755651 45.234 100.0
stria branch 4 9.786266 45.25 100.0
stria branch 4 9.816761 45.375 100.0
stria branch 4 9.850666 45.422 100.0
stria branch 4 9.884424 45.469 100.0
stria branch 4 9.918571 45.469 98.9
stria branch 4 9.952466 45.5 98.9
stria branch 4 9.981959 45.484 98.9
stria branch 4 10.020663 45.5 99.1
stria branch 4 10.058631 45.547 99.1
stria branch 4 10.092515 45.547 99.1
stria branch 4 10.126283 45.562 99.1
stria branch 4 10.155897 45.578 100.0
stria branch 4 10.189982 45.609 100.0
stria branch 4 10.224477 45.609 100.0
stria branch 4 10.259619 45.609 100.0
stria branch 4 10.29306 45.625 98.3
stria branch 4 10.327097 45.672 98.3
stria branch 4 10.360997 45.688 98.3
stria branch 4 10.394564 45.703 98.1
stria branch 4 10.42778 45.734 98.1
stria branch 4 10.461336 45.734 98.1
stria branch 4 10.495193 45.75 98.1
stria branch 4 10.528949 45.75 100.0
stria branch 4 10.56215 45.781 100.0
stria branch 4 10.595949 45.812 100.0
stria branch 4 10.629791 45.812 100.0
stria branch 4 10.663523 45.719 99.7
stria branch 4 10.69926 45.734 99.7
stria branch 4 10.732985 45.797 99.7
stria branch 4 10.770093 45.844 98.8
stria branch 4 10.803255 45.891 98.8
stria branch 4 10.837251 45.891 98.8
stria branch 4 10.871315 45.891 98.8
stria branch 4 10.904735 45.891 100.0
stria branch 4 10.938457 45.891 100.0
stria branch 4 10.972678 45.891 100.0
stria branch 4 11.006386 45.953 100.0
stria branch 4 11.042971 45.969 98.8
stria branch 4 11.076853 46.016 98.8
stria branch 4 11.110839 46.031 98.8
stria branch 4 11.144248 46.047 99.3
stria branch 4 11.178036 46.062 99.3
stria branch 4 11.211978 46.078 99.3
stria branch 4 11.245492 46.078 99.3
stria branch 4 11.279466 46.094 99.2
stria branch 4 11.311439 46.109 99.2
stria branch 4 11.343654 46.109 99.2
stria branch 4 11.37739 46.109 99.2
stria branch 4 11.411385 46.141 100.0
stria branch 4 11.445341 46.156 100.0
stria branch 4 11.478997 46.156 100.0
stria branch 4 11.512966 46.156 100.0
stria branch 4 11.546713 46.172 100.0
stria branch 4 11.580362 46.172 100.0
stria branch 4 11.614344 46.188 100.0
stria branch 4 11.648426 46.203 99.6
stria branch 4 11.681621 46.234 99.6
stria branch 4 11.715677 46.234 99.6
stria branch 4 11.748264 46.234 99.6
stria branch 4 11.782021 46.234 100.0
stria branch 4 11.815986 46.25 100.0
stria branch 4 11.84983 46.266 100.0
stria branch 4 11.882985 46.266 100.0
stria branch 4 11.916979 46.297 99.7
stria branch 4 11.950763 46.297 99.7
stria branch 4 11.984676 46.297 99.7
stria branch 4 12.018518 46.328 99.7
stria branch 4 12.052404 46.344 99.9
stria branch 4 12.085985 46.391 99.9
stria branch 4 12.119869 46.484 99.9
stria branch 4 12.153313 46.516 100.0
stria branch 4 12.186837 46.531 100.0
stria branch 4 12.22048 46.547 100.0
stria branch 4 12.254337 46.547 100.0
stria branch 4 12.288173 46.562 99.6
stria branch 4 12.318941 46.578 99.6
stria branch 4 12.352426 46.594 99.6
stria branch 4 12.387218 46.609 99.6
stria branch 4 12.416054 46.609 100.0
stria branch 4 12.445448 46.609 100.0
stria branch 4 12.478828 46.625 100.0
stria branch 4 12.510682 46.625 100.0
stria branch 4 12.54295 46.641 99.4
stria branch 4 12.577999 46.656 99.4
stria branch 4 12.611784 46.703 99.4
stria branch 4 12.645428 46.797 97.3
stria branch 4 12.679023 46.828 97.3
stria branch 4 12.712514 46.828 97.3
stria branch 4 12.746138 46.844 97.3
stria branch 4 12.779774 46.859 100.0
stria branch 4 12.818754 46.859 100.0
stria branch 4 12.852554 46.891 100.0
stria branch 4 12.886268 46.906 100.0
stria branch 4 12.91724 46.906 99.9
stria branch 4 12.947494 46.922 99.9
stria branch 4 12.981102 46.922 99.9
stria branch 4 13.010182 46.938 99.9
stria branch 4 13.043837 46.938 99.2
stria branch 4 13.077663 46.953 99.2
stria branch 4 13.111393 46.953 99.2
stria branch 4 13.144781 46.969 99.2
stria branch 4 13.178191 46.984 100.0
stria branch 4 13.211772 47.0 100.0
stria branch 4 13.242929 47.0 100.0
stria branch 4 13.276491 47.0 98.7
stria branch 4 13.309808 47.0 98.7
stria branch 4 13.342392 47.016 98.7
stria branch 4 13.376087 47.031 98.7
stria branch 4 13.40955 47.031 100.0
stria branch 4 13.44297 47.047 100.0
stria branch 4 13.476841 47.125 100.0
stria branch 4 13.507986 47.141 100.0
stria branch 4 13.541759 47.172 99.2
stria branch 4 13.575545 47.234 99.2
stria branch 4 13.608868 47.266 99.2
stria branch 4 13.641778 47.281 99.2
stria branch 4 13.675822 47.297 100.0
stria branch 4 13.707945 47.297 100.0
stria branch 4 13.741879 47.297 100.0
stria branch 4 13.775693 47.297 98.6
stria branch 4 13.809225 47.328 98.6
stria branch 4 13.839205 47.328 98.6
stria branch 4 13.873447 47.328 98.6
stria branch 4 13.907484 47.359 99.4
stria branch 4 13.941678 47.375 99.4
stria branch 4 13.975872 47.375 99.4
stria branch 4 14.009622 47.391 99.4
stria branch 4 14.043845 47.391 100.0
stria branch 4 14.077608 47.391 100.0
stria branch 4 14.111343 47.391 100.0
stria branch 4 14.142929 47.422 100.0
stria branch 4 14.176727 47.422 100.0
stria branch 4 14.209577 47.438 100.0
stria branch 4 14.242974 47.438 100.0
stria branch 4 14.272614 47.469 98.1
stria branch 4 14.306235 47.516 98.1
stria branch 4 14.340204 47.547 98.1
stria branch 4 14.374232 47.562 98.1
stria branch 4 14.408359 47.594 100.0
stria branch 4 14.442236 47.594 100.0
stria branch 4 14.476327 47.594 100.0
stria branch 4 14.510083 47.594 100.0
stria branch 4 14.542911 47.609 99.4
stria branch 4 14.576262 47.609 99.4
stria branch 4 14.610114 47.609 99.4
stria branch 4 14.641286 47.609 99.4
stria branch 4 14.675208 47.625 99.1
stria branch 4 14.708866 47.625 99.1
stria branch 4 14.74177 47.641 99.1
stria branch 4 14.77532 47.641 97.8
stria branch 4 14.809149 47.656 97.8
stria branch 4 14.84299 47.656 97.8
stria branch 4 14.876492 47.656 97.8
stria branch 4 14.91021 47.656 100.0
stria branch 4 14.94128 47.656 100.0
stria branch 4 14.972389 47.656 100.0
stria branch 4 15.006317 47.656 100.0
stria branch 4 15.040519 47.656 100.0
stria branch 4 15.070261 47.656 100.0
stria branch 4 15.103811 47.656 100.0
stria branch 4 15.137143 47.656 100.0
stria branch 4 15.170502 47.656 100.0
stria develop 4 0.000731 0.172 0.0
stria develop 4 0.033731 17.078 0.0
stria develop 4 0.067646 22.266 17.7
stria develop 4 0.101605 27.344 17.7
stria develop 4 0.133818 30.219 17.7
stria develop 4 0.167746 30.219 17.7
stria develop 4 0.197688 30.219 48.2
stria develop 4 0.231008 30.219 48.2
stria develop 4 0.261775 30.234 48.2
stria develop 4 0.295595 30.297 48.2
stria develop 4 0.329347 30.297 67.4
stria develop 4 0.363005 30.312 67.4
stria develop 4 0.396797 30.328 67.4
stria develop 4 0.430483 30.391 67.4
stria develop 4 0.462993 30.391 82.0
stria develop 4 0.496811 30.391 82.0
stria develop 4 0.530526 30.391 82.0
stria develop 4 0.56435 30.406 86.5
stria develop 4 0.593503 30.406 86.5
stria develop 4 0.626899 30.422 86.5
stria develop 4 0.660734 30.422 86.5
stria develop 4 0.694664 30.422 91.8
stria develop 4 0.728559 30.438 91.8
stria develop 4 0.763078 30.453 91.8
stria develop 4 0.795063 30.547 91.8
stria develop 4 0.828704 30.609 94.8
stria develop 4 0.862874 30.781 94.8
stria develop 4 0.89692 30.844 94.8
stria develop 4 0.929717 30.859 94.8
stria develop 4 0.966547 30.859 98.2
stria develop 4 0.999327 30.859 98.2
stria develop 4 1.029706 30.859 98.2
stria develop 4 1.063701 30.859 98.2
stria develop 4 1.09768 30.875 97.7
stria develop 4 1.131631 30.875 97.7
stria develop 4 1.165587 30.891 97.7
stria develop 4 1.198166 30.891 98.5
stria develop 4 1.231988 30.891 98.5
stria develop 4 1.263931 30.891 98.5
stria develop 4 1.297725 30.906 98.5
stria develop 4 1.331563 30.922 98.5
stria develop 4 1.36551 30.922 98.5
stria develop 4 1.399127 30.953 98.5
stria develop 4 1.432647 30.953 98.5
stria develop 4 1.466354 30.953 99.4
stria develop 4 1.499867 30.953 99.4
stria develop 4 1.533655 30.953 99.4
stria develop 4 1.563519 30.953 99.4
stria develop 4 1.59685 30.953 99.4
stria develop 4 1.629615 30.969 99.4
stria develop 4 1.663396 30.969 99.4
stria develop 4 1.696979 30.969 99.3
stria develop 4 1.730924 30.984 99.3
stria develop 4 1.764819 30.984 99.3
stria develop 4 1.798538 30.984 99.3
stria develop 4 1.827839 30.984 99.7
stria develop 4 1.861651 31.0 99.7
stria develop 4 1.89572 31.0 99.7
stria develop 4 1.929285 31.0 99.7
stria develop 4 1.963497 31.031 100.0
stria develop 4 1.997179 31.062 100.0
stria develop 4 2.031147 31.094 100.0
stria develop 4 2.064539 31.141 100.0
stria develop 4 2.098011 31.156 98.7
stria develop 4 2.131283 31.156 98.7
stria develop 4 2.165202 31.172 98.7
stria develop 4 2.198948 31.188 100.0
stria develop 4 2.23285 31.188 100.0
stria develop 4 2.265947 31.203 100.0
stria develop 4 2.297228 31.203 100.0
stria develop 4 2.330897 33.25 100.0
stria develop 4 2.365309 36.094 100.0
stria develop 4 2.395892 38.781 100.0
stria develop 4 2.429718 41.844 100.0
stria develop 4 2.463267 45.297 100.0
stria develop 4 2.497325 46.625 100.0
stria develop 4 2.531062 46.656 100.0
stria develop 4 2.560584 46.688 100.0
stria develop 4 2.594358 46.734 99.1
stria develop 4 2.628102 46.766 99.1
stria develop 4 2.661721 46.781 99.1
stria develop 4 2.695556 46.781 99.6
stria develop 4 2.729304 46.781 99.6
stria develop 4 2.76307 46.797 99.6
stria develop 4 2.792293 46.797 99.6
stria develop 4 2.826036 46.812 99.3
stria develop 4 2.85968 46.812 99.3
stria develop 4 2.893497 46.812 99.3
stria develop 4 2.926969 46.828 99.3
stria develop 4 2.960507 46.844 98.8
stria develop 4 2.996869 46.859 98.8
stria develop 4 3.030613 46.859 98.8
stria develop 4 3.064463 46.859 98.8
stria develop 4 3.098185 46.859 99.4
stria develop 4 3.132024 46.859 99.4
stria develop 4 3.165407 46.859 99.4
stria develop 4 3.19888 46.859 99.9
stria develop 4 3.232799 46.859 99.9
stria develop 4 3.26654 46.859 99.9
stria develop 4 3.300273 46.859 99.9
stria develop 4 3.33407 46.859 99.9
stria develop 4 3.367656 46.875 99.9
stria develop 4 3.401241 46.875 99.9
stria develop 4 3.434901 46.875 99.9
stria develop 4 3.466877 46.906 99.0
stria develop 4 3.500477 46.906 99.0
stria develop 4 3.534216 46.969 99.0
stria develop 4 3.567915 47.0 99.1
stria develop 4 3.601386 47.031 99.1
stria develop 4 3.634776 47.047 99.1
stria develop 4 3.668906 47.062 99.1
stria develop 4 3.702794 47.062 100.0
stria develop 4 3.736714 47.062 100.0
stria develop 4 3.769839 47.078 100.0
stria develop 4 3.803802 47.078 100.0
stria develop 4 3.837602 47.094 100.0
stria develop 4 3.868125 47.094 100.0
stria develop 4 3.901894 47.094 100.0
stria develop 4 3.935555 47.109 100.0
stria develop 4 3.971362 47.125 99.7
stria develop 4 4.00542 47.141 99.7
stria develop 4 4.039219 47.141 99.7
stria develop 4 4.072869 47.141 97.4
stria develop 4 4.106694 47.141 97.4
stria develop 4 4.140476 47.141 97.4
stria develop 4 4.17441 47.141 97.4
stria develop 4 4.208093 47.141 100.0
stria develop 4 4.241823 47.141 100.0
stria develop 4 4.272281 47.141 100.0
stria develop 4 4.306128 47.141 100.0
stria develop 4 4.340278 47.141 100.0
stria develop 4 4.373878 47.141 100.0
stria develop 4 4.404691 47.141 100.0
stria develop 4 4.43872 47.141 100.0
stria develop 4 4.472483 47.156 98.8
stria develop 4 4.506068 47.172 98.8
stria develop 4 4.540128 47.219 98.8
stria develop 4 4.573881 47.281 99.5
stria develop 4 4.607693 47.328 99.5
stria develop 4 4.64024 47.391 99.5
stria develop 4 4.67685 47.391 99.5
stria develop 4 4.711074 47.406 98.7
stria develop 4 4.74348 47.406 98.7
stria develop 4 4.777324 47.422 98.7
stria develop 4 4.811107 47.422 98.7
stria develop 4 4.844882 47.438 99.6
stria develop 4 4.878785 47.453 99.6
stria develop 4 4.912497 47.469 99.6
stria develop 4 4.946423 47.469 100.0
stria develop 4 4.98047 47.469 100.0
stria develop 4 5.014481 47.469 100.0
stria develop 4 5.048308 47.469 100.0
stria develop 4 5.08186 47.484 99.9
stria develop 4 5.115595 47.484 99.9
stria develop 4 5.149301 47.484 99.9
stria develop 4 5.182998 47.484 99.9
stria develop 4 5.216711 47.5 100.0
stria develop 4 5.250419 47.516 100.0
stria develop 4 5.282614 47.547 100.0
stria develop 4 5.320059 47.578 98.9
stria develop 4 5.35393 47.609 98.9
stria develop 4 5.387677 47.734 98.9
stria develop 4 5.421831 47.75 98.9
stria develop 4 5.455599 47.812 100.0
stria develop 4 5.489412 47.812 100.0
stria develop 4 5.523537 47.812 100.0
stria develop 4 5.557435 47.812 100.0
stria develop 4 5.589845 47.828 99.8
stria develop 4 5.623471 47.828 99.8
stria develop 4 5.657161 47.828 99.8
stria develop 4 5.690855 47.844 98.9
stria develop 4 5.729437 47.844 98.9
stria develop 4 5.763411 47.844 98.9
stria develop 4 5.7974 47.844 98.9
stria develop 4 5.831236 47.859 99.6
stria develop 4 5.868162 47.875 99.6
stria develop 4 5.902052 47.891 99.6
stria develop 4 5.936081 47.891 99.6
stria develop 4 5.969757 47.891 100.0
stria develop 4 6.003384 47.891 100.0
stria develop 4 6.037513 47.891 100.0
stria develop 4 6.068634 47.891 100.0
stria develop 4 6.102417 47.891 99.1
stria develop 4 6.136476 47.891 99.1
stria develop 4 6.173346 47.953 99.1
stria develop 4 6.205242 47.984 98.4
stria develop 4 6.236088 48.016 98.4
stria develop 4 6.269505 48.312 98.4
stria develop 4 6.307851 48.438 98.4
stria develop 4 6.341877 48.453 100.0
stria develop 4 6.375819 48.469 100.0
stria develop 4 6.409719 48.5 100.0
stria develop 4 6.44351 48.5 100.0
stria develop 4 6.477512 48.5 100.0
stria develop 4 6.511381 48.531 100.0
stria develop 4 6.54561 48.531 100.0
stria develop 4 6.579512 48.531 98.8
stria develop 4 6.610291 48.547 98.8
stria develop 4 6.644019 48.562 98.8
stria develop 4 6.679893 48.594 98.8
stria develop 4 6.708919 48.625 99.8
stria develop 4 6.742136 48.656 99.8
stria develop 4 6.776013 48.688 99.8
stria develop 4 6.810082 48.703 99.8
stria develop 4 6.844063 48.719 100.0
stria develop 4 6.877653 48.719 100.0
stria develop 4 6.911458 48.719 100.0
stria develop 4 6.945575 48.734 97.7
stria develop 4 6.979551 48.734 97.7
stria develop 4 7.013873 48.734 97.7
stria develop 4 7.047856 48.75 97.7
stria develop 4 7.081629 48.75 100.0
stria develop 4 7.111076 48.75 100.0
stria develop 4 7.144367 48.766 100.0
stria develop 4 7.179781 48.781 100.0
stria develop 4 7.215296 48.797 98.5
stria develop 4 7.24926 48.797 98.5
stria develop 4 7.282642 48.797 98.5
stria develop 4 7.316159 48.797 98.5
stria develop 4 7.349798 48.797 99.3
stria develop 4 7.383613 48.797 99.3
stria develop 4 7.417177 48.812 99.3
stria develop 4 7.450905 48.812 99.3
stria develop 4 7.484955 48.812 99.3
stria develop 4 7.516929 48.844 99.3
stria develop 4 7.550513 48.875 99.3
stria develop 4 7.58444 48.906 100.0
stria develop 4 7.617974 48.953 100.0
stria develop 4 7.651772 48.984 100.0
stria develop 4 7.685339 49.0 100.0
stria develop 4 7.718919 49.0 98.8
stria develop 4 7.752631 49.0 98.8
stria develop 4 7.783998 49.016 98.8
stria develop 4 7.817816 49.016 98.8
stria develop 4 7.851393 49.031 100.0
stria develop 4 7.885003 49.031 100.0
stria develop 4 7.914653 49.031 100.0
stria develop 4 7.948184 49.031 98.5
stria develop 4 7.981963 49.047 98.5
stria develop 4 8.01545 49.062 98.5
stria develop 4 8.049201 49.078 98.5
stria develop 4 8.083251 49.078 99.7
stria develop 4 8.116882 49.078 99.7
stria develop 4 8.150419 49.078 99.7
stria develop 4 8.184058 49.078 99.7
stria develop 4 8.217697 49.094 99.1
stria develop 4 8.251437 49.109 99.1
stria develop 4 8.284789 49.125 99.1
stria develop 4 8.318248 49.188 99.1
stria develop 4 8.351711 49.266 100.0
stria develop 4 8.385234 49.281 100.0
stria develop 4 8.418451 49.281 100.0
stria develop 4 8.451885 49.297 99.5
stria develop 4 8.485467 49.297 99.5
stria develop 4 8.518861 49.312 99.5
stria develop 4 8.550162 49.312 99.5
stria develop 4 8.583942 49.312 99.6
stria develop 4 8.617528 49.344 99.6
stria develop 4 8.651158 49.359 99.6
stria develop 4 8.685099 49.359 99.6
stria develop 4 8.718877 49.359 100.0
stria develop 4 8.752685 49.359 100.0
stria develop 4 8.786289 49.375 100.0
stria develop 4 8.820046 49.391 100.0
stria develop 4 8.853647 49.453 98.8
stria develop 4 8.88739 49.672 98.8
stria develop 4 8.92165 49.75 98.8
stria develop 4 8.955842 49.75 99.4
stria develop 4 8.990029 49.781 99.4
stria develop 4 9.023125 49.797 99.4
stria develop 4 9.059562 49.797 99.4
stria develop 4 9.093444 49.828 100.0
stria develop 4 9.127313 49.844 100.0
stria develop 4 9.16013 49.844 100.0
stria develop 4 9.194209 49.844 100.0
stria develop 4 9.2268 49.859 98.6
stria develop 4 9.258459 49.859 98.6
stria develop 4 9.292709 49.875 98.6
stria develop 4 9.326679 49.891 98.5
stria develop 4 9.360309 49.953 98.5
stria develop 4 9.392489 50.016 98.5
stria develop 4 9.424246 50.141 98.5
stria develop 4 9.458187 50.141 100.0
stria develop 4 9.492418 50.141 100.0
stria develop 4 9.526399 50.156 100.0
stria develop 4 9.560032 50.172 100.0
stria develop 4 9.593834 50.172 99.6
stria develop 4 9.627422 50.188 99.6
stria develop 4 9.664345 50.203 99.6
stria develop 4 9.698212 50.219 99.6
stria develop 4 9.732067 50.219 100.0
stria develop 4 9.764794 50.219 100.0
stria develop 4 9.798956 50.234 100.0
stria develop 4 9.832534 50.391 100.0
stria develop 4 9.866402 50.406 100.0
stria develop 4 9.900296 50.453 100.0
stria develop 4 9.934054 50.453 100.0
stria develop 4 9.967567 50.484 99.8
stria develop 4 10.000626 50.516 99.8
stria develop 4 10.034479 50.531 99.8
stria develop 4 10.063845 50.578 99.8
stria develop 4 10.097711 50.578 99.1
stria develop 4 10.130969 50.594 99.1
stria develop 4 10.165081 50.625 99.1
stria develop 4 10.196684 50.641 99.1
stria develop 4 10.227884 50.641 100.0
stria develop 4 10.261756 50.641 100.0
stria develop 4 10.29551 50.656 100.0
stria develop 4 10.32953 50.703 99.4
stria develop 4 10.363562 50.719 99.4
stria develop 4 10.396196 50.75 99.4
stria develop 4 10.430649 50.766 99.4
stria develop 4 10.464231 50.766 100.0
stria develop 4 10.498322 50.781 100.0
stria develop 4 10.531927 50.781 100.0
stria develop 4 10.565518 50.812 100.0
stria develop 4 10.598983 50.828 99.4
stria develop 4 10.633102 50.828 99.4
stria develop 4 10.667168 50.859 99.4
stria develop 4 10.702098 50.875 98.2
stria develop 4 10.736028 50.938 98.2
stria develop 4 10.768472 50.984 98.2
stria develop 4 10.802269 51.031 98.2
stria develop 4 10.836029 51.031 99.7
stria develop 4 10.869778 51.031 99.7
stria develop 4 10.903327 51.031 99.7
stria develop 4 10.937091 51.031 99.7
stria develop 4 10.971073 51.031 100.0
stria develop 4 11.005126 51.094 100.0
stria develop 4 11.039113 51.109 100.0
stria develop 4 11.072631 51.156 100.0
stria develop 4 11.106497 51.172 100.0
stria develop 4 11.140518 51.188 100.0
stria develop 4 11.174255 51.203 100.0
stria develop 4 11.208114 51.219 99.1
stria develop 4 11.241854 51.219 99.1
stria develop 4 11.275605 51.234 99.1
stria develop 4 11.309395 51.25 99.1
stria develop 4 11.343405 51.25 100.0
stria develop 4 11.37504 51.25 100.0
stria develop 4 11.409022 51.281 100.0
stria develop 4 11.443049 51.297 100.0
stria develop 4 11.477219 51.297 99.1
stria develop 4 11.511169 51.297 99.1
stria develop 4 11.545058 51.297 99.1
stria develop 4 11.578788 51.312 98.9
stria develop 4 11.611154 51.328 98.9
stria develop 4 11.645016 51.328 98.9
stria develop 4 11.678829 51.359 98.9
stria develop 4 11.712624 51.375 99.4
stria develop 4 11.746636 51.375 99.4
stria develop 4 11.776821 51.375 99.4
stria develop 4 11.810199 51.391 99.4
stria develop 4 11.843462 51.391 100.0
stria develop 4 11.877086 51.406 100.0
stria develop 4 11.910876 51.422 100.0
stria develop 4 11.944613 51.438 100.0
stria develop 4 11.978386 51.438 99.3
stria develop 4 12.012424 51.469 99.3
stria develop 4 12.046445 51.469 99.3
stria develop 4 12.080631 51.5 99.3
stria develop 4 12.114775 51.562 99.3
stria develop 4 12.148234 51.641 99.3
stria develop 4 12.181907 51.656 99.3
stria develop 4 12.215913 51.656 100.0
stria develop 4 12.249675 51.672 100.0
stria develop 4 12.285363 51.688 100.0
stria develop 4 12.319083 51.688 100.0
stria develop 4 12.352803 51.719 98.5
stria develop 4 12.386662 51.734 98.5
stria develop 4 12.420423 51.734 98.5
stria develop 4 12.454184 51.734 96.9
stria develop 4 12.488131 51.75 96.9
stria develop 4 12.522124 51.75 96.9
stria develop 4 12.555961 51.766 96.9
stria develop 4 12.589924 51.781 100.0
stria develop 4 12.623762 51.844 100.0
stria develop 4 12.657687 51.938 100.0
stria develop 4 12.691618 51.953 100.0
stria develop 4 12.725532 51.953 99.8
stria develop 4 12.759314 51.969 99.8
stria develop 4 12.793111 51.984 99.8
stria develop 4 12.82256 51.984 99.8
stria develop 4 12.856242 52.016 100.0
stria develop 4 12.889262 52.031 100.0
stria develop 4 12.923152 52.031 100.0
stria develop 4 12.956899 52.031 99.2
stria develop 4 12.990694 52.047 99.2
stria develop 4 13.024569 52.062 99.2
stria develop 4 13.059527 52.062 99.2
stria develop 4 13.093127 52.078 100.0
stria develop 4 13.126879 52.078 100.0
stria develop 4 13.160138 52.094 100.0
stria develop 4 13.193885 52.109 100.0
stria develop 4 13.227364 52.125 100.0
stria develop 4 13.261125 52.125 100.0
stria develop 4 13.296071 52.125 100.0
stria develop 4 13.329644 52.125 98.8
stria develop 4 13.363235 52.141 98.8
stria develop 4 13.397017 52.156 98.8
stria develop 4 13.427769 52.156 98.8
stria develop 4 13.461417 52.172 100.0
stria develop 4 13.494939 52.219 100.0
stria develop 4 13.528484 52.219 100.0
stria develop 4 13.562115 52.219 100.0
stria develop 4 13.595783 52.234 100.0
stria develop 4 13.629346 52.25 100.0
stria develop 4 13.663148 52.266 100.0
stria develop 4 13.694401 52.281 100.0
stria develop 4 13.728552 52.281 99.0
stria develop 4 13.762631 52.281 99.0
stria develop 4 13.796743 52.281 99.0
stria develop 4 13.830311 52.297 98.8
stria develop 4 13.863752 52.297 98.8
stria develop 4 13.897555 52.312 98.8
stria develop 4 13.931439 52.328 98.8
stria develop 4 13.966032 52.344 99.4
stria develop 4 13.999708 52.344 99.4
stria develop 4 14.033856 52.359 99.4
stria develop 4 14.063534 52.359 99.4
stria develop 4 14.097188 52.359 100.0
stria develop 4 14.131932 52.359 100.0
stria develop 4 14.165537 52.391 100.0
stria develop 4 14.199924 52.391 100.0
stria develop 4 14.233952 52.406 99.4
stria develop 4 14.267912 52.406 99.4
stria develop 4 14.302278 52.438 99.4
stria develop 4 14.330924 52.5 99.9
stria develop 4 14.364826 52.516 99.9
stria develop 4 14.398155 52.547 99.9
stria develop 4 14.432324 52.562 99.9
stria develop 4 14.466319 52.562 100.0
stria develop 4 14.500352 52.562 100.0
stria develop 4 14.533982 52.562 100.0
stria develop 4 14.568126 52.578 100.0
stria develop 4 14.6017 52.578 99.6
stria develop 4 14.635353 52.578 99.6
stria develop 4 14.673157 52.594 99.6
stria develop 4 14.707075 52.594 99.1
stria develop 4 14.740906 52.609 99.1
stria develop 4 14.774855 52.609 99.1
stria develop 4 14.808915 52.609 99.1
stria develop 4 14.842721 52.625 100.0
stria develop 4 14.876474 52.625 100.0
stria develop 4 14.910277 52.625 100.0
stria develop 4 14.944055 52.625 100.0
stria develop 4 14.977835 52.625 100.0
stria develop 4 15.009541 52.625 100.0
stria develop 4 15.043913 52.625 100.0
stria develop 4 15.077611 52.625 100.0
stria develop 4 15.111431 52.594 98.6
stria develop 4 15.147563 50.594 98.6
stria develop 4 15.181347 46.562 98.6
stria develop 4 15.221874 45.766 96.4
stria develop 4 15.260616 0.0 0.0
stria develop 5 0.000608 0.172 0.0
stria develop 5 0.0347 18.594 8.1
stria develop 5 0.068912 23.781 8.1
stria develop 5 0.102635 28.688 8.1
stria develop 5 0.135232 30.375 8.1
stria develop 5 0.168881 30.375 43.1
stria develop 5 0.20303 30.375 43.1
stria develop 5 0.236938 30.391 43.1
stria develop 5 0.269506 30.391 43.1
stria develop 5 0.299856 30.453 65.8
stria develop 5 0.333876 30.453 65.8
stria develop 5 0.368021 30.484 65.8
stria develop 5 0.402869 30.547 76.8
stria develop 5 0.436944 30.547 76.8
stria develop 5 0.47567 30.547 76.8
stria develop 5 0.509676 30.547 76.8
stria develop 5 0.54363 30.562 84.9
stria develop 5 0.575635 30.562 84.9
stria develop 5 0.609569 30.578 84.9
stria develop 5 0.643264 30.578 84.9
stria develop 5 0.677014 30.578 90.3
stria develop 5 0.710855 30.594 90.3
stria develop 5 0.74476 30.609 90.3
stria develop 5 0.777866 30.641 94.2
stria develop 5 0.811646 30.766 94.2
stria develop 5 0.844454 30.859 94.2
stria develop 5 0.876244 30.984 94.2
stria develop 5 0.909996 31.0 96.6
stria develop 5 0.943551 31.0 96.6
stria develop 5 0.978041 31.0 96.6
stria develop 5 1.01163 31.0 96.6
stria develop 5 1.045408 31.0 97.9
stria develop 5 1.079384 31.016 97.9
stria develop 5 1.113223 31.016 97.9
stria develop 5 1.147131 31.016 97.9
stria develop 5 1.181001 31.031 99.4
stria develop 5 1.214592 31.031 99.4
stria develop 5 1.24824 31.031 99.4
stria develop 5 1.281835 31.031 98.1
stria develop 5 1.315426 31.062 98.1
stria develop 5 1.349067 31.062 98.1
stria develop 5 1.382913 31.078 98.1
stria develop 5 1.416664 31.078 100.0
stria develop 5 1.45044 31.078 100.0
stria develop 5 1.484163 31.078 100.0
stria develop 5 1.518261 31.078 100.0
stria develop 5 1.552008 31.078 100.0
stria develop 5 1.585586 31.078 100.0
stria develop 5 1.619551 31.094 100.0
stria develop 5 1.653566 31.094 98.8
stria develop 5 1.687566 31.094 98.8
stria develop 5 1.721722 31.109 98.8
stria develop 5 1.755864 31.109 98.8
stria develop 5 1.786232 31.109 100.0
stria develop 5 1.820261 31.109 100.0
stria develop 5 1.853845 31.125 100.0
stria develop 5 1.88802 31.125 100.0
stria develop 5 1.922048 31.125 99.1
stria develop 5 1.956311 31.156 99.1
stria develop 5 1.99018 31.188 99.1
stria develop 5 2.024199 31.219 99.1
stria develop 5 2.057902 31.266 98.9
stria develop 5 2.09169 31.281 98.9
stria develop 5 2.125855 31.281 98.9
stria develop 5 2.159573 31.297 99.7
stria develop 5 2.193311 31.312 99.7
stria develop 5 2.227109 31.312 99.7
stria develop 5 2.26072 31.328 99.7
stria develop 5 2.294355 31.328 100.0
stria develop 5 2.328014 33.969 100.0
stria develop 5 2.361786 36.906 100.0
stria develop 5 2.395775 39.781 100.0
stria develop 5 2.429716 42.906 100.0
stria develop 5 2.463427 46.234 100.0
stria develop 5 2.497602 46.75 100.0
stria develop 5 2.531309 46.797 99.0
stria develop 5 2.564874 46.828 99.0
stria develop 5 2.598534 46.875 99.0
stria develop 5 2.631823 46.891 99.0
stria develop 5 2.665673 46.906 100.0
stria develop 5 2.699731 46.906 100.0
stria develop 5 2.72872 46.906 100.0
stria develop 5 2.76126 46.922 100.0
stria develop 5 2.795744 46.922 100.0
stria develop 5 2.824722 46.938 100.0
stria develop 5 2.860432 46.938 100.0
stria develop 5 2.896844 46.938 100.0
stria develop 5 2.93067 46.953 98.6
stria develop 5 2.964265 46.969 98.6
stria develop 5 2.998354 46.984 98.6
stria develop 5 3.031879 46.984 99.2
stria develop 5 3.065459 46.984 99.2
stria develop 5 3.099238 46.984 99.2
stria develop 5 3.132631 46.984 99.2
stria develop 5 3.166843 46.984 100.0
stria develop 5 3.199253 46.984 100.0
stria develop 5 3.23272 46.984 100.0
stria develop 5 3.2662 46.984 100.0
stria develop 5 3.299801 46.984 100.0
stria develop 5 3.333053 47.0 100.0
stria develop 5 3.367249 47.0 100.0
stria develop 5 3.400972 47.0 100.0
stria develop 5 3.43368 47.016 99.4
stria develop 5 3.467565 47.031 99.4
stria develop 5 3.499257 47.031 99.4
stria develop 5 3.533121 47.094 99.0
stria develop 5 3.566897 47.125 99.0
stria develop 5 3.597085 47.156 99.0
stria develop 5 3.630896 47.172 99.0
stria develop 5 3.660139 47.188 99.3
stria develop 5 3.692664 47.188 99.3
stria develop 5 3.726352 47.188 99.3
stria develop 5 3.763154 47.203 99.3
stria develop 5 3.797067 47.203 100.0
stria develop 5 3.830922 47.219 100.0
stria develop 5 3.864871 47.219 100.0
stria develop 5 3.898524 47.219 100.0
stria develop 5 3.932452 47.234 100.0
stria develop 5 3.966269 47.25 100.0
stria develop 5 3.997441 47.266 100.0
stria develop 5 4.031388 47.266 98.1
stria develop 5 4.065093 47.266 98.1
stria develop 5 4.096752 47.266 98.1
stria develop 5 4.130778 47.266 98.1
stria develop 5 4.165622 47.266 100.0
stria develop 5 4.199635 47.266 100.0
stria develop 5 4.233238 47.266 100.0
stria develop 5 4.266946 47.266 100.0
stria develop 5 4.300771 47.266 100.0
stria develop 5 4.335004 47.266 100.0
stria develop 5 4.368827 47.266 100.0
stria develop 5 4.402556 47.266 100.0
stria develop 5 4.436399 47.281 98.2
stria develop 5 4.47169 47.281 98.2
stria develop 5 4.505444 47.312 98.2
stria develop 5 4.538895 47.375 98.2
stria develop 5 4.572782 47.422 98.2
stria develop 5 4.606492 47.516 98.2
stria develop 5 4.64084 47.516 98.2
stria develop 5 4.674498 47.516 99.3
stria develop 5 4.708328 47.531 99.3
stria develop 5 4.74094 47.547 99.3
stria develop 5 4.774935 47.547 99.3
stria develop 5 4.806322 47.547 99.9
stria develop 5 4.83987 47.562 99.9
stria develop 5 4.873795 47.578 99.9
stria develop 5 4.907438 47.594 99.1
stria develop 5 4.94094 47.594 99.1
stria develop 5 4.974638 47.594 99.1
stria develop 5 5.008338 47.594 99.1
stria develop 5 5.042321 47.594 100.0
stria develop 5 5.076317 47.609 100.0
stria develop 5 5.110251 47.609 100.0
stria develop 5 5.143972 47.609 100.0
stria develop 5 5.177681 47.625 99.4
stria develop 5 5.211379 47.641 99.4
stria develop 5 5.245216 47.641 99.4
stria develop 5 5.275439 47.672 99.4
stria develop 5 5.309207 47.703 100.0
stria develop 5 5.34298 47.797 100.0
stria develop 5 5.376532 47.859 100.0
stria develop 5 5.410306 47.875 98.1
stria develop 5 5.442165 47.938 98.1
stria develop 5 5.474293 47.938 98.1
stria develop 5 5.508401 47.938 98.1
stria develop 5 5.541882 47.938 100.0
stria develop 5 5.575698 47.953 100.0
stria develop 5 5.6098 47.953 100.0
stria develop 5 5.641909 47.953 100.0
stria develop 5 5.675759 47.969 99.9
stria develop 5 5.70957 47.969 99.9
stria develop 5 5.741702 47.969 99.9
stria develop 5 5.772412 47.969 99.9
stria develop 5 5.806144 47.984 98.2
stria develop 5 5.839974 48.0 98.2
stria develop 5 5.873989 48.016 98.2
stria develop 5 5.907785 48.016 99.0
stria develop 5 5.941345 48.016 99.0
stria develop 5 5.974948 48.016 99.0
stria develop 5 6.008904 48.016 99.0
stria develop 5 6.041811 48.016 99.3
stria develop 5 6.075708 48.016 99.3
stria develop 5 6.105702 48.016 99.3
stria develop 5 6.139514 48.078 99.3
stria develop 5 6.173476 48.109 100.0
stria develop 5 6.206528 48.141 100.0
stria develop 5 6.237066 48.375 100.0
stria develop 5 6.270991 48.562 100.0
stria develop 5 6.302097 48.578 100.0
stria develop 5 6.336044 48.594 100.0
stria develop 5 6.365496 48.625 100.0
stria develop 5 6.401977 48.625 100.0
stria develop 5 6.43266 45.297 99.0
stria develop 5 6.469209 42.391 99.0
stria develop 5 6.506818 42.391 99.0
stria develop 5 6.540934 42.391 99.1
stria develop 5 6.574593 42.391 99.1
stria develop 5 6.608505 42.438 99.1
stria develop 5 6.642506 42.438 99.1
stria develop 5 6.67528 42.5 98.5
stria develop 5 6.708921 42.516 98.5
stria develop 5 6.742862 42.562 98.5
stria develop 5 6.775568 42.578 98.5
stria develop 5 6.809472 42.594 98.7
stria develop 5 6.843597 42.594 98.7
stria develop 5 6.877077 42.594 98.7
stria develop 5 6.911023 42.609 99.7
stria develop 5 6.944962 42.609 99.7
stria develop 5 6.977915 42.547 99.7
stria develop 5 7.012127 42.562 99.7
stria develop 5 7.045983 42.562 100.0
stria develop 5 7.079906 42.562 100.0
stria develop 5 7.113875 42.578 100.0
stria develop 5 7.147848 42.594 100.0
stria develop 5 7.18161 42.594 100.0
stria develop 5 7.215854 42.609 100.0
stria develop 5 7.249592 42.609 100.0
stria develop 5 7.283475 42.609 98.7
stria develop 5 7.31711 42.609 98.7
stria develop 5 7.350815 42.609 98.7
stria develop 5 7.382522 42.625 98.7
stria develop 5 7.416085 42.625 100.0
stria develop 5 7.449945 42.625 100.0
stria develop 5 7.482535 42.656 100.0
stria develop 5 7.516247 42.688 100.0
stria develop 5 7.549878 42.719 99.7
stria develop 5 7.583433 42.766 99.7
stria develop 5 7.615868 42.797 99.7
stria develop 5 7.649782 42.812 99.7
stria develop 5 7.68102 42.812 100.0
stria develop 5 7.714944 42.812 100.0
stria develop 5 7.748928 42.828 100.0
stria develop 5 7.782564 42.828 97.0
stria develop 5 7.816165 42.844 97.0
stria develop 5 7.849959 42.844 97.0
stria develop 5 7.883771 42.844 97.0
stria develop 5 7.917491 42.844 100.0
stria develop 5 7.949202 42.859 100.0
stria develop 5 7.982907 42.875 100.0
stria develop 5 8.016641 42.922 100.0
stria develop 5 8.050254 42.922 99.0
stria develop 5 8.0806 42.922 99.0
stria develop 5 8.114485 42.922 99.0
stria develop 5 8.148556 42.922 99.0
stria develop 5 8.182348 42.953 100.0
stria develop 5 8.216266 42.969 100.0
stria develop 5 8.250228 42.984 100.0
stria develop 5 8.284241 43.047 98.1
stria develop 5 8.317693 43.125 98.1
stria develop 5 8.350772 43.141 98.1
stria develop 5 8.384593 43.141 98.1
stria develop 5 8.418193 43.156 100.0
stria develop 5 8.451913 43.156 100.0
stria develop 5 8.485698 43.172 100.0
stria develop 5 8.519225 43.172 100.0
stria develop 5 8.553119 43.188 99.6
stria develop 5 8.587158 43.203 99.6
stria develop 5 8.620033 43.219 99.6
stria develop 5 8.653945 43.219 99.6
stria develop 5 8.683786 43.219 99.5
stria develop 5 8.717689 43.219 99.5
stria develop 5 8.74802 43.234 99.5
stria develop 5 8.782089 43.234 99.5
stria develop 5 8.815834 43.266 100.0
stria develop 5 8.849738 43.469 100.0
stria develop 5 8.883766 43.625 100.0
stria develop 5 8.917689 43.625 100.0
stria develop 5 8.951271 43.641 100.0
stria develop 5 8.98524 43.656 100.0
stria develop 5 9.018785 43.656 100.0
stria develop 5 9.051866 43.672 99.6
stria develop 5 9.085742 43.703 99.6
stria develop 5 9.119652 43.703 99.6
stria develop 5 9.153501 43.703 99.6
stria develop 5 9.187394 43.719 99.8
stria develop 5 9.220951 43.719 99.8
stria develop 5 9.254651 43.719 99.8
stria develop 5 9.288969 43.75 99.6
stria develop 5 9.32301 43.797 99.6
stria develop 5 9.357103 43.859 99.6
stria develop 5 9.391145 43.953 99.6
stria develop 5 9.425277 44.016 100.0
stria develop 5 9.459295 44.016 100.0
stria develop 5 9.493179 44.031 100.0
stria develop 5 9.527115 44.047 100.0
stria develop 5 9.560945 44.047 99.4
stria develop 5 9.594898 44.047 99.4
stria develop 5 9.628661 44.078 99.4
stria develop 5 9.662289 44.094 98.5
stria develop 5 9.696166 44.094 98.5
stria develop 5 9.730275 44.094 98.5
stria develop 5 9.764195 44.109 98.5
stria develop 5 9.794898 44.078 98.2
stria develop 5 9.839416 44.062 98.2
stria develop 5 9.878288 44.094 98.2
stria develop 5 9.91581 44.125 96.9
stria develop 5 9.948085 44.141 96.9
stria develop 5 9.981579 44.156 96.9
stria develop 5 10.014891 44.203 96.9
stria develop 5 10.048746 44.219 97.1
stria develop 5 10.082689 44.25 97.1
stria develop 5 10.114354 44.25 97.1
stria develop 5 10.14834 44.281 97.1
stria develop 5 10.182524 44.297 98.1
stria develop 5 10.212084 44.312 98.1
stria develop 5 10.246695 44.312 98.1
stria develop 5 10.280878 44.25 98.1
stria develop 5 10.314597 44.266 100.0
stria develop 5 10.348759 44.312 100.0
stria develop 5 10.382469 44.328 100.0
stria develop 5 10.420856 44.359 98.5
stria develop 5 10.454715 44.375 98.5
stria develop 5 10.484259 44.375 98.5
stria develop 5 10.5181 44.391 98.5
stria develop 5 10.549176 44.391 99.2
stria develop 5 10.582595 44.422 99.2
stria develop 5 10.616669 44.453 99.2
stria develop 5 10.650762 44.453 99.2
stria develop 5 10.684623 44.469 98.7
stria develop 5 10.71833 44.484 98.7
stria develop 5 10.74769 44.516 98.7
stria develop 5 10.781418 44.578 98.7
stria develop 5 10.814359 44.656 100.0
stria develop 5 10.848095 44.656 100.0
stria develop 5 10.882087 44.656 100.0
stria develop 5 10.915962 44.656 99.7
stria develop 5 10.949695 44.656 99.7
stria develop 5 10.984022 44.656 99.7
stria develop 5 11.015905 44.688 99.7
stria develop 5 11.049907 44.719 100.0
stria develop 5 11.083706 44.75 100.0
stria develop 5 11.117471 44.797 100.0
stria develop 5 11.151334 44.797 100.0
stria develop 5 11.185248 44.828 100.0
stria develop 5 11.2189 44.844 100.0
stria develop 5 11.252828 44.844 100.0
stria develop 5 11.286532 44.844 97.5
stria develop 5 11.32044 44.859 97.5
stria develop 5 11.354826 44.875 97.5
stria develop 5 11.388949 44.875 97.5
stria develop 5 11.422735 44.906 100.0
stria develop 5 11.456731 44.922 100.0
stria develop 5 11.490738 44.922 100.0
stria develop 5 11.524971 44.922 100.0
stria develop 5 11.55751 44.922 99.2
stria develop 5 11.591209 44.938 99.2
stria develop 5 11.6253 44.953 99.2
stria develop 5 11.658406 44.953 99.2
stria develop 5 11.690863 44.984 99.6
stria develop 5 11.725059 45.0 99.6
stria develop 5 11.75887 45.0 99.6
stria develop 5 11.792777 45.0 99.6
stria develop 5 11.826615 45.016 99.6
stria develop 5 11.857492 45.016 99.6
stria develop 5 11.890865 45.031 99.6
stria develop 5 11.925033 45.047 100.0
stria develop 5 11.958779 45.062 100.0
stria develop 5 11.992774 45.062 100.0
stria develop 5 12.026663 45.094 100.0
stria develop 5 12.062634 45.094 100.0
stria develop 5 12.096576 45.125 100.0
stria develop 5 12.130426 45.203 100.0
stria develop 5 12.163997 45.281 98.9
stria develop 5 12.197972 45.297 98.9
stria develop 5 12.231939 45.297 98.9
stria develop 5 12.265761 45.312 98.9
stria develop 5 12.299164 45.328 100.0
stria develop 5 12.332533 45.328 100.0
stria develop 5 12.365855 45.359 100.0
stria develop 5 12.395432 45.375 100.0
stria develop 5 12.42547 45.375 99.4
stria develop 5 12.459164 45.375 99.4
stria develop 5 12.492908 45.375 99.4
stria develop 5 12.526312 45.234 99.4
stria develop 5 12.55988 45.25 100.0
stria develop 5 12.593697 45.25 100.0
stria develop 5 12.62686 45.281 100.0
stria develop 5 12.66051 45.391 100.0
stria develop 5 12.694198 45.438 99.0
stria develop 5 12.727835 45.438 99.0
stria develop 5 12.761467 45.453 99.0
stria develop 5 12.79495 45.469 99.3
stria develop 5 12.828619 45.375 99.3
stria develop 5 12.868487 45.406 99.3
stria develop 5 12.9019 45.422 99.3
stria develop 5 12.93383 45.422 100.0
stria develop 5 12.967622 45.422 100.0
stria develop 5 13.001391 45.438 100.0
stria develop 5 13.035685 45.453 100.0
stria develop 5 13.06924 45.453 100.0
stria develop 5 13.100454 45.469 100.0
stria develop 5 13.13397 45.469 100.0
stria develop 5 13.167637 45.484 99.4
stria develop 5 13.201339 45.5 99.4
stria develop 5 13.235068 45.516 99.4
stria develop 5 13.268384 45.516 99.4
stria develop 5 13.302115 45.516 98.9
stria develop 5 13.335872 45.516 98.9
stria develop 5 13.369468 45.531 98.9
stria develop 5 13.400224 45.547 98.9
stria develop 5 13.43419 45.547 100.0
stria develop 5 13.46784 45.562 100.0
stria develop 5 13.5017 45.625 100.0
stria develop 5 13.533833 45.656 100.0
stria develop 5 13.567152 45.688 100.0
stria develop 5 13.600676 45.734 100.0
stria develop 5 13.634641 45.781 100.0
stria develop 5 13.668277 45.797 98.2
stria develop 5 13.700352 45.812 98.2
stria develop 5 13.729802 45.812 98.2
stria develop 5 13.763812 45.812 98.2
stria develop 5 13.797757 45.812 99.5
stria develop 5 13.831522 45.844 99.5
stria develop 5 13.865476 45.844 99.5
stria develop 5 13.899259 45.844 99.5
stria develop 5 13.933129 45.875 100.0
stria develop 5 13.963999 45.891 100.0
stria develop 5 13.99392 45.891 100.0
stria develop 5 14.027445 45.906 100.0
stria develop 5 14.061086 45.906 100.0
stria develop 5 14.094854 45.906 100.0
stria develop 5 14.124392 45.906 100.0
stria develop 5 14.157468 45.922 100.0
stria develop 5 14.18782 45.938 100.0
stria develop 5 14.222409 45.953 100.0
stria develop 5 14.256013 45.953 100.0
stria develop 5 14.289767 45.984 98.2
stria develop 5 14.323517 45.812 98.2
stria develop 5 14.361803 45.844 98.2
stria develop 5 14.395825 45.859 98.2
stria develop 5 14.42599 45.891 100.0
stria develop 5 14.457466 45.891 100.0
stria develop 5 14.487739 45.844 100.0
stria develop 5 14.522391 45.641 100.0
stria develop 5 14.55702 45.625 99.0
stria develop 5 14.59116 45.219 99.0
stria develop 5 14.626546 45.219 99.0
stria develop 5 14.660562 44.984 97.3
stria develop 5 14.712696 44.656 97.3
stria develop 5 14.750518 44.656 97.3
stria develop 5 14.797688 44.656 88.2
stria develop 5 14.832657 44.672 88.2
stria develop 5 14.866853 44.672 88.2
stria develop 5 14.900363 44.688 88.2
stria develop 5 14.934432 44.688 92.2
stria develop 5 14.969506 44.688 92.2
stria develop 5 15.003468 44.688 92.2
stria develop 5 15.037439 44.688 92.2
stria develop 5 15.071347 44.688 96.0
stria develop 5 15.105308 44.688 96.0
stria develop 5 15.138865 44.688 96.0
stria develop 5 15.172821 44.688 96.4
stria develop 5 15.207016 44.688 96.4
stria develop 5 15.241025 44.688 96.4
stria develop 5 15.274705 44.688 96.4
stria branch 5 0.000476 0.172 0.0
stria branch 5 0.029689 11.25 0.0
stria branch 5 0.061007 20.125 0.0
stria branch 5 0.094707 25.438 0.0
stria branch 5 0.128384 30.266 29.7
stria branch 5 0.161853 30.844 29.7
stria branch 5 0.195706 30.844 29.7
stria branch 5 0.229493 30.844 53.2
stria branch 5 0.263771 30.859 53.2
stria branch 5 0.297502 30.922 53.2
stria branch 5 0.3316 30.922 53.2
stria branch 5 0.365406 30.938 72.1
stria branch 5 0.397125 30.953 72.1
stria branch 5 0.431085 31.016 72.1
stria branch 5 0.465094 31.016 72.1
stria branch 5 0.494815 31.016 82.2
stria branch 5 0.528194 31.016 82.2
stria branch 5 0.56189 31.031 82.2
stria branch 5 0.594856 31.031 82.2
stria branch 5 0.628681 31.047 89.5
stria branch 5 0.662535 31.047 89.5
stria branch 5 0.69648 31.047 89.5
stria branch 5 0.730236 31.062 91.8
stria branch 5 0.764157 31.078 91.8
stria branch 5 0.798196 31.172 91.8
stria branch 5 0.832098 31.25 91.8
stria branch 5 0.865904 31.391 95.4
stria branch 5 0.900652 31.453 95.4
stria branch 5 0.93459 31.469 95.4
stria branch 5 0.968689 31.469 95.4
stria branch 5 1.002359 31.469 98.5
stria branch 5 1.035912 31.469 98.5
stria branch 5 1.069594 31.469 98.5
stria branch 5 1.103133 31.484 98.5
stria branch 5 1.136611 31.484 99.4
stria branch 5 1.166484 31.5 99.4
stria branch 5 1.200502 31.5 99.4
stria branch 5 1.23418 31.5 98.6
stria branch 5 1.267858 31.5 98.6
stria branch 5 1.301543 31.516 98.6
stria branch 5 1.336595 31.531 98.6
stria branch 5 1.370447 31.547 98.1
stria branch 5 1.404118 31.547 98.1
stria branch 5 1.433859 31.547 98.1
stria branch 5 1.463006 31.547 98.1
stria branch 5 1.496632 31.547 98.8
stria branch 5 1.528035 31.547 98.8
stria branch 5 1.561801 31.547 98.8
stria branch 5 1.590574 31.547 98.8
stria branch 5 1.624553 31.562 99.6
stria branch 5 1.658507 31.562 99.6
stria branch 5 1.689807 31.562 99.6
stria branch 5 1.723732 31.578 99.6
stria branch 5 1.758223 31.578 100.0
stria branch 5 1.791986 31.578 100.0
stria branch 5 1.82577 31.578 100.0
stria branch 5 1.857911 31.594 99.4
stria branch 5 1.891896 31.594 99.4
stria branch 5 1.925627 31.609 99.4
stria branch 5 1.954746 31.625 99.4
stria branch 5 1.983927 31.656 99.6
stria branch 5 2.017775 31.688 99.6
stria branch 5 2.051175 31.734 99.6
stria branch 5 2.08042 31.75 99.6
stria branch 5 2.114335 31.75 100.0
stria branch 5 2.149131 31.766 100.0
stria branch 5 2.224047 31.781 84.1
stria branch 5 2.27827 31.781 84.1
stria branch 5 2.315927 31.781 84.1
stria branch 5 2.348838 31.797 84.1
stria branch 5 2.382856 31.797 86.5
stria branch 5 2.416316 35.375 86.5
stria branch 5 2.449897 38.312 86.5
stria branch 5 2.483622 41.188 91.6
stria branch 5 2.517395 44.812 91.6
stria branch 5 2.553126 47.203 91.6
stria branch 5 2.587077 47.219 91.6
stria branch 5 2.620769 47.281 94.9
stria branch 5 2.654474 47.328 94.9
stria branch 5 2.687859 47.359 94.9
stria branch 5 2.721305 47.375 94.9
stria branch 5 2.760497 47.375 96.1
stria branch 5 2.793941 47.375 96.1
stria branch 5 2.827677 47.391 96.1
stria branch 5 2.858304 47.391 97.3
stria branch 5 2.892286 47.406 97.3
stria branch 5 2.926131 47.406 97.3
stria branch 5 2.959792 47.406 97.3
stria branch 5 2.993728 47.422 98.5
stria branch 5 3.027547 47.438 98.5
stria branch 5 3.061161 47.453 98.5
stria branch 5 3.098323 47.453 98.5
stria branch 5 3.131991 47.453 99.6
stria branch 5 3.161813 47.453 99.6
stria branch 5 3.195531 47.453 99.6
stria branch 5 3.229312 47.453 99.6
stria branch 5 3.262887 47.453 99.5
stria branch 5 3.296739 47.453 99.5
stria branch 5 3.329436 47.453 99.5
stria branch 5 3.363299 47.453 99.3
stria branch 5 3.3971 47.453 99.3
stria branch 5 3.430895 47.469 99.3
stria branch 5 3.464808 47.469 99.3
stria branch 5 3.498724 47.469 99.9
stria branch 5 3.532781 47.5 99.9
stria branch 5 3.562837 47.5 99.9
stria branch 5 3.596832 47.562 99.9
stria branch 5 3.630402 47.594 99.1
stria branch 5 3.662907 47.625 99.1
stria branch 5 3.696679 47.641 99.1
stria branch 5 3.730429 47.656 99.1
stria branch 5 3.764488 47.656 100.0
stria branch 5 3.798597 47.656 100.0
stria branch 5 3.832161 47.672 100.0
stria branch 5 3.866016 47.672 100.0
stria branch 5 3.897162 47.688 100.0
stria branch 5 3.930962 47.688 100.0
stria branch 5 3.964906 47.688 100.0
stria branch 5 3.994092 47.703 98.5
stria branch 5 4.026821 47.719 98.5
stria branch 5 4.05783 47.734 98.5
stria branch 5 4.091687 47.734 98.5
stria branch 5 4.125303 47.734 99.0
stria branch 5 4.159316 47.734 99.0
stria branch 5 4.193147 47.734 99.0
stria branch 5 4.22701 47.734 99.0
stria branch 5 4.260914 47.734 100.0
stria branch 5 4.293458 47.734 100.0
stria branch 5 4.327298 47.734 100.0
stria branch 5 4.361067 47.734 99.5
stria branch 5 4.39496 47.734 99.5
stria branch 5 4.428795 47.734 99.5
stria branch 5 4.462743 47.734 99.5
stria branch 5 4.496394 47.75 98.8
stria branch 5 4.527712 47.75 98.8
stria branch 5 4.564347 47.781 98.8
stria branch 5 4.598232 47.844 98.8
stria branch 5 4.631439 47.906 100.0
stria branch 5 4.66517 47.984 100.0
stria branch 5 4.698905 47.984 100.0
stria branch 5 4.733047 48.0 98.4
stria branch 5 4.765448 48.0 98.4
stria branch 5 4.803475 48.016 98.4
stria branch 5 4.837347 48.016 98.4
stria branch 5 4.87088 48.016 99.6
stria branch 5 4.903031 48.031 99.6
stria branch 5 4.936922 48.047 99.6
stria branch 5 4.969795 48.062 99.6
stria branch 5 5.003132 48.062 100.0
stria branch 5 5.035589 47.0 100.0
stria branch 5 5.069872 42.312 100.0
stria branch 5 5.104665 42.312 100.0
stria branch 5 5.139768 42.328 98.8
stria branch 5 5.173768 42.328 98.8
stria branch 5 5.207656 42.328 98.8
stria branch 5 5.243713 42.344 100.0
stria branch 5 5.277509 42.359 100.0
stria branch 5 5.311305 42.359 100.0
stria branch 5 5.343478 42.391 100.0
stria branch 5 5.377425 42.422 98.9
stria branch 5 5.410094 42.453 98.9
stria branch 5 5.443458 42.609 98.9
stria branch 5 5.477257 42.625 98.9
stria branch 5 5.51125 42.688 100.0
stria branch 5 5.54497 42.688 100.0
stria branch 5 5.578474 42.688 100.0
stria branch 5 5.612256 42.688 97.6
stria branch 5 5.646892 42.719 97.6
stria branch 5 5.680903 42.719 97.6
stria branch 5 5.715279 42.719 97.6
stria branch 5 5.749624 42.734 99.6
stria branch 5 5.783849 42.734 99.6
stria branch 5 5.817863 42.734 99.6
stria branch 5 5.851718 42.734 99.6
stria branch 5 5.880444 42.75 99.3
stria branch 5 5.914154 42.766 99.3
stria branch 5 5.947957 42.766 99.3
stria branch 5 5.981791 42.781 99.3
stria branch 5 6.013821 42.781 100.0
stria branch 5 6.047559 42.781 100.0
stria branch 5 6.081196 42.781 100.0
stria branch 5 6.115065 42.781 99.0
stria branch 5 6.148885 42.781 99.0
stria branch 5 6.182584 42.781 99.0
stria branch 5 6.216682 42.844 99.0
stria branch 5 6.251179 42.875 99.6
stria branch 5 6.285262 42.906 99.6
stria branch 5 6.318854 43.219 99.6
stria branch 5 6.352507 43.344 99.6
stria branch 5 6.38628 43.359 100.0
stria branch 5 6.420027 43.375 100.0
stria branch 5 6.453834 43.406 100.0
stria branch 5 6.487581 43.406 98.1
stria branch 5 6.521325 43.406 98.1
stria branch 5 6.553507 43.438 98.1
stria branch 5 6.583548 43.438 98.1
stria branch 5 6.617216 43.438 99.7
stria branch 5 6.650908 43.453 99.7
stria branch 5 6.68228 43.484 99.7
stria branch 5 6.716089 43.484 99.7
stria branch 5 6.745862 43.547 99.5
stria branch 5 6.779639 43.562 99.5
stria branch 5 6.813547 43.609 99.5
stria branch 5 6.847329 43.625 99.5
stria branch 5 6.88096 43.641 100.0
stria branch 5 6.914734 43.641 100.0
stria branch 5 6.948441 43.641 100.0
stria branch 5 6.982263 43.656 100.0
stria branch 5 7.016217 43.656 98.5
stria branch 5 7.050267 43.656 98.5
stria branch 5 7.083912 43.672 98.5
stria branch 5 7.113064 43.672 98.4
stria branch 5 7.147134 43.672 98.4
stria branch 5 7.188462 43.688 98.4
stria branch 5 7.22193 43.703 98.4
stria branch 5 7.255441 43.703 100.0
stria branch 5 7.289209 43.719 100.0
stria branch 5 7.323184 43.719 100.0
stria branch 5 7.353401 43.719 100.0
stria branch 5 7.387352 43.719 99.1
stria branch 5 7.421009 43.719 99.1
stria branch 5 7.454676 43.719 99.1
stria branch 5 7.486559 43.734 97.5
stria branch 5 7.520416 43.734 97.5
stria branch 5 7.553973 43.75 97.5
stria branch 5 7.587663 43.766 97.5
stria branch 5 7.621512 43.828 99.7
stria branch 5 7.654805 43.859 99.7
stria branch 5 7.688253 43.906 99.7
stria branch 5 7.719669 43.922 99.7
stria branch 5 7.753362 43.922 100.0
stria branch 5 7.787093 43.922 100.0
stria branch 5 7.820517 43.938 100.0
stria branch 5 7.851752 43.938 100.0
stria branch 5 7.885235 43.938 98.9
stria branch 5 7.919076 43.953 98.9
stria branch 5 7.952634 43.953 98.9
stria branch 5 7.986469 43.953 98.9
stria branch 5 8.020184 43.969 98.9
stria branch 5 8.054069 43.984 98.9
stria branch 5 8.088202 44.0 98.9
stria branch 5 8.122184 44.0 100.0
stria branch 5 8.152381 44.0 100.0
stria branch 5 8.186289 44.0 100.0
stria branch 5 8.220217 44.0 100.0
stria branch 5 8.254366 44.031 99.1
stria branch 5 8.288533 44.031 99.1
stria branch 5 8.322466 44.062 99.1
stria branch 5 8.354667 44.094 99.1
stria branch 5 8.387853 44.172 99.6
stria branch 5 8.421557 44.203 99.6
stria branch 5 8.454599 44.219 99.6
stria branch 5 8.48518 44.219 99.6
stria branch 5 8.518885 44.234 100.0
stria branch 5 8.552738 44.234 100.0
stria branch 5 8.586727 44.25 100.0
stria branch 5 8.62059 44.25 100.0
stria branch 5 8.657784 44.266 100.0
stria branch 5 8.691881 44.281 100.0
stria branch 5 8.72558 44.297 100.0
stria branch 5 8.759686 44.297 100.0
stria branch 5 8.794031 44.297 100.0
stria branch 5 8.826735 44.312 100.0
stria branch 5 8.860362 44.312 100.0
stria branch 5 8.89386 44.344 99.1
stria branch 5 8.927414 44.406 99.1
stria branch 5 8.960964 44.672 99.1
stria branch 5 8.994735 44.688 99.4
stria branch 5 9.028581 44.734 99.4
stria branch 5 9.060592 44.75 99.4
stria branch 5 9.097088 44.75 99.4
stria branch 5 9.131105 44.766 100.0
stria branch 5 9.165003 44.781 100.0
stria branch 5 9.198736 44.797 100.0
stria branch 5 9.233024 44.797 100.0
stria branch 5 9.26697 44.812 98.4
stria branch 5 9.300689 44.531 98.4
stria branch 5 9.337193 44.531 98.4
stria branch 5 9.369937 44.562 99.9
stria branch 5 9.403917 44.609 99.9
stria branch 5 9.437747 44.672 99.9
stria branch 5 9.471541 44.766 99.9
stria branch 5 9.505217 44.828 99.7
stria branch 5 9.538736 44.828 99.7
stria branch 5 9.57273 44.844 99.7
stria branch 5 9.606568 44.859 99.7
stria branch 5 9.64012 44.859 100.0
stria branch 5 9.673738 44.703 100.0
stria branch 5 9.70542 44.734 100.0
stria branch 5 9.739112 44.75 97.9
stria branch 5 9.772937 44.75 97.9
stria branch 5 9.806622 44.75 97.9
stria branch 5 9.840654 44.766 97.9
stria branch 5 9.874583 44.828 100.0
stria branch 5 9.908496 44.938 100.0
stria branch 5 9.940279 44.969 100.0
stria branch 5 9.974387 44.984 100.0
stria branch 5 10.009169 45.0 100.0
stria branch 5 10.03813 45.016 100.0
stria branch 5 10.071944 45.062 100.0
stria branch 5 10.104585 45.094 100.0
stria branch 5 10.138447 45.109 100.0
stria branch 5 10.172416 45.109 100.0
stria branch 5 10.206356 45.141 100.0
stria branch 5 10.240186 45.172 97.9
stria branch 5 10.27485 45.172 97.9
stria branch 5 10.308681 45.172 97.9
stria branch 5 10.342261 45.188 97.9
stria branch 5 10.376393 45.219 100.0
stria branch 5 10.405502 45.234 100.0
stria branch 5 10.439911 45.266 100.0
stria branch 5 10.474119 45.297 100.0
stria branch 5 10.507905 45.297 100.0
stria branch 5 10.541356 45.297 100.0
stria branch 5 10.575336 45.312 100.0
stria branch 5 10.608934 45.328 100.0
stria branch 5 10.642371 45.375 98.8
stria branch 5 10.675751 45.312 98.8
stria branch 5 10.710289 45.328 98.8
stria branch 5 10.744428 45.344 99.4
stria branch 5 10.77816 45.375 99.4
stria branch 5 10.812238 45.438 99.4
stria branch 5 10.84507 45.5 99.4
stria branch 5 10.879004 45.516 100.0
stria branch 5 10.913024 45.453 100.0
stria branch 5 10.944218 45.438 100.0
stria branch 5 10.97574 45.438 100.0
stria branch 5 11.009145 45.438 98.5
stria branch 5 11.043465 45.047 98.5
stria branch 5 11.078499 45.094 98.5
stria branch 5 11.114039 44.953 99.0
stria branch 5 11.153098 45.0 99.0
stria branch 5 11.187295 45.0 99.0
stria branch 5 11.221148 45.0 99.0
stria branch 5 11.255193 45.031 98.8
stria branch 5 11.28884 44.891 98.8
stria branch 5 11.321997 44.891 98.8
stria branch 5 11.353274 44.906 98.8
stria branch 5 11.387133 44.922 99.9
stria branch 5 11.421142 44.922 99.9
stria branch 5 11.455039 44.938 99.9
stria branch 5 11.489735 44.953 96.0
stria branch 5 11.52372 44.969 96.0
stria branch 5 11.557046 44.969 96.0
stria branch 5 11.587956 44.969 96.0
stria branch 5 11.620072 44.984 100.0
stria branch 5 11.65389 45.0 100.0
stria branch 5 11.687393 45.0 100.0
stria branch 5 11.721172 45.016 100.0
stria branch 5 11.754684 45.047 100.0
stria branch 5 11.790783 45.047 100.0
stria branch 5 11.824751 45.047 100.0
stria branch 5 11.859196 45.047 100.0
stria branch 5 11.893305 45.062 100.0
stria branch 5 11.926393 45.047 100.0
stria branch 5 11.959861 44.859 100.0
stria branch 5 11.992073 44.891 99.1
stria branch 5 12.025423 44.891 99.1
stria branch 5 12.054477 44.891 99.1
stria branch 5 12.086423 44.922 99.1
stria branch 5 12.118384 44.938 99.5
stria branch 5 12.152349 44.953 99.5
stria branch 5 12.186089 45.062 99.5
stria branch 5 12.218408 45.109 99.5
stria branch 5 12.251857 45.125 99.6
stria branch 5 12.285522 45.109 99.6
stria branch 5 12.321345 45.125 99.6
stria branch 5 12.351365 45.141 99.6
stria branch 5 12.385084 45.141 99.6
stria branch 5 12.418748 45.172 99.6
stria branch 5 12.452591 45.188 99.6
stria branch 5 12.486232 45.188 99.6
stria branch 5 12.514768 45.188 100.0
stria branch 5 12.548273 45.203 100.0
stria branch 5 12.582034 45.203 100.0
stria branch 5 12.615377 45.219 100.0
stria branch 5 12.6487 45.234 100.0
stria branch 5 12.682586 45.281 100.0
stria branch 5 12.716405 45.375 100.0
stria branch 5 12.749946 45.406 100.0
stria branch 5 12.783434 45.406 100.0
stria branch 5 12.817184 45.422 100.0
stria branch 5 12.850976 45.438 100.0
stria branch 5 12.88465 45.438 98.2
stria branch 5 12.918369 45.469 98.2
stria branch 5 12.952114 45.484 98.2
stria branch 5 12.985073 45.484 98.2
stria branch 5 13.018403 45.484 99.2
stria branch 5 13.049693 45.5 99.2
stria branch 5 13.083469 45.516 99.2
stria branch 5 13.117373 45.516 98.6
stria branch 5 13.151388 45.531 98.6
stria branch 5 13.185298 45.531 98.6
stria branch 5 13.218445 45.547 98.6
stria branch 5 13.25499 45.562 100.0
stria branch 5 13.287832 45.578 100.0
stria branch 5 13.321673 45.578 100.0
stria branch 5 13.355631 45.578 100.0
stria branch 5 13.389352 45.578 100.0
stria branch 5 13.423139 45.594 100.0
stria branch 5 13.457334 45.609 100.0
stria branch 5 13.491121 45.609 100.0
stria branch 5 13.524923 45.688 99.9
stria branch 5 13.558471 45.703 99.9
stria branch 5 13.59243 45.734 99.9
stria branch 5 13.626553 45.766 100.0
stria branch 5 13.660049 45.844 100.0
stria branch 5 13.693965 45.859 100.0
stria branch 5 13.726742 45.859 100.0
stria branch 5 13.760063 45.875 100.0
stria branch 5 13.793672 45.875 100.0
stria branch 5 13.827619 45.875 100.0
stria branch 5 13.860023 45.875 100.0
stria branch 5 13.893456 45.906 99.1
stria branch 5 13.927321 45.906 99.1
stria branch 5 13.961023 45.922 99.1
stria branch 5 13.994804 45.922 99.6
stria branch 5 14.03186 45.812 99.6
stria branch 5 14.061362 45.828 99.6
stria branch 5 14.09152 45.828 99.6
stria branch 5 14.125423 45.828 99.0
stria branch 5 14.155375 45.828 99.0
stria branch 5 14.189348 45.844 99.0
stria branch 5 14.223087 45.859 99.0
stria branch 5 14.256641 45.875 100.0
stria branch 5 14.285624 45.875 100.0
stria branch 5 14.319656 45.875 100.0
stria branch 5 14.352841 45.453 100.0
stria branch 5 14.397569 45.484 96.8
stria branch 5 14.431924 45.484 96.8
stria branch 5 14.466147 45.344 96.8
stria branch 5 14.49851 44.906 96.3
stria branch 5 14.54638 44.781 96.3
stria branch 5 14.583698 44.094 96.3
stria branch 5 14.622018 44.078 92.2
stria branch 5 14.656721 43.547 92.2
stria branch 5 14.691304 43.328 92.2
stria branch 5 14.72233 42.812 87.0
stria branch 5 14.801476 42.75 87.0
stria branch 5 14.833125 42.766 87.0
stria branch 5 14.863715 42.766 87.0
stria branch 5 14.898097 42.781 88.2
stria branch 5 14.932194 42.781 88.2
stria branch 5 14.966148 42.797 88.2
stria branch 5 14.995162 42.797 89.4
stria branch 5 15.028608 42.797 89.4
stria branch 5 15.061551 42.797 89.4
stria branch 5 15.094459 42.797 89.4
stria branch 5 15.127992 42.797 94.9
stria branch 5 15.161739 42.797 94.9
stria branch 5 15.194419 42.797 94.9
stria branch 5 15.2282 42.797 94.9
stria branch 5 15.261845 42.797 96.0
stria branch 5 15.29576 42.797 96.0
stria branch 5 15.327407 42.797 96.0
stria branch 5 15.361252 49.469 96.0
recursive-structured-workload develop 1 0.00046 0.172 0.0
recursive-structured-workload develop 1 0.03453 29.922 0.0
recursive-structured-workload develop 1 0.068773 66.75 0.0
recursive-structured-workload develop 1 0.100482 124.203 25.2
recursive-structured-workload develop 1 0.136102 144.828 25.2
recursive-structured-workload develop 1 0.170655 179.172 25.2
recursive-structured-workload develop 1 0.204654 201.656 25.2
recursive-structured-workload develop 1 0.238613 226.906 50.8
recursive-structured-workload develop 1 0.272561 228.672 50.8
recursive-structured-workload develop 1 0.306197 231.5 50.8
recursive-structured-workload develop 1 0.338432 235.297 70.4
recursive-structured-workload develop 1 0.372228 239.359 70.4
recursive-structured-workload develop 1 0.406194 245.266 70.4
recursive-structured-workload develop 1 0.444909 253.172 70.4
recursive-structured-workload develop 1 0.47929 260.594 80.2
recursive-structured-workload develop 1 0.513222 270.203 80.2
recursive-structured-workload develop 1 0.546946 280.312 80.2
recursive-structured-workload develop 1 0.580638 291.641 87.3
recursive-structured-workload develop 1 0.614326 303.312 87.3
recursive-structured-workload develop 1 0.643223 303.578 87.3
recursive-structured-workload develop 1 0.677261 309.203 87.3
recursive-structured-workload develop 1 0.711289 309.844 93.7
recursive-structured-workload develop 1 0.744185 309.969 93.7
recursive-structured-workload develop 1 0.777988 310.984 93.7
recursive-structured-workload develop 1 0.811616 311.984 93.7
recursive-structured-workload develop 1 0.845212 312.016 95.0
recursive-structured-workload develop 1 0.879162 312.141 95.0
recursive-structured-workload develop 1 0.912769 313.016 95.0
recursive-structured-workload develop 1 0.946249 313.656 95.0
recursive-structured-workload develop 1 0.975669 313.906 98.4
recursive-structured-workload develop 1 1.010146 314.922 98.4
recursive-structured-workload develop 1 1.044157 314.922 98.4
recursive-structured-workload develop 1 1.078193 315.547 98.4
recursive-structured-workload develop 1 1.111881 315.672 97.5
recursive-structured-workload develop 1 1.14551 316.812 97.5
recursive-structured-workload develop 1 1.179542 316.812 97.5
recursive-structured-workload develop 1 1.213168 317.469 99.9
recursive-structured-workload develop 1 1.246681 317.469 99.9
recursive-structured-workload develop 1 1.280446 321.172 99.9
recursive-structured-workload develop 1 1.314379 321.172 99.9
recursive-structured-workload develop 1 1.348413 321.172 81.0
recursive-structured-workload develop 1 1.382857 321.172 81.0
recursive-structured-workload develop 1 1.415425 321.172 81.0
recursive-structured-workload develop 1 1.446201 321.172 81.0
recursive-structured-workload develop 1 1.480404 321.172 50.6
recursive-structured-workload develop 1 1.513801 321.172 50.6
recursive-structured-workload develop 1 1.547848 0.0 0.0
recursive-structured-workload branch 1 0.000517 0.172 0.0
recursive-structured-workload branch 1 0.034062 30.484 0.0
recursive-structured-workload branch 1 0.067775 47.062 0.0
recursive-structured-workload branch 1 0.099783 88.375 0.0
recursive-structured-workload branch 1 0.133573 97.828 36.1
recursive-structured-workload branch 1 0.167727 103.016 36.1
recursive-structured-workload branch 1 0.201797 108.391 36.1
recursive-structured-workload branch 1 0.235673 109.078 36.1
recursive-structured-workload branch 1 0.269589 109.906 62.2
recursive-structured-workload branch 1 0.303698 112.641 62.2
recursive-structured-workload branch 1 0.337821 112.672 62.2
recursive-structured-workload branch 1 0.371567 112.719 73.8
recursive-structured-workload branch 1 0.405415 112.75 73.8
recursive-structured-workload branch 1 0.439073 112.797 73.8
recursive-structured-workload branch 1 0.472846 112.859 73.8
recursive-structured-workload branch 1 0.506964 112.953 84.2
recursive-structured-workload branch 1 0.54043 113.016 84.2
recursive-structured-workload branch 1 0.574097 113.109 84.2
recursive-structured-workload branch 1 0.608084 113.219 84.2
recursive-structured-workload branch 1 0.641952 113.328 90.6
recursive-structured-workload branch 1 0.674923 113.938 90.6
recursive-structured-workload branch 1 0.708802 117.859 90.6
recursive-structured-workload branch 1 0.742642 122.859 90.6
recursive-structured-workload branch 1 0.776662 127.016 93.6
recursive-structured-workload branch 1 0.810793 131.547 93.6
recursive-structured-workload branch 1 0.844519 136.344 93.6
recursive-structured-workload branch 1 0.878428 141.25 97.8
recursive-structured-workload branch 1 0.912176 145.031 97.8
recursive-structured-workload branch 1 0.946138 146.0 97.8
recursive-structured-workload branch 1 0.980326 146.469 97.8
recursive-structured-workload branch 1 1.014414 146.469 98.4
recursive-structured-workload branch 1 1.048579 146.469 98.4
recursive-structured-workload branch 1 1.082467 146.672 98.4
recursive-structured-workload branch 1 1.116473 147.469 98.4
recursive-structured-workload branch 1 1.150436 147.469 96.6
recursive-structured-workload branch 1 1.184305 147.469 96.6
recursive-structured-workload branch 1 1.218028 147.469 96.6
recursive-structured-workload branch 1 1.251787 147.609 99.1
recursive-structured-workload branch 1 1.285629 147.609 99.1
recursive-structured-workload branch 1 1.319635 147.609 99.1
recursive-structured-workload branch 1 1.353586 147.609 99.1
recursive-structured-workload branch 1 1.383051 147.609 98.6
recursive-structured-workload branch 1 1.416923 147.609 98.6
recursive-structured-workload branch 1 1.45096 147.609 98.6
recursive-structured-workload branch 1 1.484634 147.609 98.6
recursive-structured-workload branch 1 1.518599 147.609 98.6
recursive-structured-workload branch 1 1.550009 147.609 98.6
recursive-structured-workload branch 1 1.583704 147.609 98.6
recursive-structured-workload branch 1 1.617654 147.609 98.6
recursive-structured-workload branch 1 1.651498 147.609 98.7
recursive-structured-workload branch 1 1.6851 147.609 98.7
recursive-structured-workload branch 1 1.719205 147.734 98.7
recursive-structured-workload branch 1 1.751296 147.75 99.6
recursive-structured-workload branch 1 1.785127 147.75 99.6
recursive-structured-workload branch 1 1.813979 147.75 99.6
recursive-structured-workload branch 1 1.843838 147.75 99.6
recursive-structured-workload branch 1 1.872849 147.75 100.0
recursive-structured-workload branch 1 1.906562 147.75 100.0
recursive-structured-workload branch 1 1.940626 147.75 100.0
recursive-structured-workload branch 1 1.974767 147.75 100.0
recursive-structured-workload branch 1 2.008552 147.75 100.0
recursive-structured-workload branch 1 2.041014 147.75 100.0
recursive-structured-workload branch 1 2.075041 147.75 100.0
recursive-structured-workload branch 1 2.105829 147.75 100.0
recursive-structured-workload branch 1 2.139713 147.75 99.3
recursive-structured-workload branch 1 2.173359 147.75 99.3
recursive-structured-workload branch 1 2.207052 147.75 99.3
recursive-structured-workload branch 1 2.240907 147.781 99.3
recursive-structured-workload branch 1 2.274895 147.781 100.0
recursive-structured-workload branch 1 2.309136 147.781 100.0
recursive-structured-workload branch 1 2.343271 147.781 100.0
recursive-structured-workload branch 1 2.377325 147.781 99.5
recursive-structured-workload branch 1 2.41141 147.781 99.5
recursive-structured-workload branch 1 2.441744 147.781 99.5
recursive-structured-workload branch 1 2.475699 147.781 99.5
recursive-structured-workload branch 1 2.508441 147.781 100.0
recursive-structured-workload branch 1 2.541691 147.781 100.0
recursive-structured-workload branch 1 2.573433 147.781 100.0
recursive-structured-workload branch 1 2.607568 147.781 100.0
recursive-structured-workload branch 1 2.641452 147.781 100.0
recursive-structured-workload branch 1 2.675675 147.781 100.0
recursive-structured-workload branch 1 2.709575 147.781 100.0
recursive-structured-workload branch 1 2.743483 147.781 100.0
recursive-structured-workload branch 1 2.774831 147.781 98.8
recursive-structured-workload branch 1 2.804419 147.891 98.8
recursive-structured-workload branch 1 2.83775 147.969 98.8
recursive-structured-workload branch 1 2.871911 147.969 98.8
recursive-structured-workload branch 1 2.906146 147.969 100.0
recursive-structured-workload branch 1 2.939968 147.969 100.0
recursive-structured-workload branch 1 2.973855 147.969 100.0
recursive-structured-workload branch 1 3.006699 147.969 99.3
recursive-structured-workload branch 1 3.040622 147.969 99.3
recursive-structured-workload branch 1 3.074336 147.969 99.3
recursive-structured-workload branch 1 3.107976 147.969 99.3
recursive-structured-workload branch 1 3.142016 147.969 99.6
recursive-structured-workload branch 1 3.175757 147.969 99.6
recursive-structured-workload branch 1 3.209583 147.969 99.6
recursive-structured-workload branch 1 3.243381 148.031 99.6
recursive-structured-workload branch 1 3.277279 148.469 99.9
recursive-structured-workload branch 1 3.309633 148.469 99.9
recursive-structured-workload branch 1 3.343419 148.469 99.9
recursive-structured-workload branch 1 3.377232 148.578 100.0
recursive-structured-workload branch 1 3.41109 148.625 100.0
recursive-structured-workload branch 1 3.444886 148.625 100.0
recursive-structured-workload branch 1 3.478841 148.625 100.0
recursive-structured-workload branch 1 3.512587 148.625 100.0
recursive-structured-workload branch 1 3.546241 148.625 100.0
recursive-structured-workload branch 1 3.579987 148.625 100.0
recursive-structured-workload branch 1 3.613718 148.625 100.0
recursive-structured-workload branch 1 3.647353 148.625 100.0
recursive-structured-workload branch 1 3.681227 148.625 100.0
recursive-structured-workload branch 1 3.714344 148.625 100.0
recursive-structured-workload branch 1 3.747848 148.625 100.0
recursive-structured-workload branch 1 3.781447 148.625 100.0
recursive-structured-workload branch 1 3.814669 149.016 100.0
recursive-structured-workload branch 1 3.848175 149.016 100.0
recursive-structured-workload branch 1 3.882079 149.016 99.1
recursive-structured-workload branch 1 3.916066 149.438 99.1
recursive-structured-workload branch 1 3.949909 149.438 99.1
recursive-structured-workload branch 1 3.983698 149.438 99.1
recursive-structured-workload branch 1 4.017584 149.438 100.0
recursive-structured-workload branch 1 4.051377 149.438 100.0
recursive-structured-workload branch 1 4.084898 149.438 100.0
recursive-structured-workload branch 1 4.116125 149.438 100.0
recursive-structured-workload branch 1 4.149507 149.438 99.4
recursive-structured-workload branch 1 4.18197 149.438 99.4
recursive-structured-workload branch 1 4.215021 149.438 99.4
recursive-structured-workload branch 1 4.244937 149.828 99.4
recursive-structured-workload branch 1 4.274638 150.219 98.1
recursive-structured-workload branch 1 4.308876 150.219 98.1
recursive-structured-workload branch 1 4.342719 151.578 98.1
recursive-structured-workload branch 1 4.376818 152.031 98.8
recursive-structured-workload branch 1 4.410957 152.031 98.8
recursive-structured-workload branch 1 4.445461 152.031 98.8
recursive-structured-workload branch 1 4.47953 152.031 98.8
recursive-structured-workload branch 1 4.513399 152.031 99.6
recursive-structured-workload branch 1 4.54732 152.031 99.6
recursive-structured-workload branch 1 4.580916 152.031 99.6
recursive-structured-workload branch 1 4.614813 152.031 99.6
recursive-structured-workload branch 1 4.648741 152.031 100.0
recursive-structured-workload branch 1 4.682868 152.031 100.0
recursive-structured-workload branch 1 4.716939 152.422 100.0
recursive-structured-workload branch 1 4.750858 152.812 99.1
recursive-structured-workload branch 1 4.780468 152.938 99.1
recursive-structured-workload branch 1 4.814698 154.188 99.1
recursive-structured-workload branch 1 4.848795 154.609 99.1
recursive-structured-workload branch 1 4.882986 154.609 100.0
recursive-structured-workload branch 1 4.917202 154.609 100.0
recursive-structured-workload branch 1 4.949744 154.609 100.0
recursive-structured-workload branch 1 4.982812 154.609 100.0
recursive-structured-workload branch 1 5.016282 154.609 100.0
recursive-structured-workload branch 1 5.049119 154.609 100.0
recursive-structured-workload branch 1 5.080706 154.609 100.0
recursive-structured-workload branch 1 5.121577 154.609 97.0
recursive-structured-workload branch 1 5.167382 154.609 97.0
recursive-structured-workload branch 1 5.201296 154.609 97.0
recursive-structured-workload branch 1 5.235491 154.609 97.0
recursive-structured-workload branch 1 5.26946 154.609 97.6
recursive-structured-workload branch 1 5.300858 141.594 97.6
recursive-structured-workload branch 1 5.364339 120.219 97.6
recursive-structured-workload branch 1 5.39859 119.422 92.6
recursive-structured-workload branch 1 5.433358 120.922 92.6
recursive-structured-workload branch 1 5.467508 109.594 92.6
recursive-structured-workload branch 1 5.503315 105.406 95.4
recursive-structured-workload branch 1 5.538402 105.406 95.4
recursive-structured-workload branch 1 5.572415 105.406 95.4
recursive-structured-workload branch 1 5.606552 105.406 95.4
recursive-structured-workload branch 1 5.640557 106.625 96.5
recursive-structured-workload branch 1 5.674225 108.156 96.5
recursive-structured-workload branch 1 5.703495 97.703 96.5
recursive-structured-workload branch 1 5.7369 97.703 96.5
recursive-structured-workload branch 1 5.770956 97.734 98.7
recursive-structured-workload branch 1 5.805383 97.797 98.7
recursive-structured-workload branch 1 5.840355 87.109 98.7
recursive-structured-workload branch 1 5.874682 87.109 97.3
recursive-structured-workload branch 1 5.904427 87.109 97.3
recursive-structured-workload branch 1 5.93866 83.141 97.3
recursive-structured-workload branch 1 5.973082 83.531 97.3
recursive-structured-workload branch 1 6.007473 83.531 98.2
recursive-structured-workload branch 1 6.04146 77.328 98.2
recursive-structured-workload branch 1 6.075385 77.328 98.2
recursive-structured-workload branch 1 6.109805 78.109 98.2
recursive-structured-workload branch 1 6.143784 78.391 98.8
recursive-structured-workload branch 1 6.172763 78.906 98.8
recursive-structured-workload branch 1 6.208194 79.766 98.8
recursive-structured-workload branch 1 6.239745 79.766 98.8
recursive-structured-workload branch 1 6.271727 79.766 99.1
recursive-structured-workload branch 1 6.305789 79.766 99.1
recursive-structured-workload branch 1 6.339787 79.766 99.1
recursive-structured-workload branch 1 6.373854 79.766 98.9
recursive-structured-workload branch 1 6.408944 79.766 98.9
recursive-structured-workload branch 1 6.444218 79.766 98.9
recursive-structured-workload branch 1 6.481877 79.766 98.9
recursive-structured-workload branch 1 6.511023 79.766 97.7
recursive-structured-workload branch 1 6.545932 79.766 97.7
recursive-structured-workload branch 1 6.579951 79.766 97.7
recursive-structured-workload branch 1 6.613815 79.766 97.7
recursive-structured-workload branch 1 6.645883 79.766 99.1
recursive-structured-workload branch 1 6.680099 79.766 99.1
recursive-structured-workload branch 1 6.714267 80.031 99.1
recursive-structured-workload branch 1 6.748462 80.281 99.1
recursive-structured-workload branch 1 6.782865 80.281 98.1
recursive-structured-workload branch 1 6.814722 80.281 98.1
recursive-structured-workload branch 1 6.847235 80.281 98.1
recursive-structured-workload branch 1 6.881388 80.281 99.0
recursive-structured-workload branch 1 6.91473 80.281 99.0
recursive-structured-workload branch 1 6.949983 80.281 99.0
recursive-structured-workload branch 1 6.983911 80.281 99.0
recursive-structured-workload branch 1 7.018001 80.281 98.8
recursive-structured-workload branch 1 7.050648 80.281 98.8
recursive-structured-workload branch 1 7.085184 80.281 98.8
recursive-structured-workload branch 1 7.119701 80.281 98.8
recursive-structured-workload branch 1 7.155732 80.281 98.6
recursive-structured-workload branch 1 7.189803 80.281 98.6
recursive-structured-workload branch 1 7.224056 80.281 98.6
recursive-structured-workload branch 1 7.258384 80.281 99.7
recursive-structured-workload branch 1 7.294122 80.281 99.7
recursive-structured-workload branch 1 7.323121 80.281 99.7
recursive-structured-workload branch 1 7.353676 80.281 99.7
recursive-structured-workload branch 1 7.38739 80.281 99.4
recursive-structured-workload branch 1 7.421447 80.281 99.4
recursive-structured-workload branch 1 7.459082 80.281 99.4
recursive-structured-workload branch 1 7.492956 80.531 99.4
recursive-structured-workload branch 1 7.527013 80.531 99.1
recursive-structured-workload branch 1 7.561229 80.531 99.1
recursive-structured-workload branch 1 7.5955 80.531 99.1
recursive-structured-workload branch 1 7.629747 80.531 100.0
recursive-structured-workload branch 1 7.663783 80.531 100.0
recursive-structured-workload branch 1 7.697935 80.531 100.0
recursive-structured-workload branch 1 7.731524 80.531 100.0
recursive-structured-workload branch 1 7.768673 80.531 98.9
recursive-structured-workload branch 1 7.805387 78.5 98.9
recursive-structured-workload branch 1 7.896348 78.5 79.4
recursive-structured-workload branch 1 7.945063 78.5 79.4
recursive-structured-workload branch 1 7.978787 78.5 79.4
recursive-structured-workload branch 1 8.013034 78.5 80.6
recursive-structured-workload branch 1 8.046683 78.5 80.6
recursive-structured-workload branch 1 8.080654 78.5 80.6
recursive-structured-workload branch 1 8.114362 78.641 80.6
recursive-structured-workload branch 1 8.149506 78.641 85.6
recursive-structured-workload branch 1 8.17866 78.641 85.6
recursive-structured-workload branch 1 8.214716 78.641 85.6
recursive-structured-workload branch 1 8.244245 78.641 85.6
recursive-structured-workload branch 1 8.278257 78.641 92.2
recursive-structured-workload branch 1 8.312589 78.641 92.2
recursive-structured-workload branch 1 8.347137 78.641 92.2
recursive-structured-workload branch 1 8.376732 78.641 92.7
recursive-structured-workload branch 1 8.410676 78.641 92.7
recursive-structured-workload branch 1 8.440125 78.641 92.7
recursive-structured-workload branch 1 8.472356 78.641 92.7
recursive-structured-workload branch 1 8.506481 78.641 95.5
recursive-structured-workload branch 1 8.544607 78.844 95.5
recursive-structured-workload branch 1 8.578086 79.281 95.5
recursive-structured-workload branch 1 8.611944 79.281 95.5
recursive-structured-workload branch 1 8.645925 79.281 97.0
recursive-structured-workload branch 1 8.678281 79.281 97.0
recursive-structured-workload branch 1 8.707768 80.812 97.0
recursive-structured-workload branch 1 8.739751 81.047 97.0
recursive-structured-workload branch 1 8.773951 81.047 97.9
recursive-structured-workload branch 1 8.808033 81.047 97.9
recursive-structured-workload branch 1 8.840102 81.047 97.9
recursive-structured-workload branch 1 8.870894 81.047 97.9
recursive-structured-workload branch 1 8.902435 81.047 98.2
recursive-structured-workload branch 1 8.936363 81.047 98.2
recursive-structured-workload branch 1 8.970369 81.047 98.2
recursive-structured-workload branch 1 9.004431 81.047 98.8
recursive-structured-workload branch 1 9.03911 81.047 98.8
recursive-structured-workload branch 1 9.072742 81.391 98.8
recursive-structured-workload branch 1 9.106418 81.391 98.8
recursive-structured-workload branch 1 9.139679 81.625 99.7
recursive-structured-workload branch 1 9.173055 81.625 99.7
recursive-structured-workload branch 1 9.204265 81.625 99.7
recursive-structured-workload branch 1 9.237878 81.625 99.7
recursive-structured-workload branch 1 9.271348 81.625 100.0
recursive-structured-workload branch 1 9.304864 81.75 100.0
recursive-structured-workload branch 1 9.337175 81.75 100.0
recursive-structured-workload branch 1 9.371342 81.75 100.0
recursive-structured-workload branch 1 9.405391 81.75 99.3
recursive-structured-workload branch 1 9.437101 81.75 99.3
recursive-structured-workload branch 1 9.471004 82.391 99.3
recursive-structured-workload branch 1 9.505086 82.766 99.3
recursive-structured-workload branch 1 9.538835 82.766 99.3
recursive-structured-workload branch 1 9.570949 82.766 99.3
recursive-structured-workload branch 1 9.603575 83.016 99.3
recursive-structured-workload branch 1 9.637436 83.016 99.2
recursive-structured-workload branch 1 9.67152 83.016 99.2
recursive-structured-workload branch 1 9.705482 83.016 99.2
recursive-structured-workload branch 1 9.739296 83.016 99.2
recursive-structured-workload branch 1 9.773179 83.016 100.0
recursive-structured-workload branch 1 9.807127 83.141 100.0
recursive-structured-workload branch 1 9.840226 83.906 100.0
recursive-structured-workload branch 1 9.871292 83.906 100.0
recursive-structured-workload branch 1 9.90598 83.844 99.4
recursive-structured-workload branch 1 9.941587 84.094 99.4
recursive-structured-workload branch 1 9.97258 84.094 99.4
recursive-structured-workload branch 1 10.01392 84.094 98.7
recursive-structured-workload branch 1 10.046997 84.094 98.7
recursive-structured-workload branch 1 10.081234 84.094 98.7
recursive-structured-workload branch 1 10.115888 84.094 98.7
recursive-structured-workload branch 1 10.147238 84.094 98.1
recursive-structured-workload branch 1 10.181984 84.609 98.1
recursive-structured-workload branch 1 10.216087 85.297 98.1
recursive-structured-workload branch 1 10.247675 85.312 98.1
recursive-structured-workload branch 1 10.28208 86.953 98.0
recursive-structured-workload branch 1 10.321592 87.734 98.0
recursive-structured-workload branch 1 10.351759 87.734 98.0
recursive-structured-workload branch 1 10.382527 87.625 97.6
recursive-structured-workload branch 1 10.418481 87.875 97.6
recursive-structured-workload branch 1 10.452426 87.875 97.6
recursive-structured-workload branch 1 10.486516 87.875 97.6
recursive-structured-workload branch 1 10.520657 87.875 98.5
recursive-structured-workload branch 1 10.556382 87.875 98.5
recursive-structured-workload branch 1 10.590358 87.875 98.5
recursive-structured-workload branch 1 10.633477 88.391 99.3
recursive-structured-workload branch 1 10.667506 88.797 99.3
recursive-structured-workload branch 1 10.7017 89.438 99.3
recursive-structured-workload branch 1 10.745615 90.859 99.3
recursive-structured-workload branch 1 10.779367 91.547 99.5
recursive-structured-workload branch 1 10.813221 91.547 99.5
recursive-structured-workload branch 1 10.848085 91.547 99.5
recursive-structured-workload branch 1 10.878869 91.547 98.4
recursive-structured-workload branch 1 10.912756 91.547 98.4
recursive-structured-workload branch 1 10.948917 91.609 98.4
recursive-structured-workload branch 1 10.982873 91.625 98.4
recursive-structured-workload branch 1 11.014706 91.625 98.6
recursive-structured-workload branch 1 11.04632 91.625 98.6
recursive-structured-workload branch 1 11.080259 91.625 98.6
recursive-structured-workload branch 1 11.113973 91.641 98.6
recursive-structured-workload branch 1 11.145559 91.656 100.0
recursive-structured-workload branch 1 11.179288 91.656 100.0
recursive-structured-workload branch 1 11.213025 91.656 100.0
recursive-structured-workload branch 1 11.241871 91.656 100.0
recursive-structured-workload branch 1 11.27561 91.656 100.0
recursive-structured-workload branch 1 11.309846 91.656 100.0
recursive-structured-workload branch 1 11.343617 91.656 100.0
recursive-structured-workload branch 1 11.378507 91.656 98.6
recursive-structured-workload branch 1 11.412959 91.562 98.6
recursive-structured-workload branch 1 11.448891 91.562 98.6
recursive-structured-workload branch 1 11.480626 91.562 98.6
recursive-structured-workload branch 1 11.514787 91.562 99.5
recursive-structured-workload branch 1 11.54609 91.75 99.5
recursive-structured-workload branch 1 11.580142 91.75 99.5
recursive-structured-workload branch 1 11.61428 91.75 99.5
recursive-structured-workload branch 1 11.645686 91.75 98.5
recursive-structured-workload branch 1 11.679431 91.75 98.5
recursive-structured-workload branch 1 11.715191 91.75 98.5
recursive-structured-workload branch 1 11.752114 91.75 99.5
recursive-structured-workload branch 1 11.794863 91.75 99.5
recursive-structured-workload branch 1 11.833967 91.672 99.5
recursive-structured-workload branch 1 11.870005 91.672 99.5
recursive-structured-workload branch 1 11.902824 91.672 98.5
recursive-structured-workload branch 1 11.936677 91.672 98.5
recursive-structured-workload branch 1 11.970192 91.672 98.5
recursive-structured-workload branch 1 12.004371 91.672 99.1
recursive-structured-workload branch 1 12.038552 91.672 99.1
recursive-structured-workload branch 1 12.071981 91.672 99.1
recursive-structured-workload branch 1 12.105449 91.672 99.1
recursive-structured-workload branch 1 12.140486 91.672 100.0
recursive-structured-workload branch 1 12.17304 91.672 100.0
recursive-structured-workload branch 1 12.206895 91.672 100.0
recursive-structured-workload branch 1 12.241422 91.672 100.0
recursive-structured-workload branch 1 12.275435 91.672 98.9
recursive-structured-workload branch 1 12.310961 91.672 98.9
recursive-structured-workload branch 1 12.345427 91.672 98.9
recursive-structured-workload branch 1 12.378588 91.672 98.9
recursive-structured-workload branch 1 12.41257 91.672 100.0
recursive-structured-workload branch 1 12.446639 91.672 100.0
recursive-structured-workload branch 1 12.478021 91.672 100.0
recursive-structured-workload branch 1 12.512109 91.672 98.6
recursive-structured-workload branch 1 12.546023 91.672 98.6
recursive-structured-workload branch 1 12.581936 91.672 98.6
recursive-structured-workload branch 1 12.615924 91.766 98.6
recursive-structured-workload branch 1 12.649871 91.781 99.3
recursive-structured-workload branch 1 12.683582 91.781 99.3
recursive-structured-workload branch 1 12.714461 91.781 99.3
recursive-structured-workload branch 1 12.743901 91.781 99.3
recursive-structured-workload branch 1 12.775091 91.781 100.0
recursive-structured-workload branch 1 12.808882 91.781 100.0
recursive-structured-workload branch 1 12.846288 91.781 100.0
recursive-structured-workload branch 1 12.87671 91.781 100.0
recursive-structured-workload branch 1 12.910837 91.781 99.6
recursive-structured-workload branch 1 12.940506 91.781 99.6
recursive-structured-workload branch 1 12.973266 91.781 99.6
recursive-structured-workload branch 1 13.006578 91.781 98.8
recursive-structured-workload branch 1 13.041387 91.781 98.8
recursive-structured-workload branch 1 13.07492 92.109 98.8
recursive-structured-workload branch 1 13.109834 92.109 98.8
recursive-structured-workload branch 1 13.145531 92.109 99.6
recursive-structured-workload branch 1 13.174451 92.109 99.6
recursive-structured-workload branch 1 13.210508 119.547 99.6
recursive-structured-workload branch 2 0.000578 0.172 0.0
recursive-structured-workload branch 2 0.034594 29.859 2.0
recursive-structured-workload branch 2 0.068255 46.453 2.0
recursive-structured-workload branch 2 0.102197 88.469 2.0
recursive-structured-workload branch 2 0.133675 97.078 38.5
recursive-structured-workload branch 2 0.167624 103.062 38.5
recursive-structured-workload branch 2 0.201462 107.641 38.5
recursive-structured-workload branch 2 0.23464 108.453 38.5
recursive-structured-workload branch 2 0.268278 109.547 60.4
recursive-structured-workload branch 2 0.301971 112.156 60.4
recursive-structured-workload branch 2 0.336612 112.172 60.4
recursive-structured-workload branch 2 0.371574 112.188 60.4
recursive-structured-workload branch 2 0.405014 112.234 77.1
recursive-structured-workload branch 2 0.438567 112.281 77.1
recursive-structured-workload branch 2 0.47238 112.359 77.1
recursive-structured-workload branch 2 0.506062 112.406 83.6
recursive-structured-workload branch 2 0.539637 112.484 83.6
recursive-structured-workload branch 2 0.570909 112.578 83.6
recursive-structured-workload branch 2 0.604589 112.656 83.6
recursive-structured-workload branch 2 0.638228 112.766 90.0
recursive-structured-workload branch 2 0.672121 112.859 90.0
recursive-structured-workload branch 2 0.705837 115.781 90.0
recursive-structured-workload branch 2 0.739175 119.531 90.0
recursive-structured-workload branch 2 0.773052 123.688 94.3
recursive-structured-workload branch 2 0.801824 127.938 94.3
recursive-structured-workload branch 2 0.835585 132.484 94.3
recursive-structured-workload branch 2 0.866833 136.375 94.3
recursive-structured-workload branch 2 0.900495 141.688 95.5
recursive-structured-workload branch 2 0.934347 144.5 95.5
recursive-structured-workload branch 2 0.968541 145.484 95.5
recursive-structured-workload branch 2 1.002158 145.922 95.5
recursive-structured-workload branch 2 1.035756 145.922 95.4
recursive-structured-workload branch 2 1.068483 145.922 95.4
recursive-structured-workload branch 2 1.102006 146.125 95.4
recursive-structured-workload branch 2 1.135646 146.906 97.2
recursive-structured-workload branch 2 1.168168 146.906 97.2
recursive-structured-workload branch 2 1.199659 146.906 97.2
recursive-structured-workload branch 2 1.232545 146.906 97.2
recursive-structured-workload branch 2 1.264562 147.047 98.9
recursive-structured-workload branch 2 1.297639 147.047 98.9
recursive-structured-workload branch 2 1.331582 147.047 98.9
recursive-structured-workload branch 2 1.365356 147.047 98.9
recursive-structured-workload branch 2 1.399214 147.047 99.2
recursive-structured-workload branch 2 1.432738 147.047 99.2
recursive-structured-workload branch 2 1.466256 147.047 99.2
recursive-structured-workload branch 2 1.499916 147.047 97.9
recursive-structured-workload branch 2 1.537984 147.047 97.9
recursive-structured-workload branch 2 1.572032 147.047 97.9
recursive-structured-workload branch 2 1.614035 147.047 97.9
recursive-structured-workload branch 2 1.649182 147.047 98.4
recursive-structured-workload branch 2 1.68476 147.047 98.4
recursive-structured-workload branch 2 1.72222 147.047 98.4
recursive-structured-workload branch 2 1.756631 147.172 97.2
recursive-structured-workload branch 2 1.786686 147.188 97.2
recursive-structured-workload branch 2 1.817503 147.188 97.2
recursive-structured-workload branch 2 1.851533 147.188 97.2
recursive-structured-workload branch 2 1.884488 147.188 97.9
recursive-structured-workload branch 2 1.916792 147.188 97.9
recursive-structured-workload branch 2 1.950127 147.188 97.9
recursive-structured-workload branch 2 1.984223 147.188 97.9
recursive-structured-workload branch 2 2.018261 147.188 98.5
recursive-structured-workload branch 2 2.050142 147.188 98.5
recursive-structured-workload branch 2 2.083754 147.188 98.5
recursive-structured-workload branch 2 2.116815 147.188 98.5
recursive-structured-workload branch 2 2.154413 147.188 100.0
recursive-structured-workload branch 2 2.188283 147.188 100.0
recursive-structured-workload branch 2 2.222299 147.188 100.0
recursive-structured-workload branch 2 2.255853 147.188 99.0
recursive-structured-workload branch 2 2.286402 147.188 99.0
recursive-structured-workload branch 2 2.320712 147.188 99.0
recursive-structured-workload branch 2 2.356701 147.188 99.0
recursive-structured-workload branch 2 2.390794 147.188 98.6
recursive-structured-workload branch 2 2.424843 147.188 98.6
recursive-structured-workload branch 2 2.458469 147.188 98.6
recursive-structured-workload branch 2 2.492952 147.188 98.6
recursive-structured-workload branch 2 2.527065 147.188 98.8
recursive-structured-workload branch 2 2.564216 147.203 98.8
recursive-structured-workload branch 2 2.598196 147.203 98.8
recursive-structured-workload branch 2 2.627401 147.203 98.8
recursive-structured-workload branch 2 2.658467 147.203 99.4
recursive-structured-workload branch 2 2.692244 147.203 99.4
recursive-structured-workload branch 2 2.725193 147.203 99.4
recursive-structured-workload branch 2 2.760146 147.203 98.8
recursive-structured-workload branch 2 2.791943 116.953 98.8
recursive-structured-workload branch 2 2.891886 114.484 77.4
recursive-structured-workload branch 2 2.925168 114.484 77.4
recursive-structured-workload branch 2 2.959851 114.484 77.4
recursive-structured-workload branch 2 2.991864 107.734 77.4
recursive-structured-workload branch 2 3.028948 108.031 86.5
recursive-structured-workload branch 2 3.063775 99.297 86.5
recursive-structured-workload branch 2 3.098076 99.297 86.5
recursive-structured-workload branch 2 3.13286 93.312 88.8
recursive-structured-workload branch 2 3.169389 93.312 88.8
recursive-structured-workload branch 2 3.208463 91.734 88.8
recursive-structured-workload branch 2 3.240833 91.672 88.8
recursive-structured-workload branch 2 3.272877 91.672 92.7
recursive-structured-workload branch 2 3.306388 90.141 92.7
recursive-structured-workload branch 2 3.340362 90.141 92.7
recursive-structured-workload branch 2 3.375144 90.281 92.7
recursive-structured-workload branch 2 3.409176 90.375 95.4
recursive-structured-workload branch 2 3.443711 90.891 95.4
recursive-structured-workload branch 2 3.477713 91.422 95.4
recursive-structured-workload branch 2 3.513796 91.422 96.9
recursive-structured-workload branch 2 3.543118 91.422 96.9
recursive-structured-workload branch 2 3.57381 91.734 96.9
recursive-structured-workload branch 2 3.612045 92.188 96.9
recursive-structured-workload branch 2 3.645821 92.25 97.6
recursive-structured-workload branch 2 3.678332 92.25 97.6
recursive-structured-workload branch 2 3.71205 92.25 97.6
recursive-structured-workload branch 2 3.742141 92.281 97.6
recursive-structured-workload branch 2 3.776189 92.297 99.0
recursive-structured-workload branch 2 3.808766 92.297 99.0
recursive-structured-workload branch 2 3.842973 92.297 99.0
recursive-structured-workload branch 2 3.876473 92.297 99.0
recursive-structured-workload branch 2 3.910622 92.297 99.3
recursive-structured-workload branch 2 3.943343 92.297 99.3
recursive-structured-workload branch 2 3.977591 92.297 99.3
recursive-structured-workload branch 2 4.008216 92.297 99.2
recursive-structured-workload branch 2 4.042198 92.688 99.2
recursive-structured-workload branch 2 4.076341 92.688 99.2
recursive-structured-workload branch 2 4.108443 93.109 99.2
recursive-structured-workload branch 2 4.140042 93.109 99.4
recursive-structured-workload branch 2 4.170095 93.109 99.4
recursive-structured-workload branch 2 4.200132 93.109 99.4
recursive-structured-workload branch 2 4.233442 93.109 99.4
recursive-structured-workload branch 2 4.267018 93.109 98.7
recursive-structured-workload branch 2 4.30087 93.109 98.7
recursive-structured-workload branch 2 4.334712 93.109 98.7
recursive-structured-workload branch 2 4.366217 93.109 98.7
recursive-structured-workload branch 2 4.40027 93.141 99.6
recursive-structured-workload branch 2 4.437962 93.531 99.6
recursive-structured-workload branch 2 4.471781 93.953 99.6
recursive-structured-workload branch 2 4.508462 93.969 99.8
recursive-structured-workload branch 2 4.542138 95.453 99.8
recursive-structured-workload branch 2 4.576827 95.875 99.8
recursive-structured-workload branch 2 4.610685 95.875 99.8
recursive-structured-workload branch 2 4.644511 95.891 100.0
recursive-structured-workload branch 2 4.675152 95.891 100.0
recursive-structured-workload branch 2 4.714909 95.891 100.0
recursive-structured-workload branch 2 4.7488 95.891 100.0
recursive-structured-workload branch 2 4.778056 95.891 98.8
recursive-structured-workload branch 2 4.811581 95.891 98.8
recursive-structured-workload branch 2 4.845006 95.891 98.8
recursive-structured-workload branch 2 4.874149 96.281 98.8
recursive-structured-workload branch 2 4.907895 96.672 99.9
recursive-structured-workload branch 2 4.941604 96.672 99.9
recursive-structured-workload branch 2 4.975115 98.031 99.9
recursive-structured-workload branch 2 5.009221 98.484 99.3
recursive-structured-workload branch 2 5.040338 98.484 99.3
recursive-structured-workload branch 2 5.074255 98.484 99.3
recursive-structured-workload branch 2 5.107482 98.484 99.3
recursive-structured-workload branch 2 5.136938 98.484 99.8
recursive-structured-workload branch 2 5.170523 98.484 99.8
recursive-structured-workload branch 2 5.204143 98.484 99.8
recursive-structured-workload branch 2 5.238151 98.484 99.8
recursive-structured-workload branch 2 5.273734 98.484 99.0
recursive-structured-workload branch 2 5.307497 98.484 99.0
recursive-structured-workload branch 2 5.340388 98.484 99.0
recursive-structured-workload branch 2 5.374144 98.484 99.0
recursive-structured-workload branch 2 5.408316 98.484 99.1
recursive-structured-workload branch 2 5.441791 98.484 99.1
recursive-structured-workload branch 2 5.475583 98.875 99.1
recursive-structured-workload branch 2 5.510117 99.266 99.6
recursive-structured-workload branch 2 5.544339 99.266 99.6
recursive-structured-workload branch 2 5.579623 100.641 99.6
recursive-structured-workload branch 2 5.613846 101.094 99.6
recursive-structured-workload branch 2 5.647481 101.156 99.3
recursive-structured-workload branch 2 5.680913 101.156 99.3
recursive-structured-workload branch 2 5.716372 101.156 99.3
recursive-structured-workload branch 2 5.748917 101.156 99.3
recursive-structured-workload branch 2 5.778942 101.625 100.0
recursive-structured-workload branch 2 5.812554 101.656 100.0
recursive-structured-workload branch 2 5.846171 101.656 100.0
recursive-structured-workload branch 2 5.875533 101.656 100.0
recursive-structured-workload branch 2 5.909605 101.672 99.7
recursive-structured-workload branch 2 5.943182 101.672 99.7
recursive-structured-workload branch 2 5.976722 101.672 99.7
recursive-structured-workload branch 2 6.006679 101.672 98.5
recursive-structured-workload branch 2 6.040335 101.672 98.5
recursive-structured-workload branch 2 6.073616 101.781 98.5
recursive-structured-workload branch 2 6.106039 102.062 98.5
recursive-structured-workload branch 2 6.13958 102.062 100.0
recursive-structured-workload branch 2 6.168503 102.062 100.0
recursive-structured-workload branch 2 6.204343 102.062 100.0
recursive-structured-workload branch 2 6.236672 102.078 100.0
recursive-structured-workload branch 2 6.270555 102.078 99.4
recursive-structured-workload branch 2 6.30523 102.078 99.4
recursive-structured-workload branch 2 6.339439 102.078 99.4
recursive-structured-workload branch 2 6.369307 102.078 99.4
recursive-structured-workload branch 2 6.405671 102.078 98.5
recursive-structured-workload branch 2 6.439684 102.078 98.5
recursive-structured-workload branch 2 6.473289 102.078 98.5
recursive-structured-workload branch 2 6.50698 102.078 99.0
recursive-structured-workload branch 2 6.540664 102.078 99.0
recursive-structured-workload branch 2 6.57533 102.078 99.0
recursive-structured-workload branch 2 6.609051 102.078 99.0
recursive-structured-workload branch 2 6.641277 102.078 100.0
recursive-structured-workload branch 2 6.67519 102.078 100.0
recursive-structured-workload branch 2 6.708875 102.078 100.0
recursive-structured-workload branch 2 6.741765 102.078 100.0
recursive-structured-workload branch 2 6.775636 102.078 99.4
recursive-structured-workload branch 2 6.811671 102.078 99.4
recursive-structured-workload branch 2 6.845622 102.078 99.4
recursive-structured-workload branch 2 6.879551 102.078 99.4
recursive-structured-workload branch 2 6.913321 102.078 99.5
recursive-structured-workload branch 2 6.947076 102.078 99.5
recursive-structured-workload branch 2 6.981 102.078 99.5
recursive-structured-workload branch 2 7.01487 102.078 100.0
recursive-structured-workload branch 2 7.048214 102.078 100.0
recursive-structured-workload branch 2 7.081877 102.078 100.0
recursive-structured-workload branch 2 7.115683 102.078 100.0
recursive-structured-workload branch 2 7.154474 102.078 99.4
recursive-structured-workload branch 2 7.183432 102.047 99.4
recursive-structured-workload branch 2 7.217289 102.047 99.4
recursive-structured-workload branch 2 7.251267 102.047 99.4
recursive-structured-workload branch 2 7.287645 102.047 99.4
recursive-structured-workload branch 2 7.321485 102.047 99.4
recursive-structured-workload branch 2 7.355289 102.047 99.4
recursive-structured-workload branch 2 7.38905 102.047 99.3
recursive-structured-workload branch 2 7.422212 102.047 99.3
recursive-structured-workload branch 2 7.454975 102.047 99.3
recursive-structured-workload branch 2 7.524204 99.609 86.4
recursive-structured-workload branch 2 7.558543 99.609 86.4
recursive-structured-workload branch 2 7.596016 99.609 86.4
recursive-structured-workload branch 2 7.631404 99.609 86.6
recursive-structured-workload branch 2 7.66303 99.609 86.6
recursive-structured-workload branch 2 7.699004 99.609 86.6
recursive-structured-workload branch 2 7.733455 99.609 86.6
recursive-structured-workload branch 2 7.764172 99.609 90.5
recursive-structured-workload branch 2 7.796536 99.609 90.5
recursive-structured-workload branch 2 7.829454 99.609 90.5
recursive-structured-workload branch 2 7.863525 99.609 90.5
recursive-structured-workload branch 2 7.897565 99.609 94.1
recursive-structured-workload branch 2 7.93007 99.609 94.1
recursive-structured-workload branch 2 7.964368 99.609 94.1
recursive-structured-workload branch 2 7.998156 99.609 94.1
recursive-structured-workload branch 2 8.031825 99.609 97.9
recursive-structured-workload branch 2 8.064929 99.609 97.9
recursive-structured-workload branch 2 8.099027 99.609 97.9
recursive-structured-workload branch 2 8.132912 99.609 96.7
recursive-structured-workload branch 2 8.167222 99.609 96.7
recursive-structured-workload branch 2 8.201117 99.609 96.7
recursive-structured-workload branch 2 8.234899 99.609 96.7
recursive-structured-workload branch 2 8.269113 99.609 98.6
recursive-structured-workload branch 2 8.29927 99.609 98.6
recursive-structured-workload branch 2 8.328487 99.609 98.6
recursive-structured-workload branch 2 8.362941 99.609 98.6
recursive-structured-workload branch 2 8.392157 99.422 99.6
recursive-structured-workload branch 2 8.431155 99.422 99.6
recursive-structured-workload branch 2 8.466344 99.422 99.6
recursive-structured-workload branch 2 8.500106 99.422 99.6
recursive-structured-workload branch 2 8.533772 99.422 98.4
recursive-structured-workload branch 2 8.567681 99.422 98.4
recursive-structured-workload branch 2 8.602764 99.422 98.4
recursive-structured-workload branch 2 8.635987 99.812 99.5
recursive-structured-workload branch 2 8.665155 99.812 99.5
recursive-structured-workload branch 2 8.696491 99.812 99.5
recursive-structured-workload branch 2 8.73041 101.062 99.5
recursive-structured-workload branch 2 8.766778 101.062 100.0
recursive-structured-workload branch 2 8.800554 101.078 100.0
recursive-structured-workload branch 2 8.830815 101.078 100.0
recursive-structured-workload branch 2 8.864648 101.078 100.0
recursive-structured-workload branch 2 8.896124 101.078 99.2
recursive-structured-workload branch 2 8.929818 101.078 99.2
recursive-structured-workload branch 2 8.963267 101.078 99.2
recursive-structured-workload branch 2 8.995481 101.078 99.2
recursive-structured-workload branch 2 9.0277 101.078 99.0
recursive-structured-workload branch 2 9.061637 101.078 99.0
recursive-structured-workload branch 2 9.095643 101.5 99.0
recursive-structured-workload branch 2 9.129821 101.5 99.0
recursive-structured-workload branch 2 9.161454 101.562 99.6
recursive-structured-workload branch 2 9.195499 101.562 99.6
recursive-structured-workload branch 2 9.229301 101.562 99.6
recursive-structured-workload branch 2 9.260396 101.562 99.1
recursive-structured-workload branch 2 9.291822 101.562 99.1
recursive-structured-workload branch 2 9.325701 101.562 99.1
recursive-structured-workload branch 2 9.359409 101.562 99.1
recursive-structured-workload branch 2 9.394826 101.531 100.0
recursive-structured-workload branch 2 9.432677 101.531 100.0
recursive-structured-workload branch 2 9.469089 101.453 100.0
recursive-structured-workload branch 2 9.50418 101.875 100.0
recursive-structured-workload branch 2 9.533454 101.875 99.2
recursive-structured-workload branch 2 9.570635 101.875 99.2
recursive-structured-workload branch 2 9.604458 101.891 99.2
recursive-structured-workload branch 2 9.640351 101.891 100.0
recursive-structured-workload branch 2 9.675854 101.891 100.0
recursive-structured-workload branch 2 9.709744 101.891 100.0
recursive-structured-workload branch 2 9.748174 101.891 100.0
recursive-structured-workload branch 2 9.781901 101.891 99.2
recursive-structured-workload branch 2 9.819856 102.297 99.2
recursive-structured-workload branch 2 9.855466 102.688 99.2
recursive-structured-workload branch 2 9.890561 102.688 99.3
recursive-structured-workload branch 2 9.948733 102.688 99.3
recursive-structured-workload branch 2 9.981862 102.688 99.3
recursive-structured-workload branch 2 10.014726 102.688 98.9
recursive-structured-workload branch 2 10.050545 102.688 98.9
recursive-structured-workload branch 2 10.086295 102.688 98.9
recursive-structured-workload branch 2 10.119812 102.688 98.9
recursive-structured-workload branch 2 10.153828 102.688 100.0
recursive-structured-workload branch 2 10.189258 103.078 100.0
recursive-structured-workload branch 2 10.22269 103.469 100.0
recursive-structured-workload branch 2 10.257387 104.859 100.0
recursive-structured-workload branch 2 10.291289 105.281 99.0
recursive-structured-workload branch 2 10.325266 105.312 99.0
recursive-structured-workload branch 2 10.380628 105.328 99.0
recursive-structured-workload branch 2 10.410408 105.328 99.0
recursive-structured-workload branch 2 10.443079 105.328 99.0
recursive-structured-workload branch 2 10.476786 105.328 99.0
recursive-structured-workload branch 2 10.510968 102.297 99.0
recursive-structured-workload branch 2 10.545006 102.297 99.0
recursive-structured-workload branch 2 10.578679 97.844 99.0
recursive-structured-workload branch 2 10.61274 97.844 99.0
recursive-structured-workload branch 2 10.646553 98.234 100.0
recursive-structured-workload branch 2 10.680064 97.531 100.0
recursive-structured-workload branch 2 10.714201 91.375 100.0
recursive-structured-workload branch 2 10.750319 70.484 100.0
recursive-structured-workload branch 2 10.783417 71.297 100.0
recursive-structured-workload branch 2 10.8147 71.297 100.0
recursive-structured-workload branch 2 10.845276 65.688 100.0
recursive-structured-workload branch 2 10.878817 62.25 100.0
recursive-structured-workload branch 2 10.91252 62.25 99.4
recursive-structured-workload branch 2 10.946328 62.922 99.4
recursive-structured-workload branch 2 10.982525 63.234 99.4
recursive-structured-workload branch 2 11.016237 63.234 100.0
recursive-structured-workload branch 2 11.048992 61.609 100.0
recursive-structured-workload branch 2 11.082576 61.609 100.0
recursive-structured-workload branch 2 11.115817 61.641 100.0
recursive-structured-workload branch 2 11.149239 61.656 99.6
recursive-structured-workload branch 2 11.18247 59.984 99.6
recursive-structured-workload branch 2 11.216167 59.984 99.6
recursive-structured-workload branch 2 11.250209 59.984 99.6
recursive-structured-workload branch 2 11.284091 59.984 98.7
recursive-structured-workload branch 2 11.318572 60.0 98.7
recursive-structured-workload branch 2 11.353521 60.0 98.7
recursive-structured-workload branch 2 11.387322 56.391 99.5
recursive-structured-workload branch 2 11.421086 56.391 99.5
recursive-structured-workload branch 2 11.451007 55.734 99.5
recursive-structured-workload branch 2 11.484935 55.734 99.5
recursive-structured-workload branch 2 11.515077 55.859 99.1
recursive-structured-workload branch 2 11.550618 55.922 99.1
recursive-structured-workload branch 2 11.585503 54.281 99.1
recursive-structured-workload branch 2 11.621714 53.391 99.1
recursive-structured-workload branch 2 11.654426 53.406 98.5
recursive-structured-workload branch 2 11.687158 52.906 98.5
recursive-structured-workload branch 2 11.721157 52.875 98.5
recursive-structured-workload branch 2 11.753779 52.875 98.5
recursive-structured-workload branch 2 11.790981 52.812 99.3
recursive-structured-workload branch 2 11.82346 52.812 99.3
recursive-structured-workload branch 2 11.861736 52.812 99.3
recursive-structured-workload branch 2 11.895769 52.812 99.1
recursive-structured-workload branch 2 11.924544 52.812 99.1
recursive-structured-workload branch 2 11.958204 52.812 99.1
recursive-structured-workload branch 2 11.992111 52.859 99.1
recursive-structured-workload branch 2 12.026823 52.859 100.0
recursive-structured-workload branch 2 12.062749 52.859 100.0
recursive-structured-workload branch 2 12.09538 52.828 100.0
recursive-structured-workload branch 2 12.134913 52.844 100.0
recursive-structured-workload branch 2 12.168727 52.844 99.0
recursive-structured-workload branch 2 12.199176 52.844 99.0
recursive-structured-workload branch 2 12.23577 52.844 99.0
recursive-structured-workload branch 2 12.270026 52.844 100.0
recursive-structured-workload branch 2 12.303329 52.844 100.0
recursive-structured-workload branch 2 12.337267 52.844 100.0
recursive-structured-workload branch 2 12.371159 52.844 100.0
recursive-structured-workload branch 2 12.400418 52.844 99.2
recursive-structured-workload branch 2 12.435566 52.844 99.2
recursive-structured-workload branch 2 12.467027 52.844 99.2
recursive-structured-workload branch 2 12.501074 52.844 99.2
recursive-structured-workload branch 2 12.534991 52.844 98.8
recursive-structured-workload branch 2 12.568791 52.953 98.8
recursive-structured-workload branch 2 12.602749 53.156 98.8
recursive-structured-workload branch 2 12.636603 53.156 99.1
recursive-structured-workload branch 2 12.670332 53.156 99.1
recursive-structured-workload branch 2 12.704073 53.156 99.1
recursive-structured-workload branch 2 12.737133 53.156 99.1
recursive-structured-workload branch 2 12.771183 53.188 99.3
recursive-structured-workload branch 2 12.80443 53.188 99.3
recursive-structured-workload branch 2 12.839126 53.188 99.3
recursive-structured-workload branch 2 12.871094 53.188 99.3
recursive-structured-workload branch 2 12.905078 53.188 100.0
recursive-structured-workload branch 2 12.938917 53.188 100.0
recursive-structured-workload branch 2 12.973046 53.203 100.0
recursive-structured-workload branch 2 13.00694 53.203 100.0
recursive-structured-workload branch 2 13.04042 57.406 100.0
recursive-structured-workload branch 2 13.074263 57.453 100.0
recursive-structured-workload branch 2 13.104487 57.453 100.0
recursive-structured-workload branch 2 13.142614 57.453 100.0
recursive-structured-workload branch 2 13.176383 69.094 100.0
recursive-structured-workload branch 2 13.210138 0.0 0.0
recursive-structured-workload develop 2 0.00069 0.172 0.0
recursive-structured-workload develop 2 0.034856 27.641 3.8
recursive-structured-workload develop 2 0.068995 57.672 3.8
recursive-structured-workload develop 2 0.100691 120.969 3.8
recursive-structured-workload develop 2 0.130369 138.281 3.8
recursive-structured-workload develop 2 0.165658 172.953 40.5
recursive-structured-workload develop 2 0.200378 199.734 40.5
recursive-structured-workload develop 2 0.239328 226.828 40.5
recursive-structured-workload develop 2 0.273741 228.703 60.9
recursive-structured-workload develop 2 0.308271 231.547 60.9
recursive-structured-workload develop 2 0.342458 236.047 60.9
recursive-structured-workload develop 2 0.376212 242.109 60.9
recursive-structured-workload develop 2 0.412544 249.594 75.7
recursive-structured-workload develop 2 0.446225 257.203 75.7
recursive-structured-workload develop 2 0.479988 265.75 75.7
recursive-structured-workload develop 2 0.514043 276.969 84.1
recursive-structured-workload develop 2 0.551232 287.625 84.1
recursive-structured-workload develop 2 0.586471 301.875 84.1
recursive-structured-workload develop 2 0.616508 303.391 84.1
recursive-structured-workload develop 2 0.653381 308.094 89.7
recursive-structured-workload develop 2 0.689331 306.531 89.7
recursive-structured-workload develop 2 0.720992 307.25 89.7
recursive-structured-workload develop 2 0.75552 300.875 89.7
recursive-structured-workload develop 2 0.792605 301.922 90.8
recursive-structured-workload develop 2 0.823535 301.922 90.8
recursive-structured-workload develop 2 0.857091 302.703 90.8
recursive-structured-workload develop 2 0.887627 299.547 90.8
recursive-structured-workload develop 2 0.919871 297.781 94.2
recursive-structured-workload develop 2 0.953391 282.234 94.2
recursive-structured-workload develop 2 0.987638 283.109 94.2
recursive-structured-workload develop 2 1.02095 277.156 97.5
recursive-structured-workload develop 2 1.05542 272.219 97.5
recursive-structured-workload develop 2 1.088978 267.797 97.5
recursive-structured-workload develop 2 1.12356 268.875 97.5
recursive-structured-workload develop 2 1.15582 263.5 97.3
recursive-structured-workload develop 2 1.193067 263.219 97.3
recursive-structured-workload develop 2 1.223611 260.938 97.3
recursive-structured-workload develop 2 1.254617 260.938 97.3
recursive-structured-workload develop 2 1.287638 261.578 99.2
recursive-structured-workload develop 2 1.322429 261.578 99.2
recursive-structured-workload develop 2 1.35429 266.062 99.2
recursive-structured-workload develop 2 1.3886 262.609 99.2
recursive-structured-workload develop 2 1.420567 204.734 83.5
recursive-structured-workload develop 2 1.503701 204.734 52.2
recursive-structured-workload develop 2 1.572833 204.734 52.2
recursive-structured-workload develop 2 1.604936 0.0 0.0
recursive-structured-workload develop 3 0.00087 0.172 0.0
recursive-structured-workload develop 3 0.034047 28.281 0.0
recursive-structured-workload develop 3 0.070423 39.016 0.0
recursive-structured-workload develop 3 0.106481 64.578 0.0
recursive-structured-workload develop 3 0.14442 119.172 27.6
recursive-structured-workload develop 3 0.180207 141.25 27.6
recursive-structured-workload develop 3 0.212182 181.891 46.6
recursive-structured-workload develop 3 0.29074 192.547 46.6
recursive-structured-workload develop 3 0.325774 221.859 46.6
recursive-structured-workload develop 3 0.362648 223.516 46.6
recursive-structured-workload develop 3 0.396507 226.078 59.4
recursive-structured-workload develop 3 0.430714 229.266 59.4
recursive-structured-workload develop 3 0.464605 232.062 59.4
recursive-structured-workload develop 3 0.498254 236.828 74.3
recursive-structured-workload develop 3 0.530932 242.031 74.3
recursive-structured-workload develop 3 0.565073 247.062 74.3
recursive-structured-workload develop 3 0.599548 252.922 74.3
recursive-structured-workload develop 3 0.633059 261.641 83.5
recursive-structured-workload develop 3 0.668262 270.422 83.5
recursive-structured-workload develop 3 0.702341 279.844 83.5
recursive-structured-workload develop 3 0.736552 289.625 83.5
recursive-structured-workload develop 3 0.772043 290.578 91.1
recursive-structured-workload develop 3 0.80578 296.203 91.1
recursive-structured-workload develop 3 0.842223 296.375 91.1
recursive-structured-workload develop 3 0.874546 296.844 91.3
recursive-structured-workload develop 3 0.908759 297.609 91.3
recursive-structured-workload develop 3 0.9453 297.859 91.3
recursive-structured-workload develop 3 0.976587 298.891 91.3
recursive-structured-workload develop 3 1.010159 298.891 94.2
recursive-structured-workload develop 3 1.043261 298.531 94.2
recursive-structured-workload develop 3 1.072957 294.281 94.2
recursive-structured-workload develop 3 1.102385 294.281 94.2
recursive-structured-workload develop 3 1.136314 295.172 97.6
recursive-structured-workload develop 3 1.17005 296.188 97.6
recursive-structured-workload develop 3 1.201608 296.188 97.6
recursive-structured-workload develop 3 1.235093 296.188 97.6
recursive-structured-workload develop 3 1.268329 296.938 99.4
recursive-structured-workload develop 3 1.302143 298.047 99.4
recursive-structured-workload develop 3 1.335733 283.344 99.4
recursive-structured-workload develop 3 1.372875 283.344 97.0
recursive-structured-workload develop 3 1.405954 283.984 97.0
recursive-structured-workload develop 3 1.444438 283.984 97.0
recursive-structured-workload develop 3 1.474317 293.328 97.0
recursive-structured-workload develop 3 1.506225 293.328 87.3
recursive-structured-workload develop 3 1.541249 293.328 87.3
recursive-structured-workload develop 3 1.576122 293.328 87.3
recursive-structured-workload develop 3 1.609048 293.328 87.3
recursive-structured-workload develop 3 1.643255 293.328 54.6
recursive-structured-workload develop 3 1.676591 293.328 54.6
recursive-structured-workload develop 3 1.710753 293.328 54.6
recursive-structured-workload branch 3 0.00062 0.172 0.0
recursive-structured-workload branch 3 0.034266 30.484 0.0
recursive-structured-workload branch 3 0.068025 47.422 0.0
recursive-structured-workload branch 3 0.101711 88.672 0.0
recursive-structured-workload branch 3 0.135053 98.203 40.0
recursive-structured-workload branch 3 0.168895 104.062 40.0
recursive-structured-workload branch 3 0.202732 107.953 40.0
recursive-structured-workload branch 3 0.236477 108.672 40.0
recursive-structured-workload branch 3 0.269315 109.531 59.7
recursive-structured-workload branch 3 0.303257 112.141 59.7
recursive-structured-workload branch 3 0.334206 112.141 59.7
recursive-structured-workload branch 3 0.369739 112.172 59.7
recursive-structured-workload branch 3 0.40184 112.203 73.8
recursive-structured-workload branch 3 0.435045 112.234 73.8
recursive-structured-workload branch 3 0.469323 112.281 73.8
recursive-structured-workload branch 3 0.503504 112.344 81.5
recursive-structured-workload branch 3 0.537938 112.422 81.5
recursive-structured-workload branch 3 0.576743 112.547 81.5
recursive-structured-workload branch 3 0.625047 112.656 87.7
recursive-structured-workload branch 3 0.66373 112.734 87.7
recursive-structured-workload branch 3 0.698984 112.875 87.7
recursive-structured-workload branch 3 0.733094 115.766 87.7
recursive-structured-workload branch 3 0.767059 120.047 93.7
recursive-structured-workload branch 3 0.800667 124.062 93.7
recursive-structured-workload branch 3 0.835042 129.484 93.7
recursive-structured-workload branch 3 0.871555 134.25 93.7
recursive-structured-workload branch 3 0.905391 139.109 95.4
recursive-structured-workload branch 3 0.939218 143.75 95.4
recursive-structured-workload branch 3 0.969307 145.016 95.4
recursive-structured-workload branch 3 1.004469 145.906 96.2
recursive-structured-workload branch 3 1.038762 145.906 96.2
recursive-structured-workload branch 3 1.072704 145.906 96.2
recursive-structured-workload branch 3 1.106898 146.0 96.2
recursive-structured-workload branch 3 1.140665 146.906 97.2
recursive-structured-workload branch 3 1.174609 146.906 97.2
recursive-structured-workload branch 3 1.208935 146.906 97.2
recursive-structured-workload branch 3 1.242953 146.906 97.2
recursive-structured-workload branch 3 1.275719 147.047 98.4
recursive-structured-workload branch 3 1.309414 147.047 98.4
recursive-structured-workload branch 3 1.343043 147.047 98.4
recursive-structured-workload branch 3 1.374856 147.047 98.1
recursive-structured-workload branch 3 1.408684 147.047 98.1
recursive-structured-workload branch 3 1.440816 147.047 98.1
recursive-structured-workload branch 3 1.472441 147.047 98.1
recursive-structured-workload branch 3 1.50614 147.047 99.7
recursive-structured-workload branch 3 1.539848 147.047 99.7
recursive-structured-workload branch 3 1.573832 147.047 99.7
recursive-structured-workload branch 3 1.606755 147.047 99.7
recursive-structured-workload branch 3 1.640187 147.047 98.4
recursive-structured-workload branch 3 1.67342 147.047 98.4
recursive-structured-workload branch 3 1.71082 147.047 98.4
recursive-structured-workload branch 3 1.744993 147.047 98.4
recursive-structured-workload branch 3 1.780655 147.188 98.9
recursive-structured-workload branch 3 1.814845 147.188 98.9
recursive-structured-workload branch 3 1.848498 147.188 98.9
recursive-structured-workload branch 3 1.880429 147.188 97.7
recursive-structured-workload branch 3 1.918888 147.188 97.7
recursive-structured-workload branch 3 1.953951 147.188 97.7
recursive-structured-workload branch 3 1.988246 147.188 97.7
recursive-structured-workload branch 3 2.022377 147.188 98.6
recursive-structured-workload branch 3 2.05628 147.188 98.6
recursive-structured-workload branch 3 2.090286 147.188 98.6
recursive-structured-workload branch 3 2.12441 147.188 98.6
recursive-structured-workload branch 3 2.156777 147.188 99.5
recursive-structured-workload branch 3 2.191043 147.188 99.5
recursive-structured-workload branch 3 2.229365 147.188 99.5
recursive-structured-workload branch 3 2.263234 147.188 100.0
recursive-structured-workload branch 3 2.296948 147.188 100.0
recursive-structured-workload branch 3 2.326756 147.188 100.0
recursive-structured-workload branch 3 2.356872 147.188 100.0
recursive-structured-workload branch 3 2.390701 147.188 99.9
recursive-structured-workload branch 3 2.424621 147.188 99.9
recursive-structured-workload branch 3 2.458118 147.188 99.9
recursive-structured-workload branch 3 2.489544 123.859 99.9
recursive-structured-workload branch 3 2.523553 97.109 96.4
recursive-structured-workload branch 3 2.555167 97.438 96.4
recursive-structured-workload branch 3 2.591315 97.484 96.4
recursive-structured-workload branch 3 2.62017 97.625 96.4
recursive-structured-workload branch 3 2.654129 95.047 98.9
recursive-structured-workload branch 3 2.685154 95.047 98.9
recursive-structured-workload branch 3 2.719793 95.297 98.9
recursive-structured-workload branch 3 2.753747 95.297 97.5
recursive-structured-workload branch 3 2.78719 95.297 97.5
recursive-structured-workload branch 3 2.821136 95.297 97.5
recursive-structured-workload branch 3 2.855233 95.297 97.5
recursive-structured-workload branch 3 2.888682 95.297 99.6
recursive-structured-workload branch 3 2.922711 98.125 99.6
recursive-structured-workload branch 3 2.956329 98.125 99.6
recursive-structured-workload branch 3 2.990197 98.125 99.6
recursive-structured-workload branch 3 3.024203 93.375 97.6
recursive-structured-workload branch 3 3.059336 93.375 97.6
recursive-structured-workload branch 3 3.093264 93.375 97.6
recursive-structured-workload branch 3 3.127007 93.375 98.4
recursive-structured-workload branch 3 3.15997 92.906 98.4
recursive-structured-workload branch 3 3.197512 92.906 98.4
recursive-structured-workload branch 3 3.226811 92.906 98.4
recursive-structured-workload branch 3 3.259986 92.906 99.9
recursive-structured-workload branch 3 3.29368 93.047 99.9
recursive-structured-workload branch 3 3.32756 93.172 99.9
recursive-structured-workload branch 3 3.361577 93.656 99.9
recursive-structured-workload branch 3 3.395565 94.078 98.8
recursive-structured-workload branch 3 3.430945 94.078 98.8
recursive-structured-workload branch 3 3.465667 94.078 98.8
recursive-structured-workload branch 3 3.499372 94.734 98.8
recursive-structured-workload branch 3 3.535057 93.328 98.8
recursive-structured-workload branch 3 3.571192 93.328 98.8
recursive-structured-workload branch 3 3.605309 93.328 98.8
recursive-structured-workload branch 3 3.639031 93.328 99.3
recursive-structured-workload branch 3 3.67293 93.328 99.3
recursive-structured-workload branch 3 3.706862 93.328 99.3
recursive-structured-workload branch 3 3.740295 93.328 99.3
recursive-structured-workload branch 3 3.770245 93.328 99.9
recursive-structured-workload branch 3 3.804069 93.328 99.9
recursive-structured-workload branch 3 3.837657 93.328 99.9
recursive-structured-workload branch 3 3.871533 93.328 99.9
recursive-structured-workload branch 3 3.90512 93.328 100.0
recursive-structured-workload branch 3 3.938926 93.719 100.0
recursive-structured-workload branch 3 3.972837 93.719 100.0
recursive-structured-workload branch 3 4.00647 94.141 99.4
recursive-structured-workload branch 3 4.040214 94.141 99.4
recursive-structured-workload branch 3 4.07159 94.141 99.4
recursive-structured-workload branch 3 4.105452 94.141 99.4
recursive-structured-workload branch 3 4.139046 94.391 99.4
recursive-structured-workload branch 3 4.16833 94.391 99.4
recursive-structured-workload branch 3 4.201818 94.391 99.4
recursive-structured-workload branch 3 4.235411 94.391 99.4
recursive-structured-workload branch 3 4.268929 94.391 99.9
recursive-structured-workload branch 3 4.302792 94.391 99.9
recursive-structured-workload branch 3 4.336564 94.391 99.9
recursive-structured-workload branch 3 4.370529 95.188 99.9
recursive-structured-workload branch 3 4.400858 95.438 99.8
recursive-structured-workload branch 3 4.432309 97.266 99.8
recursive-structured-workload branch 3 4.461864 97.672 99.8
recursive-structured-workload branch 3 4.495847 97.828 99.8
recursive-structured-workload branch 3 4.529489 97.828 100.0
recursive-structured-workload branch 3 4.563424 98.203 100.0
recursive-structured-workload branch 3 4.600408 98.203 100.0
recursive-structured-workload branch 3 4.634208 98.203 100.0
recursive-structured-workload branch 3 4.665664 98.203 100.0
recursive-structured-workload branch 3 4.697478 98.203 100.0
recursive-structured-workload branch 3 4.731389 98.203 100.0
recursive-structured-workload branch 3 4.770054 98.203 99.5
recursive-structured-workload branch 3 4.803919 98.594 99.5
recursive-structured-workload branch 3 4.83766 99.234 99.5
recursive-structured-workload branch 3 4.871012 100.984 99.5
recursive-structured-workload branch 3 4.903837 101.391 100.0
recursive-structured-workload branch 3 4.934944 101.547 100.0
recursive-structured-workload branch 3 4.968339 101.547 100.0
recursive-structured-workload branch 3 5.002212 101.547 100.0
recursive-structured-workload branch 3 5.036123 101.547 98.7
recursive-structured-workload branch 3 5.069669 101.609 98.7
recursive-structured-workload branch 3 5.10354 101.672 98.7
recursive-structured-workload branch 3 5.13707 101.688 99.3
recursive-structured-workload branch 3 5.169238 101.812 99.3
recursive-structured-workload branch 3 5.200333 101.812 99.3
recursive-structured-workload branch 3 5.241741 101.812 99.3
recursive-structured-workload branch 3 5.275741 101.812 100.0
recursive-structured-workload branch 3 5.309724 101.812 100.0
recursive-structured-workload branch 3 5.352574 101.812 100.0
recursive-structured-workload branch 3 5.386516 102.203 98.5
recursive-structured-workload branch 3 5.420417 102.969 98.5
recursive-structured-workload branch 3 5.454452 103.344 98.5
recursive-structured-workload branch 3 5.483515 104.609 98.5
recursive-structured-workload branch 3 5.519579 105.453 99.2
recursive-structured-workload branch 3 5.553529 105.453 99.2
recursive-structured-workload branch 3 5.585496 105.453 99.2
recursive-structured-workload branch 3 5.61852 105.453 99.2
recursive-structured-workload branch 3 5.651995 105.453 100.0
recursive-structured-workload branch 3 5.686181 106.156 100.0
recursive-structured-workload branch 3 5.722565 106.172 100.0
recursive-structured-workload branch 3 5.751959 106.172 100.0
recursive-structured-workload branch 3 5.785871 106.172 100.0
recursive-structured-workload branch 3 5.820063 106.172 100.0
recursive-structured-workload branch 3 5.854059 106.172 100.0
recursive-structured-workload branch 3 5.89201 106.172 97.9
recursive-structured-workload branch 3 5.920944 106.172 97.9
recursive-structured-workload branch 3 5.953831 106.172 97.9
recursive-structured-workload branch 3 5.987851 106.562 97.9
recursive-structured-workload branch 3 6.021687 106.562 99.1
recursive-structured-workload branch 3 6.057862 106.562 99.1
recursive-structured-workload branch 3 6.091705 106.562 99.1
recursive-structured-workload branch 3 6.125381 107.188 99.1
recursive-structured-workload branch 3 6.157305 107.188 99.9
recursive-structured-workload branch 3 6.190852 107.562 99.9
recursive-structured-workload branch 3 6.224631 107.562 99.9
recursive-structured-workload branch 3 6.258477 107.562 99.0
recursive-structured-workload branch 3 6.292632 107.562 99.0
recursive-structured-workload branch 3 6.326815 107.562 99.0
recursive-structured-workload branch 3 6.358564 107.562 99.0
recursive-structured-workload branch 3 6.392527 107.562 98.7
recursive-structured-workload branch 3 6.426727 107.562 98.7
recursive-structured-workload branch 3 6.458647 107.562 98.7
recursive-structured-workload branch 3 6.492529 107.562 98.7
recursive-structured-workload branch 3 6.526471 107.562 100.0
recursive-structured-workload branch 3 6.560323 107.562 100.0
recursive-structured-workload branch 3 6.592644 107.562 100.0
recursive-structured-workload branch 3 6.626649 107.562 100.0
recursive-structured-workload branch 3 6.660973 107.562 98.9
recursive-structured-workload branch 3 6.69397 107.812 98.9
recursive-structured-workload branch 3 6.728044 107.812 98.9
recursive-structured-workload branch 3 6.761948 107.812 99.4
recursive-structured-workload branch 3 6.796027 107.812 99.4
recursive-structured-workload branch 3 6.836204 107.812 99.4
recursive-structured-workload branch 3 6.869896 107.812 99.4
recursive-structured-workload branch 3 6.903618 107.812 100.0
recursive-structured-workload branch 3 6.93715 107.938 100.0
recursive-structured-workload branch 3 6.971674 107.938 100.0
recursive-structured-workload branch 3 7.005985 107.938 99.1
recursive-structured-workload branch 3 7.040295 107.938 99.1
recursive-structured-workload branch 3 7.073492 107.938 99.1
recursive-structured-workload branch 3 7.107431 107.938 99.1
recursive-structured-workload branch 3 7.141076 107.938 99.2
recursive-structured-workload branch 3 7.174885 107.938 99.2
recursive-structured-workload branch 3 7.209002 107.938 99.2
recursive-structured-workload branch 3 7.242782 107.938 99.2
recursive-structured-workload branch 3 7.276788 107.938 100.0
recursive-structured-workload branch 3 7.310695 107.938 100.0
recursive-structured-workload branch 3 7.345857 107.938 100.0
recursive-structured-workload branch 3 7.380213 107.938 99.4
recursive-structured-workload branch 3 7.414104 107.938 99.4
recursive-structured-workload branch 3 7.448034 108.062 99.4
recursive-structured-workload branch 3 7.481849 108.062 99.4
recursive-structured-workload branch 3 7.515503 108.016 99.9
recursive-structured-workload branch 3 7.549478 108.016 99.9
recursive-structured-workload branch 3 7.583552 108.016 99.9
recursive-structured-workload branch 3 7.617468 108.016 99.9
recursive-structured-workload branch 3 7.651429 108.016 100.0
recursive-structured-workload branch 3 7.68517 108.016 100.0
recursive-structured-workload branch 3 7.718904 108.016 100.0
recursive-structured-workload branch 3 7.751683 108.016 100.0
recursive-structured-workload branch 3 7.785446 108.016 99.6
recursive-structured-workload branch 3 7.819192 108.016 99.6
recursive-structured-workload branch 3 7.852896 108.016 99.6
recursive-structured-workload branch 3 7.884991 108.016 99.0
recursive-structured-workload branch 3 7.919107 108.016 99.0
recursive-structured-workload branch 3 7.952878 108.266 99.0
recursive-structured-workload branch 3 7.986544 108.266 99.0
recursive-structured-workload branch 3 8.020487 108.266 100.0
recursive-structured-workload branch 3 8.054238 108.266 100.0
recursive-structured-workload branch 3 8.088455 108.266 100.0
recursive-structured-workload branch 3 8.122301 108.266 100.0
recursive-structured-workload branch 3 8.1562 108.266 100.0
recursive-structured-workload branch 3 8.189879 108.266 100.0
recursive-structured-workload branch 3 8.223944 108.266 100.0
recursive-structured-workload branch 3 8.25785 108.266 99.7
recursive-structured-workload branch 3 8.291432 108.266 99.7
recursive-structured-workload branch 3 8.325656 108.266 99.7
recursive-structured-workload branch 3 8.358663 108.266 99.7
recursive-structured-workload branch 3 8.392472 108.266 98.4
recursive-structured-workload branch 3 8.426492 108.266 98.4
recursive-structured-workload branch 3 8.458615 108.266 98.4
recursive-structured-workload branch 3 8.492266 108.266 98.4
recursive-structured-workload branch 3 8.525165 108.266 100.0
recursive-structured-workload branch 3 8.557328 108.266 100.0
recursive-structured-workload branch 3 8.591219 108.266 100.0
recursive-structured-workload branch 3 8.625194 108.266 100.0
recursive-structured-workload branch 3 8.658774 108.266 99.4
recursive-structured-workload branch 3 8.692599 108.266 99.4
recursive-structured-workload branch 3 8.726415 108.266 99.4
recursive-structured-workload branch 3 8.759733 108.266 99.9
recursive-structured-workload branch 3 8.793291 108.266 99.9
recursive-structured-workload branch 3 8.826911 108.266 99.9
recursive-structured-workload branch 3 8.860282 108.469 99.9
recursive-structured-workload branch 3 8.894791 108.688 100.0
recursive-structured-workload branch 3 8.928311 108.688 100.0
recursive-structured-workload branch 3 8.961773 108.75 100.0
recursive-structured-workload branch 3 8.995321 108.75 100.0
recursive-structured-workload branch 3 9.028819 108.75 98.5
recursive-structured-workload branch 3 9.062351 108.734 98.5
recursive-structured-workload branch 3 9.099252 108.984 98.5
recursive-structured-workload branch 3 9.132838 108.984 99.4
recursive-structured-workload branch 3 9.166334 108.984 99.4
recursive-structured-workload branch 3 9.199478 108.984 99.4
recursive-structured-workload branch 3 9.232988 108.984 99.4
recursive-structured-workload branch 3 9.266728 109.359 100.0
recursive-structured-workload branch 3 9.300324 109.609 100.0
recursive-structured-workload branch 3 9.333833 109.609 100.0
recursive-structured-workload branch 3 9.366637 109.609 100.0
recursive-structured-workload branch 3 9.400215 110.0 99.0
recursive-structured-workload branch 3 9.429985 110.0 99.0
recursive-structured-workload branch 3 9.46255 110.0 99.0
recursive-structured-workload branch 3 9.496729 110.0 99.0
recursive-structured-workload branch 3 9.530145 110.0 100.0
recursive-structured-workload branch 3 9.564045 110.0 100.0
recursive-structured-workload branch 3 9.600187 110.0 100.0
recursive-structured-workload branch 3 9.633914 110.781 98.4
recursive-structured-workload branch 3 9.66763 110.781 98.4
recursive-structured-workload branch 3 9.701717 110.781 98.4
recursive-structured-workload branch 3 9.73522 111.031 98.4
recursive-structured-workload branch 3 9.768945 111.031 100.0
recursive-structured-workload branch 3 9.800238 111.031 100.0
recursive-structured-workload branch 3 9.834216 111.031 100.0
recursive-structured-workload branch 3 9.86811 111.031 100.0
recursive-structured-workload branch 3 9.902742 111.031 99.4
recursive-structured-workload branch 3 9.938484 111.031 99.4
recursive-structured-workload branch 3 9.974011 111.828 99.4
recursive-structured-workload branch 3 10.007813 112.203 97.9
recursive-structured-workload branch 3 10.041567 113.75 97.9
recursive-structured-workload branch 3 10.074946 114.281 97.9
recursive-structured-workload branch 3 10.106813 114.281 97.9
recursive-structured-workload branch 3 10.140919 114.281 100.0
recursive-structured-workload branch 3 10.174766 114.531 100.0
recursive-structured-workload branch 3 10.208607 114.531 100.0
recursive-structured-workload branch 3 10.242384 114.531 100.0
recursive-structured-workload branch 3 10.276099 114.531 99.1
recursive-structured-workload branch 3 10.308661 114.531 99.1
recursive-structured-workload branch 3 10.342513 114.531 99.1
recursive-structured-workload branch 3 10.37734 114.531 99.1
recursive-structured-workload branch 3 10.411177 114.922 99.2
recursive-structured-workload branch 3 10.444955 115.562 99.2
recursive-structured-workload branch 3 10.47864 117.094 99.2
recursive-structured-workload branch 3 10.51136 117.484 99.0
recursive-structured-workload branch 3 10.545061 117.734 99.0
recursive-structured-workload branch 3 10.578628 117.719 99.0
recursive-structured-workload branch 3 10.613184 117.719 99.0
recursive-structured-workload branch 3 10.647205 117.719 100.0
recursive-structured-workload branch 3 10.681016 117.719 100.0
recursive-structured-workload branch 3 10.714865 117.719 100.0
recursive-structured-workload branch 3 10.748772 117.719 100.0
recursive-structured-workload branch 3 10.782417 117.719 100.0
recursive-structured-workload branch 3 10.816104 117.719 100.0
recursive-structured-workload branch 3 10.849812 117.719 100.0
recursive-structured-workload branch 3 10.880726 117.719 100.0
recursive-structured-workload branch 3 10.914319 117.719 98.4
recursive-structured-workload branch 3 10.948378 117.719 98.4
recursive-structured-workload branch 3 10.982292 117.719 98.4
recursive-structured-workload branch 3 11.016178 117.719 99.1
recursive-structured-workload branch 3 11.049895 117.719 99.1
recursive-structured-workload branch 3 11.083744 117.719 99.1
recursive-structured-workload branch 3 11.11763 117.719 99.1
recursive-structured-workload branch 3 11.150241 117.719 99.6
recursive-structured-workload branch 3 11.180041 117.719 99.6
recursive-structured-workload branch 3 11.213959 117.719 99.6
recursive-structured-workload branch 3 11.247465 117.719 99.6
recursive-structured-workload branch 3 11.281489 117.828 100.0
recursive-structured-workload branch 3 11.315169 117.828 100.0
recursive-structured-workload branch 3 11.349101 117.828 100.0
recursive-structured-workload branch 3 11.382827 117.828 99.4
recursive-structured-workload branch 3 11.416858 117.828 99.4
recursive-structured-workload branch 3 11.450655 117.828 99.4
recursive-structured-workload branch 3 11.479829 117.828 99.4
recursive-structured-workload branch 3 11.513801 117.828 100.0
recursive-structured-workload branch 3 11.549688 117.828 100.0
recursive-structured-workload branch 3 11.583342 117.828 100.0
recursive-structured-workload branch 3 11.61713 117.828 100.0
recursive-structured-workload branch 3 11.651161 117.828 100.0
recursive-structured-workload branch 3 11.686653 117.828 100.0
recursive-structured-workload branch 3 11.720607 117.828 100.0
recursive-structured-workload branch 3 11.754587 117.828 100.0
recursive-structured-workload branch 3 11.788261 117.828 99.4
recursive-structured-workload branch 3 11.821956 117.828 99.4
recursive-structured-workload branch 3 11.855497 117.828 99.4
recursive-structured-workload branch 3 11.889372 117.828 99.0
recursive-structured-workload branch 3 11.923263 117.828 99.0
recursive-structured-workload branch 3 11.957125 117.828 99.0
recursive-structured-workload branch 3 11.990659 117.828 99.0
recursive-structured-workload branch 3 12.019487 117.812 98.8
recursive-structured-workload branch 3 12.050543 117.703 98.8
recursive-structured-workload branch 3 12.085441 117.516 98.8
recursive-structured-workload branch 3 12.119691 117.516 98.8
recursive-structured-workload branch 3 12.153477 117.516 100.0
recursive-structured-workload branch 3 12.187255 117.516 100.0
recursive-structured-workload branch 3 12.221175 117.516 100.0
recursive-structured-workload branch 3 12.254833 117.516 100.0
recursive-structured-workload branch 3 12.289092 117.516 100.0
recursive-structured-workload branch 3 12.322983 117.625 100.0
recursive-structured-workload branch 3 12.356694 117.625 100.0
recursive-structured-workload branch 3 12.390754 117.625 98.9
recursive-structured-workload branch 3 12.424676 117.625 98.9
recursive-structured-workload branch 3 12.458698 117.625 98.9
recursive-structured-workload branch 3 12.492257 117.625 98.9
recursive-structured-workload branch 3 12.526092 117.625 99.3
recursive-structured-workload branch 3 12.560048 117.625 99.3
recursive-structured-workload branch 3 12.593701 117.625 99.3
recursive-structured-workload branch 3 12.627743 117.625 99.3
recursive-structured-workload branch 3 12.657094 117.625 100.0
recursive-structured-workload branch 3 12.690622 117.625 100.0
recursive-structured-workload branch 3 12.721416 117.625 100.0
recursive-structured-workload branch 3 12.75559 117.953 100.0
recursive-structured-workload branch 3 12.789504 117.953 100.0
recursive-structured-workload branch 3 12.823095 117.953 100.0
recursive-structured-workload branch 3 12.857094 117.953 100.0
recursive-structured-workload branch 3 12.890094 117.969 100.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment