Skip to content

Instantly share code, notes, and snippets.

@briochemc
Forked from mbauman/covid19.jl
Last active April 2, 2020 06:37
Show Gist options
  • Save briochemc/60960829be3ebecdfb3135f8637f2788 to your computer and use it in GitHub Desktop.
Save briochemc/60960829be3ebecdfb3135f8637f2788 to your computer and use it in GitHub Desktop.
using HTTP, CSV, Plots, DataFrames, Dates
# Download the data
df = CSV.read(IOBuffer(String(HTTP.get("https://covid.ourworldindata.org/data/total_cases.csv").body)), normalizenames=true)
# Plotting function
function doit(df, countries, alignment)
cp = get_color_palette(:auto, plot_color(:white), length(countries))
plot(legend=false)
for (i,country) in enumerate(countries)
c = df[:, country]
d = map(x -> x.value, df.date .- df.date[findfirst(coalesce.(c,0) .>= alignment)])
plot!(d, c, color=i, yaxis=:log, m=:circle, ms=2, msw=false, lw=2, label="")
plot!([d[end]], [c[end]], color=cp[i], yaxis=:log, m=:circle, ms=3, label="")
# annotate country next to end point instead of legend
annotate!(d[end]+1, c[end], text("$(replace(string(country), "_"=>" "))", 8, :left, :bold, color=cp[i]))
end
xlabel!("Days since $(alignment)th case")
ylabel!("Cumulative number of cases")
# pretty lims
xlims!(-1, last(xlims())+4)
ylims!(alignment*.8, last(ylims()))
yticks=vec([1,2,5] * 10 .^ (1:4)')
# pretty ticks
yticks=yticks[alignment .≤ yticks .≤ maximum(df[end,countries])]
plot!(yticks=(yticks, string.(yticks)), xticks=0:7:last(xlims())+4)
end
function addtrend(df, dailygrowth, alignment)
d = 0:last(xlims())
c = alignment * (1 + dailygrowth) .^ (d)
plot!(d, c, ls=:dot, color=:gray, lw=2, label="+$(100dailygrowth)% daily")
plot!(legend=:bottomright)
end
# Do it! (plotting the data)
doit(df, [:China, :Italy, :France, :Spain, :Australia, :United_States, :United_Kingdom, :Singapore, :South_Korea], 100)
addtrend(df, 0.25, 100)
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
using HTTP, CSV, Plots, DataFrames
# Download the data
df = CSV.read(IOBuffer(String(HTTP.get("https://covid.ourworldindata.org/data/total_deaths.csv").body)), normalizenames=true)
# Plotting function
function doit(df, countries, alignment)
countries = countries[findall(map(x -> ismissing(x) ? false : x > alignment, Vector(df[end, countries])))]
cp = get_color_palette(:auto, plot_color(:white), length(countries))
plot(legend=false)
for (i, country) in enumerate(countries)
c = df[:, country]
(c[end] isa Missing || c[end] < alignment) && continue
d = map(x -> x.value, df.date .- df.date[findfirst(coalesce.(c,0) .>= alignment)])
plot!(d, c, color=cp[i], yaxis=:log, m=:circle, ms=2, msw=false, lw=2, label="")
plot!([d[end]], [c[end]], color=cp[i], yaxis=:log, m=:circle, ms=3, label="")
# annotate country next to end point instead of legend
annotate!(d[end]+1, c[end], text("$(replace(string(country), "_"=>" "))", 8, :left, :bold, color=cp[i]))
end
xlabel!("Days since $(alignment)th death")
ylabel!("Cumulative number of deaths")
# pretty lims
xlims!(-1, last(xlims())+4)
ylims!(alignment*.8, last(ylims()))
# pretty ticks
yticks=vec([1,2,5] * 10 .^ (0:4)')
yticks=yticks[alignment .≤ yticks .≤ maximum(df[end,countries])]
plot!(yticks=(yticks, string.(yticks)), xticks=0:7:last(xlims())+4)
end
function addtrend(df, dailygrowth, alignment)
d = 0:last(xlims())
c = alignment * (1 + dailygrowth) .^ (d)
plot!(d, c, ls=:dot, color=:gray, lw=2, label="+$(100dailygrowth)% daily")
plot!(legend=:bottomright)
end
# Do it! (plotting the data)
doit(df, names(df)[3:end], 10)
addtrend(df, 0.25, 10)
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
using HTTP, CSV, Plots, DataFrames, Dates
file_url = "https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_confirmed_global.csv"
# Download the data
df = CSV.read(IOBuffer(String(HTTP.get(file_url).body)), normalizenames=true, header=2, transpose=true, datarow=5)
const allcountries = unique(replace.(string.(names(df)), r"_\d*$"=>""))[2:end]
# Plotting function
function doit(df, countries, lockdowndict=Dict(); Δdays=1)
cp = get_color_palette(:auto, plot_color(:white), length(countries))
plot(xaxis=:log, yaxis=:log)
for country in allcountries
country == "Cruise_Ship" && continue
country == "Diamond_Princess" && continue
i = findfirst(Symbol(country) .== countries)
if i isa Nothing
color, m, ms, α, mα, lw, fs = RGBA{Float64}(0,0,0,0.1), 0, 0, 0.1, 0, 1, 4
elseif country == "Australia"
color, m, ms, α, mα, lw, fs = cp[i], :star, 4, 1, 0, 4, 12
else
color, m, ms, α, mα, lw, fs = cp[i], :circle, 2, 0.5, 0, 2, 8
end
cases = Float64.(sum(eachcol(select(df, occursin.(string(country), string.(names(df)))))))
Δcases = cases[1+Δdays:end] - cases[1:end-Δdays]
cases = cases[1+Δdays:end]
ikeep = findall((cases .> 0) .& (Δcases .> 0))
cases = cases[ikeep]
Δcases = Δcases[ikeep]
(any(Δcases .≤ 0) || length(ikeep) == 0) && continue
plot!(cases, Δcases, color=color, m=m, ms=ms, msw=0, lw=lw, α=α, mα=mα, label="")
plot!([cases[end]], [Δcases[end]], color=color, m=m, α=1, ms=ms+1, msw=0, label="")
# annotate country next to end point instead of legend
cases[end] > 30 && Δcases[end] > 10 && annotate!(cases[end] * 1.1, Δcases[end], text("$(replace(string(country), "_"=>" "))", fs, :left, :bold, color=color))
end
# axis labels
xlabel!("Total confirmed cases")
ylabel!("Δcases over $Δdays days")
# pretty lims
ticks=vec([1,3] * 10 .^ (0:5)')
plot!(xlims=(30,last(xlims())))
plot!(ylims=(10,last(ylims())))
xticks = ticks[first(xlims()) .≤ ticks .≤ last(xlims())]
yticks = ticks[first(ylims()) .≤ ticks .≤ last(ylims())]
# pretty ticks
plot!(xticks=(xticks, addprefix.(string.(xticks))), yticks=(yticks, addprefix.(string.(yticks))))
Δx, cstart = collect(xlims()), 300
growth(Δx, cstart, 1, Δdays, :solid)
growth(Δx, cstart, 3, Δdays, :dash, "")
growth(Δx, cstart, 7, Δdays, :dashdot, "")
growth(Δx, cstart, 21, Δdays, :dot, "")
plot!(legend=:topleft, legendtitle="Doubling time")
end
Δc_vs_c(c, τ, Δdays) = (1 - 0.5^(Δdays/τ)) .* c
function growth(Δx, cstart, τ, Δdays, ls, str=" in $Δdays days")
α = log(2) / τ
c = cstart * exp.(α*Δdays*[0,1])
plot!(Δx, Δc_vs_c(Δx, τ, Δdays), ls=ls, color=:gray, lw=1, label="$τ days")
plot!(c, Δc_vs_c(c, τ, Δdays), m=[:circle, :dtriangle], ms=2, ls=:solid, color=:black, lw=1, label="")
str = "×$(round(c[end]/c[1], digits=1))$str"
if length(str) > 10
annotate!(c[end] * 0.8, Δc_vs_c(c, τ, Δdays)[end], text(str, 8, :right, color=:black))
else
annotate!(c[end] * 1.1, Δc_vs_c(c, τ, Δdays)[end], text(str, 8, :left, color=:black))
end
end
function addprefix(s)
s = replace(s, r"(.*)000000000$"=>s"\1G")
s = replace(s, r"(.*)000000$"=>s"\1M")
s = replace(s, r"(.*)000$"=>s"\1k")
return s
end
function addtrend(xlims, trend, Δdays)
plot!(collect(xlims), trend * Δdays * collect(xlims), ls=:dot, color=:gray, lw=2, label="+$(100trend)%", legend=:topleft)
end
function adddoublingtime(Δx, τ, Δdays)
plot!(Δx, Δx * 1 ./ τ' * Δdays, ls=:dot, color=:gray, lw=2, label=string.(τ, " days"), legend=:topleft)
end
lockdowndict = Dict(
:Australia => nothing,
:Italy => Date("9 March 2020", dateformat"d U Y"),
:France => Date("16 March 2020", dateformat"d U Y"),
:China => Date("23 January 2020", dateformat"d U Y"),
)
# Do it! (plotting the data)
#countries = [:China, :Canada, :Turkey, :India, :Iraq, :Bahrain, :Iran, :Germany, :Switzerland, :Netherlands, :Belgium, :Italy, :France, :Spain, :Australia, :US, :United_Kingdom, :Singapore, :Korea_South, :Japan, :Norway, :Finland, :Sweden]
countries = [:China, :Canada, :Italy, :France, :Spain, :Australia, :US, :United_Kingdom, :Singapore, :Korea_South, :Japan]
doit(df, countries, lockdowndict; Δdays=3)
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" encoding="utf-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="600" height="400" viewBox="0 0 2400 1600">
<defs>
<clipPath id="clip7700">
<rect x="0" y="0" width="2400" height="1600"/>
</clipPath>
</defs>
<path clip-path="url(#clip7700)" d="
M0 1600 L2400 1600 L2400 0 L0 0 Z
" fill="#ffffff" fill-rule="evenodd" fill-opacity="1"/>
<defs>
<clipPath id="clip7701">
<rect x="480" y="0" width="1681" height="1600"/>
</clipPath>
</defs>
<path clip-path="url(#clip7700)" d="
M253.202 1425.62 L2352.76 1425.62 L2352.76 47.2441 L253.202 47.2441 Z
" fill="#ffffff" fill-rule="evenodd" fill-opacity="1"/>
<defs>
<clipPath id="clip7702">
<rect x="253" y="47" width="2101" height="1379"/>
</clipPath>
</defs>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none" points="
253.202,1425.62 253.202,47.2441
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none" points="
526.842,1425.62 526.842,47.2441
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none" points="
776.535,1425.62 776.535,47.2441
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none" points="
1050.17,1425.62 1050.17,47.2441
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none" points="
1299.87,1425.62 1299.87,47.2441
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none" points="
1573.51,1425.62 1573.51,47.2441
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none" points="
1823.2,1425.62 1823.2,47.2441
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none" points="
2096.84,1425.62 2096.84,47.2441
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none" points="
2346.53,1425.62 2346.53,47.2441
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none" points="
253.202,1425.62 2352.76,1425.62
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none" points="
253.202,1273.53 2352.76,1273.53
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none" points="
253.202,1106.86 2352.76,1106.86
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none" points="
253.202,954.768 2352.76,954.768
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none" points="
253.202,788.093 2352.76,788.093
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none" points="
253.202,636.005 2352.76,636.005
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none" points="
253.202,469.331 2352.76,469.331
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none" points="
253.202,317.242 2352.76,317.242
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none" points="
253.202,150.568 2352.76,150.568
"/>
<polyline clip-path="url(#clip7700)" style="stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none" points="
253.202,1425.62 2352.76,1425.62
"/>
<polyline clip-path="url(#clip7700)" style="stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none" points="
253.202,1425.62 253.202,47.2441
"/>
<polyline clip-path="url(#clip7700)" style="stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none" points="
253.202,1425.62 253.202,1409.08
"/>
<polyline clip-path="url(#clip7700)" style="stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none" points="
526.842,1425.62 526.842,1409.08
"/>
<polyline clip-path="url(#clip7700)" style="stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none" points="
776.535,1425.62 776.535,1409.08
"/>
<polyline clip-path="url(#clip7700)" style="stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none" points="
1050.17,1425.62 1050.17,1409.08
"/>
<polyline clip-path="url(#clip7700)" style="stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none" points="
1299.87,1425.62 1299.87,1409.08
"/>
<polyline clip-path="url(#clip7700)" style="stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none" points="
1573.51,1425.62 1573.51,1409.08
"/>
<polyline clip-path="url(#clip7700)" style="stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none" points="
1823.2,1425.62 1823.2,1409.08
"/>
<polyline clip-path="url(#clip7700)" style="stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none" points="
2096.84,1425.62 2096.84,1409.08
"/>
<polyline clip-path="url(#clip7700)" style="stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none" points="
2346.53,1425.62 2346.53,1409.08
"/>
<polyline clip-path="url(#clip7700)" style="stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none" points="
253.202,1425.62 278.397,1425.62
"/>
<polyline clip-path="url(#clip7700)" style="stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none" points="
253.202,1273.53 278.397,1273.53
"/>
<polyline clip-path="url(#clip7700)" style="stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none" points="
253.202,1106.86 278.397,1106.86
"/>
<polyline clip-path="url(#clip7700)" style="stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none" points="
253.202,954.768 278.397,954.768
"/>
<polyline clip-path="url(#clip7700)" style="stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none" points="
253.202,788.093 278.397,788.093
"/>
<polyline clip-path="url(#clip7700)" style="stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none" points="
253.202,636.005 278.397,636.005
"/>
<polyline clip-path="url(#clip7700)" style="stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none" points="
253.202,469.331 278.397,469.331
"/>
<polyline clip-path="url(#clip7700)" style="stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none" points="
253.202,317.242 278.397,317.242
"/>
<polyline clip-path="url(#clip7700)" style="stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none" points="
253.202,150.568 278.397,150.568
"/>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;" transform="rotate(0, 253.202, 1479.62)" x="253.202" y="1479.62">30</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;" transform="rotate(0, 526.842, 1479.62)" x="526.842" y="1479.62">100</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;" transform="rotate(0, 776.535, 1479.62)" x="776.535" y="1479.62">300</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;" transform="rotate(0, 1050.17, 1479.62)" x="1050.17" y="1479.62">1k</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;" transform="rotate(0, 1299.87, 1479.62)" x="1299.87" y="1479.62">3k</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;" transform="rotate(0, 1573.51, 1479.62)" x="1573.51" y="1479.62">10k</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;" transform="rotate(0, 1823.2, 1479.62)" x="1823.2" y="1479.62">30k</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;" transform="rotate(0, 2096.84, 1479.62)" x="2096.84" y="1479.62">100k</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;" transform="rotate(0, 2346.53, 1479.62)" x="2346.53" y="1479.62">300k</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;" transform="rotate(0, 229.202, 1443.12)" x="229.202" y="1443.12">10</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;" transform="rotate(0, 229.202, 1291.03)" x="229.202" y="1291.03">30</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;" transform="rotate(0, 229.202, 1124.36)" x="229.202" y="1124.36">100</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;" transform="rotate(0, 229.202, 972.268)" x="229.202" y="972.268">300</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;" transform="rotate(0, 229.202, 805.593)" x="229.202" y="805.593">1k</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;" transform="rotate(0, 229.202, 653.505)" x="229.202" y="653.505">3k</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;" transform="rotate(0, 229.202, 486.831)" x="229.202" y="486.831">10k</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;" transform="rotate(0, 229.202, 334.742)" x="229.202" y="334.742">30k</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;" transform="rotate(0, 229.202, 168.068)" x="229.202" y="168.068">100k</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:66px; text-anchor:middle;" transform="rotate(0, 1302.98, 1559.48)" x="1302.98" y="1559.48">Total confirmed cases</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:66px; text-anchor:middle;" transform="rotate(-90, 89.2861, 736.431)" x="89.2861" y="736.431">Δcases over 7 days</text>
</g>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -204.746,1592.29 -154.03,1552.47
-77.5564,1496.34 25.1711,1425.62 110.332,1400.38 172.137,1352.16 182.71,1352.16 182.71,1369.49 202.486,1352.16
202.486,1389.3 318.587,1304.42 318.587,1336.76 458.406,1197.38 487.215,1173.03 512.779,1152.33 548.504,1127.74 568.28,1137.75 647.443,1070.54
652.729,1106.86 722.96,1047.98
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="318.587" cy="1304.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="318.587" cy="1336.76" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="458.406" cy="1197.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="487.215" cy="1173.03" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="512.779" cy="1152.33" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="548.504" cy="1127.74" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="548.504" cy="1127.74" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="568.28" cy="1137.75" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="647.443" cy="1070.54" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="652.729" cy="1106.86" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="722.96" cy="1047.98" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="722.96" cy="1047.98" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-362.285,1648.42 3.5089,1425.62 44.947,1400.38 192.813,1310.31 274.864,1260.34 306.929,1240.81 329.676,1226.95 373.804,1205.61 390.965,1217.4 406.921,1211.38
425.409,1230.29 445.776,1244.5 464.468,1240.81 500.356,1211.38 535.756,1194.75 573.892,1160.25 612.853,1126.13 652.729,1093.66 667.887,1086.31 680.946,1080.47
697.624,1078.2 709.121,1082.77 728.642,1081.62 743.135,1089.94
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="274.864" cy="1260.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="306.929" cy="1240.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="329.676" cy="1226.95" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="373.804" cy="1205.61" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="390.965" cy="1217.4" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="406.921" cy="1211.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="425.409" cy="1230.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="445.776" cy="1244.5" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="464.468" cy="1240.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="500.356" cy="1211.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="535.756" cy="1194.75" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="573.892" cy="1160.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="612.853" cy="1126.13" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="652.729" cy="1093.66" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="667.887" cy="1086.31" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="680.946" cy="1080.47" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="697.624" cy="1078.2" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="709.121" cy="1082.77" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="728.642" cy="1081.62" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="743.135" cy="1089.94" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="743.135" cy="1089.94" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -270.131,1592.29 -154.03,1552.47 44.947,1412.42
124.11,1360.55 149.39,1344.25 161.048,1352.16 161.048,1369.49 161.048,1456.51 202.486,1400.38 220.678,1440.2 300.868,1329.66 360.025,1278.22
386.795,1256.2 410.741,1233.7 458.406,1192.16 495.19,1170.82 502.895,1168.64 601.686,1104.11 685.514,1047.98 716.146,1028.6 747.481,1008.16 778.045,992.76
822.35,964.319 846.977,946.266 870.701,948.013 897.582,950.228 927.931,931.854 974.246,898.022 1012.43,872.12
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="300.868" cy="1329.66" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="360.025" cy="1278.22" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="386.795" cy="1256.2" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="410.741" cy="1233.7" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="458.406" cy="1192.16" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="495.19" cy="1170.82" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="502.895" cy="1168.64" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="601.686" cy="1104.11" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="685.514" cy="1047.98" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="716.146" cy="1028.6" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="747.481" cy="1008.16" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="778.045" cy="992.76" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="822.35" cy="964.319" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="846.977" cy="946.266" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="870.701" cy="948.013" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="897.582" cy="950.228" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="927.931" cy="931.854" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="974.246" cy="898.022" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1012.43" cy="872.12" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1012.43" cy="872.12" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1744.38 312.832,1240.81
382.546,1197.38 461.457,1148.54 497.788,1126.13 554.619,1091.17 591.657,1069.47 639.277,1075.96 670.318,1051.65 710.138,1032.59 750.049,1016.55 782.516,997.704
800.935,997.077 824.2,987.4 827.856,1002.83 836.165,1009.52
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="312.832" cy="1240.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="312.832" cy="1240.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="382.546" cy="1197.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="461.457" cy="1148.54" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="497.788" cy="1126.13" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="554.619" cy="1091.17" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="591.657" cy="1069.47" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="639.277" cy="1075.96" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="670.318" cy="1051.65" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="710.138" cy="1032.59" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="750.049" cy="1016.55" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="782.516" cy="997.704" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="800.935" cy="997.077" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="824.2" cy="987.4" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="827.856" cy="1002.83" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="836.165" cy="1009.52" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="836.165" cy="1009.52" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -362.285,1648.42 -270.131,1592.29 -204.746,1552.47 -204.746,1592.29 -154.03,1592.29 -77.5564,1521.58
-77.5564,1552.47 -47.2073,1521.58
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -270.131,1648.42
-77.5564,1496.34 -77.5564,1552.47
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1648.42 -47.2073,1456.51 44.947,1400.38 124.11,1360.55 149.39,1344.25
260.655,1278.22 281.649,1293.34 345.356,1260.34 395.06,1220.51 439.188,1200.07 473.267,1177.57 519.919,1141.25 582.948,1111.07 630.805,1077.08 749.196,997.077
777.291,982.804 834.41,946.266 834.41,951.124 893.543,913.222 929.868,895.293 965.839,875.462 983.27,889.99 1005.07,878.887 1062.13,844.155
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="260.655" cy="1278.22" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="281.649" cy="1293.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="345.356" cy="1260.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="395.06" cy="1220.51" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="439.188" cy="1200.07" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="473.267" cy="1177.57" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="519.919" cy="1141.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="582.948" cy="1111.07" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="630.805" cy="1077.08" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="749.196" cy="997.077" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="777.291" cy="982.804" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="834.41" cy="946.266" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="834.41" cy="951.124" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="893.543" cy="913.222" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="929.868" cy="895.293" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="965.839" cy="875.462" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="983.27" cy="889.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1005.07" cy="878.887" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1062.13" cy="844.155" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1062.13" cy="844.155" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1062.13" cy="844.155" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -204.746,1592.29 -47.2073,1475 137.101,1352.16
220.678,1298.77 378.217,1200.07 470.371,1143.04 487.215,1132.65 558.607,1092.41 596.727,1072.68 633.664,1058.31 677.458,1035.04 721.034,1023.2 734.186,1032.59
748.34,1024.72 768.83,1029.38 797.507,1015.83 845.862,981.679 855.163,991.551 884.303,981.679 906.735,962.843 922.814,952.026
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="378.217" cy="1200.07" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="470.371" cy="1143.04" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="487.215" cy="1132.65" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="558.607" cy="1092.41" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="596.727" cy="1072.68" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="633.664" cy="1058.31" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="677.458" cy="1035.04" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="721.034" cy="1023.2" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="734.186" cy="1032.59" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="748.34" cy="1024.72" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="768.83" cy="1029.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="797.507" cy="1015.83" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="845.862" cy="981.679" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="855.163" cy="991.551" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="884.303" cy="981.679" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="906.735" cy="962.843" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="922.814" cy="952.026" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="922.814" cy="952.026" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#00a9ad; stroke-width:16; stroke-opacity:1; fill:none" points="
-112.592,1496.34 -20.4375,1440.2 44.947,1400.38 44.947,1456.51 44.947,1475 63.1392,1456.51 63.1392,1475 79.9825,1521.58 95.6632,1496.34
95.6632,1592.29 95.6632,1648.42 95.6632,1744.38 211.764,1425.62 229.256,1400.38 253.202,1369.49 312.832,1304.42
378.217,1244.5 390.965,1233.7 410.741,1217.4 421.83,1240.81 464.468,1205.61 505.407,1175.28 542.219,1160.25 582.948,1144.85 582.948,1150.42 684.381,1060.28
735.097,1020.2 774.251,997.077 828.46,961.384 869.697,935.419 921.617,901.747 962.855,870.103 996.887,860.903 1065.76,815.398 1149.63,756.981 1168.36,751.241
1212.66,723.721 1245.72,707.03 1285,683.483 1310.45,669.693 1343.82,657.476 1364.34,664.892 1384.89,651.672 1394.98,660.417 1409.61,661.356
"/>
<path clip-path="url(#clip7702)" d="M253.202 1353.49 L249.442 1364.3 L237.986 1364.54 L247.122 1371.47 L243.794 1382.43 L253.202 1375.89 L262.61 1382.43 L259.282 1371.47 L268.418 1364.54 L256.962 1364.3 L253.202 1353.49 Z" fill="#00a9ad" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<path clip-path="url(#clip7702)" d="M312.832 1288.42 L309.072 1299.24 L297.616 1299.48 L306.752 1306.41 L303.424 1317.37 L312.832 1310.82 L322.24 1317.37 L318.912 1306.41 L328.048 1299.48 L316.592 1299.24 L312.832 1288.42 Z" fill="#00a9ad" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<path clip-path="url(#clip7702)" d="M378.217 1228.5 L374.457 1239.31 L363.001 1239.55 L372.137 1246.48 L368.809 1257.44 L378.217 1250.9 L387.625 1257.44 L384.297 1246.48 L393.433 1239.55 L381.977 1239.31 L378.217 1228.5 Z" fill="#00a9ad" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<path clip-path="url(#clip7702)" d="M390.965 1217.7 L387.205 1228.52 L375.749 1228.76 L384.885 1235.69 L381.557 1246.65 L390.965 1240.1 L400.373 1246.65 L397.045 1235.69 L406.181 1228.76 L394.725 1228.52 L390.965 1217.7 Z" fill="#00a9ad" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<path clip-path="url(#clip7702)" d="M410.741 1201.4 L406.981 1212.21 L395.525 1212.45 L404.661 1219.38 L401.333 1230.34 L410.741 1223.8 L420.149 1230.34 L416.821 1219.38 L425.957 1212.45 L414.501 1212.21 L410.741 1201.4 Z" fill="#00a9ad" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<path clip-path="url(#clip7702)" d="M421.83 1224.81 L418.07 1235.62 L406.614 1235.86 L415.75 1242.79 L412.422 1253.75 L421.83 1247.21 L431.238 1253.75 L427.91 1242.79 L437.046 1235.86 L425.59 1235.62 L421.83 1224.81 Z" fill="#00a9ad" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<path clip-path="url(#clip7702)" d="M464.468 1189.61 L460.708 1200.43 L449.252 1200.67 L458.388 1207.59 L455.06 1218.55 L464.468 1212.01 L473.876 1218.55 L470.548 1207.59 L479.684 1200.67 L468.228 1200.43 L464.468 1189.61 Z" fill="#00a9ad" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<path clip-path="url(#clip7702)" d="M505.407 1159.28 L501.647 1170.1 L490.191 1170.34 L499.327 1177.27 L495.999 1188.23 L505.407 1181.68 L514.815 1188.23 L511.487 1177.27 L520.623 1170.34 L509.167 1170.1 L505.407 1159.28 Z" fill="#00a9ad" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<path clip-path="url(#clip7702)" d="M542.219 1144.25 L538.459 1155.06 L527.003 1155.3 L536.139 1162.23 L532.811 1173.19 L542.219 1166.65 L551.627 1173.19 L548.299 1162.23 L557.435 1155.3 L545.979 1155.06 L542.219 1144.25 Z" fill="#00a9ad" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<path clip-path="url(#clip7702)" d="M582.948 1128.85 L579.188 1139.66 L567.732 1139.9 L576.868 1146.83 L573.54 1157.79 L582.948 1151.25 L592.356 1157.79 L589.028 1146.83 L598.164 1139.9 L586.708 1139.66 L582.948 1128.85 Z" fill="#00a9ad" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<path clip-path="url(#clip7702)" d="M582.948 1134.42 L579.188 1145.24 L567.732 1145.48 L576.868 1152.41 L573.54 1163.37 L582.948 1156.82 L592.356 1163.37 L589.028 1152.41 L598.164 1145.48 L586.708 1145.24 L582.948 1134.42 Z" fill="#00a9ad" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<path clip-path="url(#clip7702)" d="M684.381 1044.28 L680.621 1055.09 L669.165 1055.33 L678.301 1062.26 L674.973 1073.22 L684.381 1066.68 L693.789 1073.22 L690.461 1062.26 L699.597 1055.33 L688.141 1055.09 L684.381 1044.28 Z" fill="#00a9ad" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<path clip-path="url(#clip7702)" d="M735.097 1004.2 L731.337 1015.02 L719.881 1015.26 L729.017 1022.19 L725.689 1033.15 L735.097 1026.6 L744.505 1033.15 L741.177 1022.19 L750.313 1015.26 L738.857 1015.02 L735.097 1004.2 Z" fill="#00a9ad" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<path clip-path="url(#clip7702)" d="M774.251 981.077 L770.491 991.893 L759.035 992.133 L768.171 999.061 L764.843 1010.02 L774.251 1003.48 L783.659 1010.02 L780.331 999.061 L789.467 992.133 L778.011 991.893 L774.251 981.077 Z" fill="#00a9ad" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<path clip-path="url(#clip7702)" d="M828.46 945.384 L824.7 956.2 L813.244 956.44 L822.38 963.368 L819.052 974.328 L828.46 967.784 L837.868 974.328 L834.54 963.368 L843.676 956.44 L832.22 956.2 L828.46 945.384 Z" fill="#00a9ad" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<path clip-path="url(#clip7702)" d="M869.697 919.419 L865.937 930.235 L854.481 930.475 L863.617 937.403 L860.289 948.363 L869.697 941.819 L879.105 948.363 L875.777 937.403 L884.913 930.475 L873.457 930.235 L869.697 919.419 Z" fill="#00a9ad" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<path clip-path="url(#clip7702)" d="M921.617 885.747 L917.857 896.563 L906.401 896.803 L915.537 903.731 L912.209 914.691 L921.617 908.147 L931.025 914.691 L927.697 903.731 L936.833 896.803 L925.377 896.563 L921.617 885.747 Z" fill="#00a9ad" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<path clip-path="url(#clip7702)" d="M962.855 854.103 L959.095 864.919 L947.639 865.159 L956.775 872.087 L953.447 883.047 L962.855 876.503 L972.263 883.047 L968.935 872.087 L978.071 865.159 L966.615 864.919 L962.855 854.103 Z" fill="#00a9ad" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<path clip-path="url(#clip7702)" d="M996.887 844.903 L993.127 855.719 L981.671 855.959 L990.807 862.887 L987.479 873.847 L996.887 867.303 L1006.29 873.847 L1002.97 862.887 L1012.1 855.959 L1000.65 855.719 L996.887 844.903 Z" fill="#00a9ad" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<path clip-path="url(#clip7702)" d="M1065.76 799.398 L1062 810.214 L1050.55 810.454 L1059.68 817.382 L1056.36 828.342 L1065.76 821.798 L1075.17 828.342 L1071.84 817.382 L1080.98 810.454 L1069.52 810.214 L1065.76 799.398 Z" fill="#00a9ad" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<path clip-path="url(#clip7702)" d="M1149.63 740.981 L1145.87 751.797 L1134.42 752.037 L1143.55 758.965 L1140.23 769.925 L1149.63 763.381 L1159.04 769.925 L1155.71 758.965 L1164.85 752.037 L1153.39 751.797 L1149.63 740.981 Z" fill="#00a9ad" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<path clip-path="url(#clip7702)" d="M1168.36 735.241 L1164.6 746.057 L1153.14 746.297 L1162.28 753.225 L1158.95 764.185 L1168.36 757.641 L1177.76 764.185 L1174.44 753.225 L1183.57 746.297 L1172.12 746.057 L1168.36 735.241 Z" fill="#00a9ad" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<path clip-path="url(#clip7702)" d="M1212.66 707.721 L1208.9 718.537 L1197.44 718.777 L1206.58 725.705 L1203.25 736.665 L1212.66 730.121 L1222.07 736.665 L1218.74 725.705 L1227.88 718.777 L1216.42 718.537 L1212.66 707.721 Z" fill="#00a9ad" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<path clip-path="url(#clip7702)" d="M1245.72 691.03 L1241.96 701.846 L1230.5 702.086 L1239.64 709.014 L1236.31 719.974 L1245.72 713.43 L1255.12 719.974 L1251.8 709.014 L1260.93 702.086 L1249.48 701.846 L1245.72 691.03 Z" fill="#00a9ad" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<path clip-path="url(#clip7702)" d="M1285 667.483 L1281.24 678.299 L1269.78 678.539 L1278.92 685.467 L1275.59 696.427 L1285 689.883 L1294.41 696.427 L1291.08 685.467 L1300.21 678.539 L1288.76 678.299 L1285 667.483 Z" fill="#00a9ad" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<path clip-path="url(#clip7702)" d="M1310.45 653.693 L1306.69 664.509 L1295.24 664.749 L1304.37 671.677 L1301.04 682.637 L1310.45 676.093 L1319.86 682.637 L1316.53 671.677 L1325.67 664.749 L1314.21 664.509 L1310.45 653.693 Z" fill="#00a9ad" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<path clip-path="url(#clip7702)" d="M1343.82 641.476 L1340.06 652.292 L1328.6 652.532 L1337.74 659.46 L1334.41 670.42 L1343.82 663.876 L1353.23 670.42 L1349.9 659.46 L1359.03 652.532 L1347.58 652.292 L1343.82 641.476 Z" fill="#00a9ad" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<path clip-path="url(#clip7702)" d="M1364.34 648.892 L1360.58 659.708 L1349.13 659.948 L1358.26 666.876 L1354.93 677.836 L1364.34 671.292 L1373.75 677.836 L1370.42 666.876 L1379.56 659.948 L1368.1 659.708 L1364.34 648.892 Z" fill="#00a9ad" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<path clip-path="url(#clip7702)" d="M1384.89 635.672 L1381.13 646.488 L1369.67 646.728 L1378.81 653.656 L1375.48 664.616 L1384.89 658.072 L1394.3 664.616 L1390.97 653.656 L1400.11 646.728 L1388.65 646.488 L1384.89 635.672 Z" fill="#00a9ad" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<path clip-path="url(#clip7702)" d="M1394.98 644.417 L1391.22 655.233 L1379.77 655.473 L1388.9 662.401 L1385.57 673.361 L1394.98 666.817 L1404.39 673.361 L1401.06 662.401 L1410.2 655.473 L1398.74 655.233 L1394.98 644.417 Z" fill="#00a9ad" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<path clip-path="url(#clip7702)" d="M1409.61 645.356 L1405.85 656.172 L1394.39 656.412 L1403.53 663.34 L1400.2 674.3 L1409.61 667.756 L1419.02 674.3 L1415.69 663.34 L1424.82 656.412 L1413.37 656.172 L1409.61 645.356 Z" fill="#00a9ad" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<path clip-path="url(#clip7702)" d="M1409.61 641.356 L1404.91 654.876 L1390.59 655.176 L1402.01 663.836 L1397.85 677.536 L1409.61 669.356 L1421.37 677.536 L1417.21 663.836 L1428.63 655.176 L1414.31 654.876 L1409.61 641.356 Z" fill="#00a9ad" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="0"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-362.285,1648.42 -362.285,1648.42 -270.131,1592.29 -20.4375,1440.2 79.9825,1379.04 137.101,1344.25 172.137,1336.76 245.497,1288.12 324.199,1240.81
390.965,1197.38 473.267,1156.23 535.756,1121.44 588.214,1089.94 662.946,1040.93 731.431,999.605 778.045,974.047 894.447,898.944 954.008,864.462 1015.9,826.816
1054.23,804.693 1115.33,768.745 1163.44,741.513 1209.19,713.742 1248.01,700.408 1285.32,681.546 1340.17,649.467 1390.71,616.416 1428.48,597.885 1441.24,598.201
1489.47,568.198 1512.83,558.033 1530.36,553.18 1544.14,559.699 1564.66,561.357 1577.56,568.169 1589.12,561.923
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="324.199" cy="1240.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="390.965" cy="1197.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="473.267" cy="1156.23" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="535.756" cy="1121.44" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="588.214" cy="1089.94" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="662.946" cy="1040.93" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="731.431" cy="999.605" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="778.045" cy="974.047" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="894.447" cy="898.944" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="954.008" cy="864.462" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1015.9" cy="826.816" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1054.23" cy="804.693" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1115.33" cy="768.745" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1163.44" cy="741.513" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1209.19" cy="713.742" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1248.01" cy="700.408" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1285.32" cy="681.546" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1340.17" cy="649.467" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1390.71" cy="616.416" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1428.48" cy="597.885" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1441.24" cy="598.201" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1489.47" cy="568.198" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1512.83" cy="558.033" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1530.36" cy="553.18" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1544.14" cy="559.699" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1564.66" cy="561.357" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1577.56" cy="568.169" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1589.12" cy="561.923" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1589.12" cy="561.923" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-270.131,1592.29 -270.131,1592.29 -112.592,1496.34 -20.4375,1440.2 -20.4375,1496.34 25.1711,1456.51
25.1711,1521.58 95.6632,1440.2 95.6632,1496.34 192.813,1379.04 237.521,1336.76 237.521,1352.16 340.249,1260.34 340.249,1278.22
382.546,1240.81 428.933,1226.95 452.179,1220.51 495.19,1179.9 510.348,1166.49 572.037,1141.25 640.658,1080.47 662.946,1071.6 694.385,1056.38 755.1,1010.21
775.015,1003.49 817.341,971.42
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="340.249" cy="1260.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="340.249" cy="1278.22" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="382.546" cy="1240.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="428.933" cy="1226.95" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="452.179" cy="1220.51" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="495.19" cy="1179.9" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="510.348" cy="1166.49" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="572.037" cy="1141.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="640.658" cy="1080.47" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="662.946" cy="1071.6" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="694.385" cy="1056.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="755.1" cy="1010.21" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="775.015" cy="1003.49" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="817.341" cy="971.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="817.341" cy="971.42" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -270.131,1592.29 -204.746,1552.47 -204.746,1592.29 -154.03,1552.47
-20.4375,1496.34 3.5089,1475 3.5089,1496.34 25.1711,1475 79.9825,1425.62 79.9825,1440.2 172.137,1360.55
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 192.813,1310.31 274.864,1260.34 294.64,1248.29 324.199,1230.29 355.24,1211.38 364.711,1208.46 364.711,1293.34 378.217,1336.76
390.965,1316.47 410.741,1304.42 489.904,1220.51 489.904,1240.81 515.184,1214.36 548.504,1175.28 678.626,1057.34 678.626,1060.28 678.626,1065.31 695.47,1075.96
699.758,1071.6 699.758,1082.77 714.161,1083.94 740.487,1175.28 759.225,1132.65 764.877,1121.44 780.292,1113.96 800.935,1081.62 828.46,1039.22 837.328,1038.37
852.467,1039.22 872.694,1025.48 876.63,1024.72 881.456,1032.59 892.181,1037.53 899.354,1062.27 921.216,1029.38 922.017,1050.72
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="274.864" cy="1260.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="274.864" cy="1260.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="294.64" cy="1248.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="324.199" cy="1230.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="355.24" cy="1211.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="364.711" cy="1208.46" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="364.711" cy="1293.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="378.217" cy="1336.76" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="390.965" cy="1316.47" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="410.741" cy="1304.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="489.904" cy="1220.51" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="489.904" cy="1240.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="515.184" cy="1214.36" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="548.504" cy="1175.28" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="678.626" cy="1057.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="678.626" cy="1060.28" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="678.626" cy="1065.31" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="695.47" cy="1075.96" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="699.758" cy="1071.6" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="699.758" cy="1082.77" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="714.161" cy="1083.94" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="740.487" cy="1175.28" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="759.225" cy="1132.65" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="764.877" cy="1121.44" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="780.292" cy="1113.96" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="800.935" cy="1081.62" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="828.46" cy="1039.22" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="837.328" cy="1038.37" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="852.467" cy="1039.22" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="872.694" cy="1025.48" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="876.63" cy="1024.72" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="881.456" cy="1032.59" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="892.181" cy="1037.53" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="899.354" cy="1062.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="921.216" cy="1029.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="922.017" cy="1050.72" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="922.017" cy="1050.72" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-270.131,1592.29 -270.131,1592.29 -154.03,1648.42 -47.2073,1521.58 3.5089,1475
79.9825,1412.42 124.11,1379.04 161.048,1352.16 211.764,1316.47 229.256,1316.47 274.864,1298.77 312.832,1278.22 312.832,1298.77 340.249,1288.12 360.025,1283.08
360.025,1310.31 360.025,1322.91 364.711,1360.55 373.804,1400.38 386.795,1369.49
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="274.864" cy="1298.77" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="312.832" cy="1278.22" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="312.832" cy="1298.77" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="340.249" cy="1288.12" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="360.025" cy="1283.08" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="360.025" cy="1310.31" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="360.025" cy="1322.91" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="364.711" cy="1360.55" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="373.804" cy="1400.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="386.795" cy="1369.49" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="386.795" cy="1369.49" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-362.285,1648.42 -362.285,1648.42 -154.03,1521.58 -112.592,1496.34 79.9825,1379.04 124.11,1352.16 137.101,1360.55 137.101,1389.3
202.486,1336.76 220.678,1329.66 274.864,1336.76 274.864,1360.55 281.649,1360.55
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="274.864" cy="1336.76" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="274.864" cy="1360.55" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="281.649" cy="1360.55" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="281.649" cy="1360.55" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="281.649" cy="1360.55" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -112.592,1496.34 -112.592,1521.58
-20.4375,1456.51 -20.4375,1592.29 44.947,1496.34 229.256,1322.91 294.64,1273.53 294.64,1288.12 373.804,1226.95
373.804,1237.21 442.506,1226.95 464.468,1205.61 478.949,1217.4 492.563,1252.19 512.779,1298.77 512.779,1344.25
622.006,1154.27 637.886,1143.04
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="294.64" cy="1273.53" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="294.64" cy="1288.12" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="373.804" cy="1226.95" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="373.804" cy="1237.21" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="442.506" cy="1226.95" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="464.468" cy="1205.61" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="464.468" cy="1205.61" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="478.949" cy="1217.4" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="478.949" cy="1217.4" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="492.563" cy="1252.19" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="492.563" cy="1252.19" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="512.779" cy="1298.77" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="512.779" cy="1344.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="512.779" cy="1344.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="622.006" cy="1154.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="622.006" cy="1154.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="637.886" cy="1143.04" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="637.886" cy="1143.04" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1744.38 -47.2073,1475 63.1392,1400.38
192.813,1316.47 369.303,1205.61 546.428,1096.2 646.102,1035.04 684.381,1012.29 724.87,990.95 750.049,977.81 786.901,958.984 786.901,972.464 917.987,898.636
965.509,878.621 1022.66,840.267 1062.99,815.735 1099.61,791.456 1140.2,766.122 1183.13,733.727 1235.19,714.798 1285.4,683.678 1328.38,660.417 1350.16,651.362
1380.04,634.81 1413.09,616.617 1466.14,581.732 1501.48,564.542 1552.92,532.877 1591.76,510.362 1613.02,497.548 1629.17,491.732 1649.4,483.502
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="369.303" cy="1205.61" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="546.428" cy="1096.2" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="646.102" cy="1035.04" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="684.381" cy="1012.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="724.87" cy="990.95" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="750.049" cy="977.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="786.901" cy="958.984" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="786.901" cy="972.464" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="917.987" cy="898.636" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="965.509" cy="878.621" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1022.66" cy="840.267" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1062.99" cy="815.735" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1099.61" cy="791.456" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1140.2" cy="766.122" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1183.13" cy="733.727" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1235.19" cy="714.798" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1285.4" cy="683.678" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1328.38" cy="660.417" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1350.16" cy="651.362" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1380.04" cy="634.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1413.09" cy="616.617" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1466.14" cy="581.732" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1501.48" cy="564.542" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1552.92" cy="532.877" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1591.76" cy="510.362" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1613.02" cy="497.548" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1629.17" cy="491.732" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1649.4" cy="483.502" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1649.4" cy="483.502" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1648.42 -154.03,1552.47 -112.592,1521.58 -112.592,1552.47
-112.592,1744.38 -20.4375,1592.29 63.1392,1475
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1744.38
-270.131,1744.38 -204.746,1648.42
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-362.285,1648.42 -362.285,1648.42 -270.131,1592.29 3.5089,1425.62 25.1711,1412.42 44.947,1425.62 95.6632,1400.38
149.39,1440.2 202.486,1379.04 229.256,1360.55 245.497,1344.25 267.87,1329.66 335.024,1268.99 414.498,1214.36 458.406,1189.62 478.949,1184.67 519.919,1156.23
542.219,1141.25 558.607,1132.65
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="267.87" cy="1329.66" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="335.024" cy="1268.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="414.498" cy="1214.36" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="458.406" cy="1189.62" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="478.949" cy="1184.67" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="519.919" cy="1156.23" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="542.219" cy="1141.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="558.607" cy="1132.65" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="558.607" cy="1132.65" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-362.285,1648.42 -362.285,1648.42 -270.131,1592.29 -154.03,1521.58 -77.5564,1475 25.1711,1440.2 63.1392,1412.42 137.101,1369.49
202.486,1322.91 211.764,1316.47 220.678,1322.91 306.929,1268.99 421.83,1197.38 500.356,1144.85 510.348,1146.68 579.369,1104.11 596.727,1092.41 642.031,1060.28
655.327,1062.27 673.916,1072.68 722.96,1052.58 742.256,1037.53 793.324,1012.99 822.968,990.352 853.009,977.81 873.19,962.843
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="306.929" cy="1268.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="421.83" cy="1197.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="500.356" cy="1144.85" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="510.348" cy="1146.68" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="579.369" cy="1104.11" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="596.727" cy="1092.41" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="642.031" cy="1060.28" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="655.327" cy="1062.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="673.916" cy="1072.68" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="722.96" cy="1052.58" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="742.256" cy="1037.53" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="793.324" cy="1012.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="822.968" cy="990.352" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="853.009" cy="977.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="873.19" cy="962.843" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="873.19" cy="962.843" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1648.42 -204.746,1592.29 63.1392,1400.38
63.1392,1412.42 161.048,1344.25 211.764,1310.31 260.655,1278.22 306.929,1256.2 378.217,1208.46 620.506,1062.27 636.488,1058.31 684.381,1029.38
791.912,959.461 825.426,939.905 941.893,866.154 997.461,849.444 1054.9,807.372 1149.19,743.104 1198.91,712.694 1234.18,697.356 1263.29,680.079 1298.73,668.988
1329.45,654.543 1359.73,641.512 1379.35,650.079 1395.98,652.917 1446.43,615.856 1487.05,586.748
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="260.655" cy="1278.22" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="306.929" cy="1256.2" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="378.217" cy="1208.46" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="620.506" cy="1062.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="620.506" cy="1062.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="636.488" cy="1058.31" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="684.381" cy="1029.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="791.912" cy="959.461" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="825.426" cy="939.905" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="941.893" cy="866.154" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="997.461" cy="849.444" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1054.9" cy="807.372" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1149.19" cy="743.104" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1198.91" cy="712.694" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1234.18" cy="697.356" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1263.29" cy="680.079" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1298.73" cy="668.988" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1329.45" cy="654.543" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1359.73" cy="641.512" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1379.35" cy="650.079" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1395.98" cy="652.917" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1446.43" cy="615.856" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1487.05" cy="586.748" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1487.05" cy="586.748" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 25.1711,1412.42 300.868,1244.5 318.587,1233.7 369.303,1202.81 386.795,1194.75 395.06,1189.62 439.188,1184.67
461.457,1168.64 470.371,1230.29 484.493,1223.69 497.788,1240.81 505.407,1244.5 535.756,1208.46 546.428,1230.29 556.622,1237.21 558.607,1244.5 568.28,1244.5
579.369,1240.81 581.166,1248.29 584.717,1298.77 588.214,1316.47
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="300.868" cy="1244.5" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="318.587" cy="1233.7" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="369.303" cy="1202.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="386.795" cy="1194.75" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="395.06" cy="1189.62" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="439.188" cy="1184.67" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="461.457" cy="1168.64" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="470.371" cy="1230.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="484.493" cy="1223.69" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="497.788" cy="1240.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="505.407" cy="1244.5" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="535.756" cy="1208.46" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="546.428" cy="1230.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="556.622" cy="1237.21" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="558.607" cy="1244.5" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="568.28" cy="1244.5" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="579.369" cy="1240.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="581.166" cy="1248.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="584.717" cy="1298.77" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="588.214" cy="1316.47" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="588.214" cy="1316.47" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-204.746,1552.47 -204.746,1552.47 -77.5564,1475 192.813,1310.31 324.199,1230.29 373.804,1211.38 378.217,1208.46 435.821,1170.82
507.891,1129.35 512.779,1126.13 581.166,1101.43 637.886,1079.33 669.105,1064.29 685.514,1051.65 703.967,1049.8 727.705,1050.72 747.481,1033.4 771.169,1036.69
798.885,1035.04 808.958,1042.66 817.341,1043.53 841.351,1024.72 854.088,1025.48
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="324.199" cy="1230.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="373.804" cy="1211.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="378.217" cy="1208.46" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="435.821" cy="1170.82" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="507.891" cy="1129.35" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="512.779" cy="1126.13" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="581.166" cy="1101.43" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="637.886" cy="1079.33" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="669.105" cy="1064.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="685.514" cy="1051.65" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="703.967" cy="1049.8" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="727.705" cy="1050.72" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="747.481" cy="1033.4" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="771.169" cy="1036.69" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="798.885" cy="1035.04" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="808.958" cy="1042.66" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="817.341" cy="1043.53" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="841.351" cy="1024.72" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="854.088" cy="1025.48" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="854.088" cy="1025.48" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -362.285,1648.42 -270.131,1592.29 95.6632,1369.49 95.6632,1379.04 161.048,1344.25 274.864,1268.99
318.587,1240.81 425.409,1173.03 461.457,1152.33 524.557,1130.99 556.622,1108.25 612.853,1074.86 622.006,1082.77 660.434,1060.28 692.199,1057.34 708.1,1053.52
731.431,1053.52 744.883,1053.52 762.472,1064.29
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="274.864" cy="1268.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="318.587" cy="1240.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="425.409" cy="1173.03" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="461.457" cy="1152.33" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="524.557" cy="1130.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="556.622" cy="1108.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="612.853" cy="1074.86" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="622.006" cy="1082.77" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="660.434" cy="1060.28" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="692.199" cy="1057.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="708.1" cy="1053.52" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="731.431" cy="1053.52" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="744.883" cy="1053.52" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="762.472" cy="1064.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="762.472" cy="1064.29" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -270.131,1592.29 -204.746,1552.47 -154.03,1552.47 -154.03,1648.42 -112.592,1592.29
-112.592,1648.42
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1744.38 -270.131,1648.42
-154.03,1552.47 -77.5564,1496.34 -77.5564,1521.58 274.864,1268.99 288.238,1264.6 300.868,1256.2 373.804,1214.36 382.546,1214.36 487.215,1143.04
495.19,1137.75 505.407,1182.27 517.564,1175.28 517.564,1179.9 524.557,1208.46 524.557,1214.36 533.56,1336.76 542.219,1329.66 546.428,1344.25 546.428,1389.3
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="274.864" cy="1268.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="288.238" cy="1264.6" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="300.868" cy="1256.2" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="373.804" cy="1214.36" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="382.546" cy="1214.36" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="487.215" cy="1143.04" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="495.19" cy="1137.75" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="505.407" cy="1182.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="517.564" cy="1175.28" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="517.564" cy="1179.9" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="524.557" cy="1208.46" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="524.557" cy="1214.36" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="533.56" cy="1336.76" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="542.219" cy="1329.66" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="546.428" cy="1344.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="546.428" cy="1389.3" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="546.428" cy="1389.3" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1648.42 -362.285,1744.38 -204.746,1648.42
3.5089,1456.51 63.1392,1412.42 161.048,1344.25 229.256,1298.77 318.587,1240.81 395.06,1197.38 432.403,1187.12 461.457,1166.49 461.457,1173.03
505.407,1154.27 505.407,1168.64 601.686,1108.25 601.686,1132.65 676.283,1073.77 719.091,1043.53
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="318.587" cy="1240.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="395.06" cy="1197.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="432.403" cy="1187.12" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="461.457" cy="1166.49" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="461.457" cy="1173.03" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="505.407" cy="1154.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="505.407" cy="1168.64" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="601.686" cy="1108.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="601.686" cy="1132.65" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="676.283" cy="1073.77" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="719.091" cy="1043.53" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="719.091" cy="1043.53" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#e26f46; stroke-width:8; stroke-opacity:0.5; fill:none" points="
-362.285,1648.42 -362.285,1648.42 -204.746,1552.47 -204.746,1592.29 -204.746,1648.42 -154.03,1592.29 -77.5564,1592.29
-77.5564,1648.42 -47.2073,1744.38
-20.4375,1648.42 3.5089,1648.42 25.1711,1592.29 63.1392,1521.58 79.9825,1521.58 161.048,1412.42 202.486,1369.49
229.256,1352.16 253.202,1336.76 274.864,1316.47 300.868,1304.42 364.711,1252.19 386.795,1256.2 425.409,1233.7 467.439,1202.81 473.267,1205.61 544.333,1146.68
562.526,1137.75 676.283,1056.38 682.096,1056.38 736.908,1019.46 850.287,938.257 882.409,915.288 954.7,871.108 999.458,840.874 1036.84,827.919 1105.75,777.567
1137.58,760.906 1217.5,716.851 1283.37,672.068 1318.13,656.135 1367.63,625.265 1401.03,605.52 1440.75,586.199 1467.77,570.622 1505.01,556.96 1537.29,546.253
1563.28,533.096
"/>
<circle clip-path="url(#clip7702)" cx="253.202" cy="1336.76" r="7" fill="#e26f46" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="274.864" cy="1316.47" r="7" fill="#e26f46" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="300.868" cy="1304.42" r="7" fill="#e26f46" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="364.711" cy="1252.19" r="7" fill="#e26f46" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="386.795" cy="1256.2" r="7" fill="#e26f46" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="425.409" cy="1233.7" r="7" fill="#e26f46" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="467.439" cy="1202.81" r="7" fill="#e26f46" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="473.267" cy="1205.61" r="7" fill="#e26f46" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="544.333" cy="1146.68" r="7" fill="#e26f46" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="562.526" cy="1137.75" r="7" fill="#e26f46" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="676.283" cy="1056.38" r="7" fill="#e26f46" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="682.096" cy="1056.38" r="7" fill="#e26f46" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="736.908" cy="1019.46" r="7" fill="#e26f46" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="850.287" cy="938.257" r="7" fill="#e26f46" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="882.409" cy="915.288" r="7" fill="#e26f46" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="954.7" cy="871.108" r="7" fill="#e26f46" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="999.458" cy="840.874" r="7" fill="#e26f46" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1036.84" cy="827.919" r="7" fill="#e26f46" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1105.75" cy="777.567" r="7" fill="#e26f46" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1137.58" cy="760.906" r="7" fill="#e26f46" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1217.5" cy="716.851" r="7" fill="#e26f46" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1283.37" cy="672.068" r="7" fill="#e26f46" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1318.13" cy="656.135" r="7" fill="#e26f46" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1367.63" cy="625.265" r="7" fill="#e26f46" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1401.03" cy="605.52" r="7" fill="#e26f46" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1440.75" cy="586.199" r="7" fill="#e26f46" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1467.77" cy="570.622" r="7" fill="#e26f46" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1505.01" cy="556.96" r="7" fill="#e26f46" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1537.29" cy="546.253" r="7" fill="#e26f46" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1563.28" cy="533.096" r="7" fill="#e26f46" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1563.28" cy="533.096" r="10" fill="#e26f46" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="0"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -270.131,1592.29 -270.131,1648.42
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -270.131,1592.29 -270.131,1648.42
-154.03,1552.47 -77.5564,1552.47
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -204.746,1552.47 -47.2073,1456.51 63.1392,1400.38 192.813,1316.47 192.813,1336.76
335.024,1237.21 414.498,1184.67 458.406,1164.38 626.449,1053.52 685.514,1019.46 723.917,1000.89 860.461,918.092 908.861,890.86 945.883,868.857
983.575,860.903 1031.72,833.378 1080.35,802.065 1110.85,778.986 1158.41,765.65 1197.13,744.31 1222.98,731.317 1253.75,714.391 1279.1,705.497 1302.2,700.041
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="335.024" cy="1237.21" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="414.498" cy="1184.67" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="458.406" cy="1164.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="626.449" cy="1053.52" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="685.514" cy="1019.46" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="723.917" cy="1000.89" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="723.917" cy="1000.89" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="860.461" cy="918.092" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="908.861" cy="890.86" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="945.883" cy="868.857" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="983.575" cy="860.903" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1031.72" cy="833.378" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1080.35" cy="802.065" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1110.85" cy="778.986" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1158.41" cy="765.65" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1197.13" cy="744.31" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1222.98" cy="731.317" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1253.75" cy="714.391" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1279.1" cy="705.497" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1302.2" cy="700.041" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1302.2" cy="700.041" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#009af9; stroke-width:8; stroke-opacity:0.5; fill:none" points="
1460.68,551.115 1526.76,509.193 1568.96,485.744 1612.87,462.774 1689.11,417.368 1727.8,397.19 1769.69,386.445 1802.93,364.312 1827.6,357.401 1852.38,346.368
1869.72,342.909 1887.61,352.833 1901.58,356.222 1912.23,368.752 1914.13,393.299 1980.34,320.473 2003.63,307.239 2010.56,310.054 2017.43,314.121 2023.54,316.874
2029.05,318.052 2030.3,317.89 2031.69,411.53 2033.12,480.994 2037.44,490.403 2037.5,528.775 2038.15,570.737 2039.65,612.974 2040.85,612.818 2042.11,613.758
2043.06,619.576 2044.29,669.517 2045.93,640.222 2046.51,640.937 2046.86,660.858 2047.22,677.689 2047.64,696.567 2048.08,709.676 2048.3,740.136 2048.45,804.07
2048.55,832.803 2048.63,852.938 2048.73,874.684 2048.76,916.683 2048.79,977.266 2048.88,1006.14 2048.96,1025.48 2049.04,1030.98 2049.11,1032.59 2049.23,1024.72
2049.38,995.21 2049.65,952.479 2049.8,942.415 2050.16,904.288 2050.34,894.097 2050.6,875.202 2050.79,868.609 2051.13,852.938 2051.45,848.37 2051.73,838.662
2052.07,840.065 2052.28,837.47 2052.51,839.864 2052.73,837.47
"/>
<circle clip-path="url(#clip7702)" cx="1460.68" cy="551.115" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1526.76" cy="509.193" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1568.96" cy="485.744" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1612.87" cy="462.774" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1689.11" cy="417.368" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1727.8" cy="397.19" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1769.69" cy="386.445" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1802.93" cy="364.312" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1827.6" cy="357.401" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1852.38" cy="346.368" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1869.72" cy="342.909" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1887.61" cy="352.833" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1901.58" cy="356.222" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1912.23" cy="368.752" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1914.13" cy="393.299" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1980.34" cy="320.473" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2003.63" cy="307.239" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2010.56" cy="310.054" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2017.43" cy="314.121" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2023.54" cy="316.874" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2029.05" cy="318.052" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2030.3" cy="317.89" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2031.69" cy="411.53" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2033.12" cy="480.994" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2037.44" cy="490.403" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2037.5" cy="528.775" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2038.15" cy="570.737" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2039.65" cy="612.974" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2040.85" cy="612.818" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2042.11" cy="613.758" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2043.06" cy="619.576" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2044.29" cy="669.517" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2045.93" cy="640.222" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2046.51" cy="640.937" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2046.86" cy="660.858" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2047.22" cy="677.689" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2047.64" cy="696.567" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2048.08" cy="709.676" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2048.3" cy="740.136" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2048.45" cy="804.07" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2048.55" cy="832.803" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2048.63" cy="852.938" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2048.73" cy="874.684" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2048.76" cy="916.683" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2048.79" cy="977.266" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2048.88" cy="1006.14" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2048.96" cy="1025.48" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2049.04" cy="1030.98" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2049.11" cy="1032.59" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2049.23" cy="1024.72" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2049.38" cy="995.21" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2049.65" cy="952.479" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2049.8" cy="942.415" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2050.16" cy="904.288" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2050.34" cy="894.097" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2050.6" cy="875.202" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2050.79" cy="868.609" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2051.13" cy="852.938" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2051.45" cy="848.37" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2051.73" cy="838.662" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2052.07" cy="840.065" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2052.28" cy="837.47" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2052.51" cy="839.864" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2052.73" cy="837.47" r="7" fill="#009af9" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2052.73" cy="837.47" r="10" fill="#009af9" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="0"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -270.131,1592.29 -20.4375,1440.2 63.1392,1400.38 182.71,1322.91 281.649,1260.34
386.795,1194.75 428.933,1173.03 510.348,1130.99 531.342,1116.9 582.948,1087.51 679.789,1030.18 717.132,1012.99 758.406,995.829 829.062,948.895 878.573,923.14
888.507,918.802 909.706,911.186 937.084,910.85 969.758,892.322 998.889,878.355 1027.74,876.507 1064.49,859.969
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="281.649" cy="1260.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="386.795" cy="1194.75" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="428.933" cy="1173.03" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="510.348" cy="1130.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="531.342" cy="1116.9" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="582.948" cy="1087.51" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="679.789" cy="1030.18" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="717.132" cy="1012.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="758.406" cy="995.829" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="829.062" cy="948.895" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="878.573" cy="923.14" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="888.507" cy="918.802" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="909.706" cy="911.186" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="937.084" cy="910.85" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="969.758" cy="892.322" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="998.889" cy="878.355" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1027.74" cy="876.507" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1064.49" cy="859.969" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1064.49" cy="859.969" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -270.131,1592.29 -270.131,1648.42 -204.746,1592.29
-204.746,1744.38 149.39,1360.55 149.39,1369.49
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1648.42 -270.131,1592.29 -204.746,1592.29 79.9825,1389.3 137.101,1360.55
192.813,1322.91 253.202,1283.08 294.64,1256.2 345.356,1226.95 360.025,1220.51 373.804,1244.5 373.804,1260.34 428.933,1226.95 428.933,1252.19 478.949,1217.4
522.25,1194.75 546.428,1175.28
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="253.202" cy="1283.08" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="294.64" cy="1256.2" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="345.356" cy="1226.95" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="360.025" cy="1220.51" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="373.804" cy="1244.5" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="373.804" cy="1260.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="428.933" cy="1226.95" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="428.933" cy="1252.19" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="478.949" cy="1217.4" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="522.25" cy="1194.75" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="546.428" cy="1175.28" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="546.428" cy="1175.28" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -154.03,1521.58 -20.4375,1440.2 63.1392,1389.3 182.71,1316.47 192.813,1316.47 220.678,1298.77 229.256,1316.47
288.238,1293.34 324.199,1264.6 369.303,1244.5 442.506,1211.38 500.356,1164.38 562.526,1119.91 593.36,1097.49 630.805,1078.2 656.614,1064.29 685.514,1049.8
717.132,1040.07 746.618,1030.18 772.715,1027.03 786.901,1025.48 798.197,1031.78 809.614,1033.4 827.251,1030.18
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="288.238" cy="1293.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="324.199" cy="1264.6" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="369.303" cy="1244.5" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="442.506" cy="1211.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="500.356" cy="1164.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="562.526" cy="1119.91" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="593.36" cy="1097.49" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="630.805" cy="1078.2" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="656.614" cy="1064.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="685.514" cy="1049.8" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="717.132" cy="1040.07" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="746.618" cy="1030.18" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="772.715" cy="1027.03" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="786.901" cy="1025.48" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="798.197" cy="1031.78" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="809.614" cy="1033.4" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="827.251" cy="1030.18" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="827.251" cy="1030.18" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -154.03,1521.58 -112.592,1521.58 -20.4375,1456.51
79.9825,1389.3 211.764,1304.42 455.314,1160.25 476.126,1148.54 517.564,1126.13 529.103,1118.4 529.103,1126.13 640.658,1049.8 644.753,1057.34
659.168,1098.79 672.723,1093.66
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="455.314" cy="1160.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="476.126" cy="1148.54" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="517.564" cy="1126.13" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="529.103" cy="1118.4" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="529.103" cy="1126.13" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="640.658" cy="1049.8" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="644.753" cy="1057.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="659.168" cy="1098.79" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="672.723" cy="1093.66" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="672.723" cy="1093.66" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -270.131,1592.29 -154.03,1521.58 -112.592,1496.34 -77.5564,1475 -20.4375,1456.51 3.5089,1475
25.1711,1496.34 44.947,1496.34 44.947,1521.58 79.9825,1521.58 149.39,1440.2 267.87,1322.91 306.929,1293.34 364.711,1244.5
399.083,1217.4 428.933,1200.07 478.949,1173.03 537.931,1127.74 582.948,1112.51 691.099,1035.04 738.704,1007.48 787.624,975.647 831.455,947.137 864.612,929.144
890.351,918.447 928.708,896.197 954.7,898.329 973.291,895.895 996.599,891.151 1017.74,888.267 1041.61,878.355
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="267.87" cy="1322.91" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="306.929" cy="1293.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="364.711" cy="1244.5" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="399.083" cy="1217.4" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="428.933" cy="1200.07" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="478.949" cy="1173.03" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="537.931" cy="1127.74" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="582.948" cy="1112.51" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="691.099" cy="1035.04" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="738.704" cy="1007.48" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="787.624" cy="975.647" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="831.455" cy="947.137" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="864.612" cy="929.144" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="890.351" cy="918.447" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="928.708" cy="896.197" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="954.7" cy="898.329" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="973.291" cy="895.895" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="996.599" cy="891.151" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1017.74" cy="888.267" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1041.61" cy="878.355" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1041.61" cy="878.355" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-270.131,1592.29 -204.746,1552.47 -154.03,1521.58 -77.5564,1475 25.1711,1456.51 110.332,1400.38 172.137,1352.16
288.238,1268.99 318.587,1248.29 360.025,1223.69 399.083,1202.81 435.821,1187.12 476.126,1168.64 566.378,1109.65 601.686,1101.43 647.443,1070.54 667.887,1062.27
697.624,1046.19
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="288.238" cy="1268.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="318.587" cy="1248.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="360.025" cy="1223.69" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="399.083" cy="1202.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="435.821" cy="1187.12" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="476.126" cy="1168.64" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="566.378" cy="1109.65" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="601.686" cy="1101.43" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="647.443" cy="1070.54" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="667.887" cy="1062.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="697.624" cy="1046.19" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="697.624" cy="1046.19" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-362.285,1648.42 -270.131,1592.29 -112.592,1496.34 79.9825,1379.04 220.678,1293.34 274.864,1268.99 350.352,1223.69 364.711,1223.69
435.821,1175.28 435.821,1194.75 487.215,1182.27 515.184,1158.22 560.575,1132.65 575.732,1141.25 589.942,1132.65 612.853,1139.49 636.488,1113.96 659.168,1113.96
699.758,1082.77 716.146,1088.72 745.752,1062.27 791.203,1019.46
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="274.864" cy="1268.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="350.352" cy="1223.69" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="364.711" cy="1223.69" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="435.821" cy="1175.28" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="435.821" cy="1194.75" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="487.215" cy="1182.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="515.184" cy="1158.22" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="560.575" cy="1132.65" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="575.732" cy="1141.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="589.942" cy="1132.65" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="612.853" cy="1139.49" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="636.488" cy="1113.96" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="659.168" cy="1113.96" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="699.758" cy="1082.77" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="716.146" cy="1088.72" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="745.752" cy="1062.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="791.203" cy="1019.46" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="791.203" cy="1019.46" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-270.131,1592.29 -270.131,1592.29 -154.03,1521.58 -47.2073,1456.51 44.947,1400.38 137.101,1344.25 149.39,1336.76 260.655,1283.08 324.199,1248.29
505.407,1132.65 512.779,1134.33 604.933,1078.2 671.523,1033.4 737.808,996.452 775.015,970.9 839.635,931.464 875.652,924.617 967.153,858.81 1008.65,839.062
1049.04,817.95 1075.93,807.851 1098.33,796.954 1125.67,788.37 1164.54,764.012 1199.03,759.322 1237.39,737.038 1270.04,719.947 1285.56,714.879 1299.94,709.44
1322.08,698.221 1335.42,702.63
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="260.655" cy="1283.08" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="260.655" cy="1283.08" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="324.199" cy="1248.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="505.407" cy="1132.65" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="512.779" cy="1134.33" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="604.933" cy="1078.2" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="671.523" cy="1033.4" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="737.808" cy="996.452" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="775.015" cy="970.9" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="839.635" cy="931.464" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="875.652" cy="924.617" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="967.153" cy="858.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1008.65" cy="839.062" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1049.04" cy="817.95" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1075.93" cy="807.851" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1098.33" cy="796.954" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1125.67" cy="788.37" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1164.54" cy="764.012" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1199.03" cy="759.322" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1237.39" cy="737.038" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1270.04" cy="719.947" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1285.56" cy="714.879" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1299.94" cy="709.44" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1322.08" cy="698.221" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1335.42" cy="702.63" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1335.42" cy="702.63" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -270.131,1592.29 -204.746,1552.47 -112.592,1496.34 25.1711,1412.42 25.1711,1425.62 202.486,1310.31 202.486,1322.91
300.868,1260.34 507.891,1124.55 747.481,975.647 865.638,903.967 940.424,857.433 1000.59,822.49 1009.46,816.923 1019.83,812.56 1034.41,812.066 1055.79,825.903
1075.12,843.122 1096.3,856.977 1116.18,875.202 1129.87,862.552 1144.44,850.092 1152.98,850.092 1173.17,838.862 1191.46,828.659 1210.31,819.331 1229.38,808.491
1245.91,795.778 1264.17,781.339 1280.5,764.829 1302.8,749.554 1320.84,738.772
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="300.868" cy="1260.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="507.891" cy="1124.55" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="747.481" cy="975.647" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="865.638" cy="903.967" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="940.424" cy="857.433" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1000.59" cy="822.49" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1009.46" cy="816.923" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1019.83" cy="812.56" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1034.41" cy="812.066" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1055.79" cy="825.903" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1075.12" cy="843.122" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1096.3" cy="856.977" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1116.18" cy="875.202" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1129.87" cy="862.552" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1144.44" cy="850.092" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1152.98" cy="850.092" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1173.17" cy="838.862" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1191.46" cy="828.659" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1210.31" cy="819.331" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1229.38" cy="808.491" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1245.91" cy="795.778" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1264.17" cy="781.339" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1280.5" cy="764.829" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1302.8" cy="749.554" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1320.84" cy="738.772" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1320.84" cy="738.772" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -270.131,1592.29 25.1711,1425.62 44.947,1412.42
79.9825,1389.3 137.101,1352.16 137.101,1369.49 253.202,1288.12 274.864,1316.47
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="253.202" cy="1288.12" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="274.864" cy="1316.47" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="274.864" cy="1316.47" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1648.42 -154.03,1552.47
-154.03,1592.29 25.1711,1440.2 25.1711,1496.34 172.137,1360.55 281.649,1278.22 452.179,1162.3
552.599,1105.48 686.642,1017.27 730.505,989.164 785.449,958.984 837.328,925.361 887.114,897.411 926.76,881.581 975.196,857.205 1015.63,846.247 1026.48,846.458
1073.69,819.505 1106.99,803.915
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="281.649" cy="1278.22" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="452.179" cy="1162.3" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="552.599" cy="1105.48" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="686.642" cy="1017.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="730.505" cy="989.164" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="785.449" cy="958.984" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="837.328" cy="925.361" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="887.114" cy="897.411" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="926.76" cy="881.581" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="975.196" cy="857.205" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1015.63" cy="846.247" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1026.48" cy="846.458" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1073.69" cy="819.505" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1106.99" cy="803.915" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1106.99" cy="803.915" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-112.592,1496.34 -112.592,1496.34 -77.5564,1475 3.5089,1425.62 63.1392,1389.3 79.9825,1456.51 95.6632,1440.2 95.6632,1456.51
124.11,1475 124.11,1552.47 237.521,1369.49 237.521,1379.04 300.868,1316.47 403.036,1223.69 550.561,1115.42 683.241,1023.95 822.35,933.427
895.347,890.28 996.312,825.903 1045.81,796.071 1068.09,784.81 1086.44,779.766 1127.13,762.393 1156.29,759.66 1186.65,749.974 1198.91,770.563 1203.35,790.749
1233.47,767.785 1279.93,725.208
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="300.868" cy="1316.47" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="403.036" cy="1223.69" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="550.561" cy="1115.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="683.241" cy="1023.95" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="822.35" cy="933.427" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="895.347" cy="890.28" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="996.312" cy="825.903" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1045.81" cy="796.071" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1068.09" cy="784.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1086.44" cy="779.766" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1127.13" cy="762.393" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1156.29" cy="759.66" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1186.65" cy="749.974" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1198.91" cy="770.563" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1203.35" cy="790.749" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1233.47" cy="767.785" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1279.93" cy="725.208" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1279.93" cy="725.208" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1744.38
-270.131,1648.42 95.6632,1379.04 364.711,1211.38 390.965,1194.75 406.921,1184.67 410.741,1182.27 435.821,1168.64 476.126,1166.49
546.428,1115.42 548.504,1175.28 618.996,1113.96 679.789,1063.27 679.789,1064.29 740.487,1018.73 764.877,1007.48 771.943,1021.69 796.121,999.605 821.73,1000.24
843.053,1006.81 871.7,974.578 890.351,986.237 908.438,979.455 924.796,963.333 937.458,963.333 954.354,959.461 972.333,951.124 993.413,944.541
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="364.711" cy="1211.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="390.965" cy="1194.75" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="406.921" cy="1184.67" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="410.741" cy="1182.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="435.821" cy="1168.64" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="476.126" cy="1166.49" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="546.428" cy="1115.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="548.504" cy="1175.28" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="618.996" cy="1113.96" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="679.789" cy="1063.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="679.789" cy="1064.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="740.487" cy="1018.73" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="764.877" cy="1007.48" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="771.943" cy="1021.69" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="796.121" cy="999.605" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="821.73" cy="1000.24" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="843.053" cy="1006.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="871.7" cy="974.578" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="890.351" cy="986.237" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="908.438" cy="979.455" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="924.796" cy="963.333" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="937.458" cy="963.333" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="954.354" cy="959.461" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="972.333" cy="951.124" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="993.413" cy="944.541" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="993.413" cy="944.541" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -270.131,1592.29 -154.03,1521.58 -20.4375,1440.2 63.1392,1400.38 149.39,1360.55
202.486,1322.91 253.202,1288.12 267.87,1288.12 267.87,1310.31
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="253.202" cy="1288.12" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="267.87" cy="1288.12" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="267.87" cy="1310.31" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="267.87" cy="1310.31" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -204.746,1552.47 -112.592,1496.34 -112.592,1521.58 -20.4375,1456.51
-20.4375,1521.58 44.947,1496.34 44.947,1592.29 95.6632,1496.34
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -204.746,1552.47 -112.592,1496.34 -112.592,1521.58 44.947,1412.42
95.6632,1379.04 95.6632,1412.42
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1648.42 -270.131,1648.42 3.5089,1440.2
44.947,1425.62 110.332,1379.04 110.332,1389.3 473.267,1158.22 558.607,1100.1 648.776,1040.93 689.993,1014.4 711.15,1002.18
742.256,984.51 750.049,979.455 763.276,1008.16 781.036,1017.27 795.425,1046.19 812.865,1053.52 823.585,1056.38 844.181,1054.47 909.284,968.842 924.401,958.509
950.511,937.848 962.186,932.246 973.928,928.379 983.27,923.508 993.413,923.876
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="473.267" cy="1158.22" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="558.607" cy="1100.1" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="648.776" cy="1040.93" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="689.993" cy="1014.4" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="711.15" cy="1002.18" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="742.256" cy="984.51" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="750.049" cy="979.455" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="763.276" cy="1008.16" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="781.036" cy="1017.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="795.425" cy="1046.19" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="812.865" cy="1053.52" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="823.585" cy="1056.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="844.181" cy="1054.47" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="909.284" cy="968.842" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="924.401" cy="958.509" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="950.511" cy="937.848" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="962.186" cy="932.246" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="973.928" cy="928.379" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="983.27" cy="923.508" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="993.413" cy="923.876" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="993.413" cy="923.876" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -204.746,1592.29
-112.592,1521.58 -20.4375,1456.51 -20.4375,1521.58
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -154.03,1521.58 -112.592,1496.34 -20.4375,1456.51 25.1711,1425.62
25.1711,1496.34 44.947,1475 44.947,1496.34 110.332,1475 172.137,1425.62 192.813,1400.38 220.678,1379.04 245.497,1352.16
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1648.42 -270.131,1592.29 -204.746,1552.47 -154.03,1521.58 -154.03,1552.47
-154.03,1592.29 -154.03,1648.42 -154.03,1744.38
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1744.38
-270.131,1648.42 -112.592,1521.58 -112.592,1552.47 44.947,1425.62 95.6632,1389.3 95.6632,1400.38 192.813,1352.16 253.202,1304.42
318.587,1256.2 406.921,1194.75 406.921,1211.38 626.449,1060.28 711.15,1004.14 729.576,997.077 758.406,981.679 791.912,963.825 802.292,965.81 841.919,937.034
868.689,957.094 902.857,955.694 943.715,921.316 969.109,907.202 997.174,892.322 1021.12,872.375 1040.42,868.857 1059.31,860.903 1085.27,849.013 1099.07,855.617
1118.72,847.304 1129.55,852.938 1134,866.886
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="253.202" cy="1304.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="318.587" cy="1256.2" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="406.921" cy="1194.75" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="406.921" cy="1211.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="626.449" cy="1060.28" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="711.15" cy="1004.14" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="729.576" cy="997.077" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="758.406" cy="981.679" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="791.912" cy="963.825" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="802.292" cy="965.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="841.919" cy="937.034" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="868.689" cy="957.094" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="902.857" cy="955.694" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="943.715" cy="921.316" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="969.109" cy="907.202" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="997.174" cy="892.322" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1021.12" cy="872.375" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1040.42" cy="868.857" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1059.31" cy="860.903" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1085.27" cy="849.013" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1099.07" cy="855.617" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1118.72" cy="847.304" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1129.55" cy="852.938" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1134" cy="866.886" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1134" cy="866.886" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#c271d2; stroke-width:8; stroke-opacity:0.5; fill:none" points="
-154.03,1521.58 -154.03,1521.58 -154.03,1592.29 -112.592,1592.29 -112.592,1648.42 -112.592,1744.38
25.1711,1521.58 44.947,1744.38
79.9825,1648.42 137.101,1496.34 306.929,1293.34 399.083,1217.4 526.842,1124.55 586.472,1083.94
673.916,1026.26 688.881,1018 767.257,969.353 830.261,936.628 954.354,859.041 1040.66,809.134 1079.16,787.265 1095.18,784.27 1183.01,723.895 1238.79,691.791
1238.79,698.293 1346.36,634.856 1391.82,613.209 1393.63,618.841 1481.91,553.002 1514.55,541.883 1552.67,522.091 1594.55,488.976 1628.87,482.737 1657.38,469.788
1683.76,447.466 1732.44,428.402 1759.05,414.06 1787.15,400.206 1819.77,383.562 1847.61,368.986 1877.55,350.214 1892.57,345.477 1916.21,342.222 1951.8,316.3
1972.05,307.665
"/>
<circle clip-path="url(#clip7702)" cx="306.929" cy="1293.34" r="7" fill="#c271d2" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="399.083" cy="1217.4" r="7" fill="#c271d2" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="526.842" cy="1124.55" r="7" fill="#c271d2" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="586.472" cy="1083.94" r="7" fill="#c271d2" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="673.916" cy="1026.26" r="7" fill="#c271d2" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="688.881" cy="1018" r="7" fill="#c271d2" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="767.257" cy="969.353" r="7" fill="#c271d2" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="830.261" cy="936.628" r="7" fill="#c271d2" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="954.354" cy="859.041" r="7" fill="#c271d2" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1040.66" cy="809.134" r="7" fill="#c271d2" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1079.16" cy="787.265" r="7" fill="#c271d2" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1095.18" cy="784.27" r="7" fill="#c271d2" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1183.01" cy="723.895" r="7" fill="#c271d2" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1238.79" cy="691.791" r="7" fill="#c271d2" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1238.79" cy="698.293" r="7" fill="#c271d2" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1346.36" cy="634.856" r="7" fill="#c271d2" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1391.82" cy="613.209" r="7" fill="#c271d2" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1393.63" cy="618.841" r="7" fill="#c271d2" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1481.91" cy="553.002" r="7" fill="#c271d2" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1514.55" cy="541.883" r="7" fill="#c271d2" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1552.67" cy="522.091" r="7" fill="#c271d2" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1594.55" cy="488.976" r="7" fill="#c271d2" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1628.87" cy="482.737" r="7" fill="#c271d2" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1657.38" cy="469.788" r="7" fill="#c271d2" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1683.76" cy="447.466" r="7" fill="#c271d2" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1732.44" cy="428.402" r="7" fill="#c271d2" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1759.05" cy="414.06" r="7" fill="#c271d2" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1787.15" cy="400.206" r="7" fill="#c271d2" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1819.77" cy="383.562" r="7" fill="#c271d2" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1847.61" cy="368.986" r="7" fill="#c271d2" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1877.55" cy="350.214" r="7" fill="#c271d2" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1892.57" cy="345.477" r="7" fill="#c271d2" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1916.21" cy="342.222" r="7" fill="#c271d2" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1951.8" cy="316.3" r="7" fill="#c271d2" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1972.05" cy="307.665" r="7" fill="#c271d2" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1972.05" cy="307.665" r="10" fill="#c271d2" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="0"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -270.131,1592.29 -204.746,1592.29 -154.03,1552.47
-112.592,1521.58 -77.5564,1496.34 -77.5564,1552.47 -77.5564,1592.29 -77.5564,1648.42 110.332,1425.62 137.101,1400.38
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1648.42 -270.131,1648.42
-204.746,1592.29 -204.746,1648.42 -204.746,1744.38
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -270.131,1592.29 -270.131,1648.42 -204.746,1592.29
63.1392,1425.62 95.6632,1400.38 202.486,1322.91 202.486,1329.66 211.764,1322.91 253.202,1293.34 274.864,1329.66 274.864,1344.25
281.649,1336.76 306.929,1379.04 318.587,1360.55 335.024,1344.25 364.711,1336.76 386.795,1322.91 414.498,1283.08 445.776,1248.29 461.457,1244.5 473.267,1237.21
484.493,1233.7 502.895,1230.29 505.407,1244.5 533.56,1226.95 548.504,1233.7 562.526,1226.95
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="253.202" cy="1293.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="274.864" cy="1329.66" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="274.864" cy="1344.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="281.649" cy="1336.76" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="306.929" cy="1379.04" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="318.587" cy="1360.55" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="335.024" cy="1344.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="364.711" cy="1336.76" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="386.795" cy="1322.91" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="414.498" cy="1283.08" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="445.776" cy="1248.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="461.457" cy="1244.5" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="473.267" cy="1237.21" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="484.493" cy="1233.7" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="502.895" cy="1230.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="505.407" cy="1244.5" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="533.56" cy="1226.95" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="548.504" cy="1233.7" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="562.526" cy="1226.95" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="562.526" cy="1226.95" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-204.746,1552.47 -204.746,1552.47 -154.03,1521.58 -47.2073,1456.51 3.5089,1425.62 44.947,1412.42 44.947,1456.51 63.1392,1456.51
63.1392,1521.58 79.9825,1552.47 79.9825,1648.42 110.332,1552.47 110.332,1592.29 110.332,1648.42
124.11,1744.38 229.256,1412.42 350.352,1273.53 360.025,1264.6 473.267,1170.82 586.472,1088.72 632.239,1057.34 679.789,1026.26 745.752,988.573 884.303,903.012
959.154,853.825 999.174,833.57 1059.09,801.149 1087.02,785.76 1135.72,755.989 1197.01,719.104 1216.41,723.374 1345.99,635.774 1396.28,603.791 1449.51,572.243
1501.11,537.85 1555.96,503.727 1621.06,463.648 1670.46,430.456 1729.31,402.776 1754.9,390.85 1780.6,379.907 1815.93,361.545 1844.77,349.706 1872.84,342.504
1909.93,323.771 1943.23,312.6 1971.84,294.009 1988.54,287.381 2005.43,285.142 2021.57,281.555 2040,275.529
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="350.352" cy="1273.53" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="360.025" cy="1264.6" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="473.267" cy="1170.82" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="586.472" cy="1088.72" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="632.239" cy="1057.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="679.789" cy="1026.26" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="745.752" cy="988.573" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="884.303" cy="903.012" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="959.154" cy="853.825" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="999.174" cy="833.57" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1059.09" cy="801.149" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1087.02" cy="785.76" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1135.72" cy="755.989" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1197.01" cy="719.104" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1216.41" cy="723.374" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1345.99" cy="635.774" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1396.28" cy="603.791" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1449.51" cy="572.243" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1501.11" cy="537.85" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1555.96" cy="503.727" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1621.06" cy="463.648" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1670.46" cy="430.456" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1729.31" cy="402.776" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1754.9" cy="390.85" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1780.6" cy="379.907" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1815.93" cy="361.545" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1844.77" cy="349.706" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1872.84" cy="342.504" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1909.93" cy="323.771" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1943.23" cy="312.6" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1971.84" cy="294.009" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1988.54" cy="287.381" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="2005.43" cy="285.142" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="2021.57" cy="281.555" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="2040" cy="275.529" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="2040" cy="275.529" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-270.131,1592.29 -112.592,1496.34 -77.5564,1475 25.1711,1412.42 110.332,1360.55 149.39,1360.55 192.813,1352.16 229.256,1322.91
382.546,1214.36 510.348,1127.74 589.942,1080.47 598.392,1080.47 604.933,1079.33 622.006,1071.6 622.006,1075.96 635.08,1096.2 678.626,1104.11
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="382.546" cy="1214.36" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="510.348" cy="1127.74" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="589.942" cy="1080.47" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="598.392" cy="1080.47" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="604.933" cy="1079.33" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="622.006" cy="1071.6" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="622.006" cy="1075.96" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="635.08" cy="1096.2" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="678.626" cy="1104.11" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="678.626" cy="1104.11" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -270.131,1592.29 -204.746,1552.47 -77.5564,1475 -20.4375,1456.51 260.655,1283.08 345.356,1230.29
350.352,1226.95 455.314,1164.38 500.356,1134.33 524.557,1121.44 524.557,1160.25 672.723,1055.42 714.161,1023.95 798.885,975.647
834.41,955.694 851.924,946.266 890.351,952.479 905.879,953.848 942.988,958.036 967.48,927.998 982.659,931.074 1005.35,913.907 1024.2,891.443
1042.31,892.322 1063.63,875.723 1083.12,875.462 1093.87,879.422 1112.24,865.669 1129.07,860.202
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="260.655" cy="1283.08" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="345.356" cy="1230.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="350.352" cy="1226.95" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="455.314" cy="1164.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="455.314" cy="1164.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="500.356" cy="1134.33" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="524.557" cy="1121.44" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="524.557" cy="1160.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="672.723" cy="1055.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="714.161" cy="1023.95" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="798.885" cy="975.647" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="798.885" cy="975.647" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="834.41" cy="955.694" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="851.924" cy="946.266" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="851.924" cy="946.266" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="890.351" cy="952.479" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="905.879" cy="953.848" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="942.988" cy="958.036" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="967.48" cy="927.998" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="982.659" cy="931.074" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1005.35" cy="913.907" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1024.2" cy="891.443" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1042.31" cy="892.322" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1063.63" cy="875.723" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1083.12" cy="875.462" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1093.87" cy="879.422" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1112.24" cy="865.669" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1129.07" cy="860.202" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1129.07" cy="860.202" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1648.42 -112.592,1496.34 -20.4375,1440.2 44.947,1400.38 124.11,1360.55 149.39,1344.25 161.048,1344.25
172.137,1369.49 202.486,1344.25 211.764,1360.55 237.521,1360.55 281.649,1352.16 281.649,1369.49 294.64,1360.55 306.929,1352.16 312.832,1369.49
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="281.649" cy="1352.16" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="281.649" cy="1369.49" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="294.64" cy="1360.55" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="306.929" cy="1352.16" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="312.832" cy="1369.49" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="312.832" cy="1369.49" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1648.42 -154.03,1521.58 -77.5564,1475 -47.2073,1475 -20.4375,1456.51 -20.4375,1475
79.9825,1400.38 110.332,1412.42 149.39,1400.38 192.813,1369.49 192.813,1379.04 260.655,1316.47 335.024,1278.22 390.965,1237.21
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="260.655" cy="1316.47" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="335.024" cy="1278.22" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="335.024" cy="1278.22" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="390.965" cy="1237.21" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="390.965" cy="1237.21" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -204.746,1552.47 -77.5564,1475 -77.5564,1496.34
149.39,1369.49 161.048,1360.55 -47.2073,1744.38 44.947,1475 149.39,1379.04
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-362.285,1648.42 -362.285,1648.42 -112.592,1496.34 -77.5564,1475 -47.2073,1456.51 -47.2073,1496.34 95.6632,1389.3
95.6632,1440.2 95.6632,1456.51 110.332,1456.51
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -204.746,1592.29
-112.592,1521.58 -112.592,1648.42
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-362.285,1648.42 -362.285,1648.42 -270.131,1592.29 -112.592,1496.34 -47.2073,1456.51 -20.4375,1475 44.947,1425.62 202.486,1316.47
220.678,1310.31 253.202,1304.42 253.202,1316.47 294.64,1288.12 378.217,1233.7 439.188,1220.51 515.184,1154.27 548.504,1130.99 601.686,1094.93
604.933,1092.41 650.101,1064.29
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="253.202" cy="1304.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="253.202" cy="1316.47" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="294.64" cy="1288.12" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="378.217" cy="1233.7" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="439.188" cy="1220.51" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="515.184" cy="1154.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="548.504" cy="1130.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="601.686" cy="1094.93" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="604.933" cy="1092.41" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="650.101" cy="1064.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="650.101" cy="1064.29" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-362.285,1648.42 -362.285,1648.42 -204.746,1552.47 -77.5564,1475 -20.4375,1440.2 63.1392,1412.42 149.39,1352.16
253.202,1293.34 267.87,1298.77 312.832,1273.53 369.303,1230.29 403.036,1217.4 455.314,1177.57 489.904,1164.38 533.56,1150.42 588.214,1108.25 643.397,1072.68
669.105,1063.27 712.158,1035.04 744.883,1019.46 776.535,1000.89 806.979,985.659 846.42,965.81 867.169,964.319 888.97,952.479 903.725,955.23
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="253.202" cy="1293.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="267.87" cy="1298.77" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="312.832" cy="1273.53" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="369.303" cy="1230.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="403.036" cy="1217.4" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="455.314" cy="1177.57" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="489.904" cy="1164.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="533.56" cy="1150.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="588.214" cy="1108.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="643.397" cy="1072.68" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="669.105" cy="1063.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="712.158" cy="1035.04" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="744.883" cy="1019.46" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="776.535" cy="1000.89" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="806.979" cy="985.659" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="846.42" cy="965.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="867.169" cy="964.319" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="888.97" cy="952.479" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="903.725" cy="955.23" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="903.725" cy="955.23" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -270.131,1592.29 -112.592,1496.34 25.1711,1412.42 220.678,1293.34 281.649,1256.2 335.024,1226.95 369.303,1205.61 369.303,1211.38
403.036,1197.38 442.506,1182.27 489.904,1179.9 533.56,1158.22 593.36,1119.91 627.91,1098.79 648.776,1080.47 660.434,1079.33 706.043,1049.8 735.097,1037.53
798.197,993.368 846.977,966.813 880.019,947.137 921.617,915.984 929.482,912.2 951.566,905.575 980.816,887.697 1000.03,892.028 1023.69,889.414 1041.61,886.847
1054.68,898.022 1068.93,884.605 1078.96,887.697 1095.37,888.839
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="281.649" cy="1256.2" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="335.024" cy="1226.95" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="369.303" cy="1205.61" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="369.303" cy="1211.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="403.036" cy="1197.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="442.506" cy="1182.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="489.904" cy="1179.9" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="533.56" cy="1158.22" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="593.36" cy="1119.91" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="627.91" cy="1098.79" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="648.776" cy="1080.47" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="660.434" cy="1079.33" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="706.043" cy="1049.8" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="735.097" cy="1037.53" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="798.197" cy="993.368" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="846.977" cy="966.813" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="880.019" cy="947.137" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="921.617" cy="915.984" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="929.482" cy="912.2" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="951.566" cy="905.575" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="980.816" cy="887.697" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1000.03" cy="892.028" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1023.69" cy="889.414" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1041.61" cy="886.847" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1054.68" cy="898.022" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1068.93" cy="884.605" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1078.96" cy="887.697" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1095.37" cy="888.839" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1095.37" cy="888.839" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1648.42 -270.131,1592.29 -270.131,1648.42
-270.131,1744.38 -154.03,1648.42 237.521,1298.77 253.202,1288.12 260.655,1283.08 281.649,1268.99 312.832,1248.29 335.024,1240.81 395.06,1200.07
418.193,1256.2 455.314,1223.69 481.738,1200.07 531.342,1160.25 554.619,1148.54 566.378,1144.85 606.539,1127.74 627.91,1115.42 677.458,1080.47 729.576,1040.07
798.197,992.76 839.635,962.843 892.181,922.043 908.438,917.034 954.7,883.774 977.711,875.202 1022.92,849.229 1047.2,846.247 1055.56,852.496 1101.07,827.55
1126.16,808.812 1207.49,747.474
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="253.202" cy="1288.12" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="260.655" cy="1283.08" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="281.649" cy="1268.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="312.832" cy="1248.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="335.024" cy="1240.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="395.06" cy="1200.07" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="418.193" cy="1256.2" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="455.314" cy="1223.69" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="481.738" cy="1200.07" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="531.342" cy="1160.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="554.619" cy="1148.54" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="566.378" cy="1144.85" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="606.539" cy="1127.74" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="627.91" cy="1115.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="677.458" cy="1080.47" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="729.576" cy="1040.07" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="798.197" cy="992.76" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="839.635" cy="962.843" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="892.181" cy="922.043" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="908.438" cy="917.034" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="954.7" cy="883.774" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="977.711" cy="875.202" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1022.92" cy="849.229" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1047.2" cy="846.247" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1055.56" cy="852.496" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1101.07" cy="827.55" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1126.16" cy="808.812" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1207.49" cy="747.474" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1207.49" cy="747.474" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-362.285,1648.42 -362.285,1648.42 -204.746,1552.47 -112.592,1496.34 149.39,1352.16 229.256,1298.77 281.649,1264.6
442.506,1166.49 517.564,1118.4 562.526,1092.41 593.36,1087.51 650.101,1055.42 713.162,1015.83 784.719,965.81 823.585,954.768 868.689,931.854
898.912,915.984 925.976,900.183 964.518,880.227 996.599,867.622 1024.45,863.027 1060.4,842.095 1082.93,836.485 1107.17,824.096 1128.91,813.057 1146.53,811.901
1167.68,804.693
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="281.649" cy="1264.6" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="281.649" cy="1264.6" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="442.506" cy="1166.49" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="517.564" cy="1118.4" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="562.526" cy="1092.41" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="593.36" cy="1087.51" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="650.101" cy="1055.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="713.162" cy="1015.83" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="784.719" cy="965.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="823.585" cy="954.768" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="868.689" cy="931.854" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="898.912" cy="915.984" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="925.976" cy="900.183" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="964.518" cy="880.227" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="996.599" cy="867.622" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1024.45" cy="863.027" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1060.4" cy="842.095" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1082.93" cy="836.485" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1107.17" cy="824.096" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1128.91" cy="813.057" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1146.53" cy="811.901" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1167.68" cy="804.693" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1167.68" cy="804.693" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-362.285,1648.42 -154.03,1521.58 137.101,1344.25 237.521,1283.08 335.024,1223.69 414.498,1175.28 515.184,1113.96 601.686,1063.27 730.505,985.659 834.997,925.734
931.407,867.131 1045.12,797.398 1142.48,737.613 1243.01,676.386 1293.88,646.399 1335.75,624.159 1404.17,584.281 1450.6,559.062 1477.89,549.896 1497.61,548.124
1523.98,547.003 1549.56,538.26 1575.21,527.653 1602.57,526.497 1628.35,520.579 1648.97,511.54 1665.53,503.195 1682.72,498.042 1698.88,494.112 1712.18,494.593
1726.96,495.46 1737.87,502.297 1748.94,505.513 1763.3,499.222 1780.04,489.536 1799.4,474.177 1818.66,456.149 1840.21,436.373 1860.87,415.076 1878.77,398.578
1896.92,384.571 1913.35,374.807 1928.09,369.443
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="335.024" cy="1223.69" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="414.498" cy="1175.28" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="515.184" cy="1113.96" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="601.686" cy="1063.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="730.505" cy="985.659" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="834.997" cy="925.734" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="931.407" cy="867.131" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1045.12" cy="797.398" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1142.48" cy="737.613" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1243.01" cy="676.386" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1293.88" cy="646.399" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1335.75" cy="624.159" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1404.17" cy="584.281" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1450.6" cy="559.062" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1477.89" cy="549.896" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1497.61" cy="548.124" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1523.98" cy="547.003" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1549.56" cy="538.26" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1575.21" cy="527.653" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1602.57" cy="526.497" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1628.35" cy="520.579" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1648.97" cy="511.54" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1665.53" cy="503.195" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1682.72" cy="498.042" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1698.88" cy="494.112" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1712.18" cy="494.593" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1726.96" cy="495.46" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1737.87" cy="502.297" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1748.94" cy="505.513" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1763.3" cy="499.222" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1780.04" cy="489.536" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1799.4" cy="474.177" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1818.66" cy="456.149" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1840.21" cy="436.373" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1860.87" cy="415.076" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1878.77" cy="398.578" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1896.92" cy="384.571" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1913.35" cy="374.807" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1928.09" cy="369.443" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1928.09" cy="369.443" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -154.03,1521.58 -77.5564,1475 63.1392,1389.3 149.39,1336.76 220.678,1298.77 267.87,1268.99 288.238,1273.53
288.238,1283.08 318.587,1260.34 386.795,1230.29 410.741,1230.29 410.741,1256.2 449,1237.21 449,1248.29 529.103,1175.28 548.504,1187.12
560.575,1187.12 575.732,1168.64 624.977,1132.65 639.277,1116.9 675.103,1080.47 693.295,1097.49 699.758,1101.43 719.091,1085.12 749.196,1058.31 788.344,1040.07
808.958,1023.95 831.455,1018 872.694,980.008 895.347,958.509 913.055,948.453 945.163,927.998 967.153,922.773 978.023,921.316
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="267.87" cy="1268.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="288.238" cy="1273.53" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="288.238" cy="1283.08" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="318.587" cy="1260.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="386.795" cy="1230.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="410.741" cy="1230.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="410.741" cy="1256.2" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="449" cy="1237.21" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="449" cy="1248.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="449" cy="1248.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="529.103" cy="1175.28" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="548.504" cy="1187.12" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="560.575" cy="1187.12" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="575.732" cy="1168.64" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="624.977" cy="1132.65" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="639.277" cy="1116.9" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="675.103" cy="1080.47" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="693.295" cy="1097.49" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="699.758" cy="1101.43" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="719.091" cy="1085.12" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="749.196" cy="1058.31" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="788.344" cy="1040.07" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="808.958" cy="1023.95" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="831.455" cy="1018" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="872.694" cy="980.008" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="895.347" cy="958.509" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="913.055" cy="948.453" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="945.163" cy="927.998" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="967.153" cy="922.773" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="978.023" cy="921.316" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="978.023" cy="921.316" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1648.42 -112.592,1496.34 137.101,1344.25 137.101,1352.16 149.39,1344.25 172.137,1329.66
281.649,1264.6 335.024,1244.5 502.895,1152.33 584.717,1092.41 584.717,1093.66 646.102,1052.58 709.121,1018.73 770.392,980.562 917.172,880.227
963.521,860.435 995.156,846.458 1027.74,823.023 1076.94,794.323 1114.82,774.146 1151.82,754.787 1186.15,755.879 1221.06,737.806 1250.57,720.456 1268.65,713.904
1292.94,707.88 1317.01,698.801 1331.44,700.481
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="281.649" cy="1264.6" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="335.024" cy="1244.5" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="335.024" cy="1244.5" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="502.895" cy="1152.33" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="584.717" cy="1092.41" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="584.717" cy="1093.66" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="646.102" cy="1052.58" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="709.121" cy="1018.73" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="770.392" cy="980.562" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="917.172" cy="880.227" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="963.521" cy="860.435" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="995.156" cy="846.458" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1027.74" cy="823.023" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1076.94" cy="794.323" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1114.82" cy="774.146" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1151.82" cy="754.787" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1186.15" cy="755.879" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1221.06" cy="737.806" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1250.57" cy="720.456" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1268.65" cy="713.904" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1292.94" cy="707.88" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1317.01" cy="698.801" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1331.44" cy="700.481" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1331.44" cy="700.481" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1648.42 -270.131,1592.29 -204.746,1592.29 -77.5564,1496.34 3.5089,1440.2
44.947,1412.42 95.6632,1389.3 161.048,1352.16 300.868,1260.34 335.024,1248.29 414.498,1200.07 461.457,1170.82 473.267,1168.64
526.842,1137.75 579.369,1122.99 626.449,1091.17 698.694,1048.89 703.967,1044.41 735.097,1029.38 779.545,994.593 856.765,942.837 905.45,913.907 972.972,869.105
1021.89,843.534 1065.76,810.104 1098.7,789.765 1246.2,687.709 1275.33,674.85 1302.5,660.913 1342.5,640.364 1378.87,620.151 1401.66,609.845 1431.69,592.087
1460.87,606.114
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="300.868" cy="1260.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="335.024" cy="1248.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="414.498" cy="1200.07" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="414.498" cy="1200.07" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="461.457" cy="1170.82" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="473.267" cy="1168.64" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="526.842" cy="1137.75" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="579.369" cy="1122.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="626.449" cy="1091.17" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="698.694" cy="1048.89" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="703.967" cy="1044.41" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="735.097" cy="1029.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="779.545" cy="994.593" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="856.765" cy="942.837" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="905.45" cy="913.907" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="972.972" cy="869.105" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1021.89" cy="843.534" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1065.76" cy="810.104" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1098.7" cy="789.765" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1246.2" cy="687.709" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1275.33" cy="674.85" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1302.5" cy="660.913" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1342.5" cy="640.364" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1378.87" cy="620.151" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1401.66" cy="609.845" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1431.69" cy="592.087" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1460.87" cy="606.114" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1460.87" cy="606.114" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#3da44d; stroke-width:8; stroke-opacity:0.5; fill:none" points="
-362.285,1648.42 -362.285,1648.42 -270.131,1744.38
161.048,1352.16 418.193,1179.9 626.449,1048.89 715.155,993.979 792.619,946.266 870.199,898.636
954.008,847.304 1023.18,807.691 1077.55,779.245 1169.97,728.409 1211.77,706.185 1258.61,680.206 1306.51,653.912 1357.04,626.941 1398.79,605.187 1452.93,572.243
1504.3,547.611 1553.86,516.044 1576.87,506.469 1623.53,478.295 1623.53,490.146 1702.77,432.754 1743.83,410.693 1779.45,392.876 1807.36,381.881 1834.33,364.286
1862.82,352.523 1894.39,323.989 1925.34,320.223 1955.01,306.498 1977.45,298.332 1995.15,292.206 2013.08,285.725 2029.59,282.087 2047.79,278.969 2063.87,279.238
2079.05,281.298 2091.53,282.524 2100.76,285.204 2109.64,289.653 2119.69,291.281
"/>
<circle clip-path="url(#clip7702)" cx="418.193" cy="1179.9" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="626.449" cy="1048.89" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="715.155" cy="993.979" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="792.619" cy="946.266" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="870.199" cy="898.636" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="954.008" cy="847.304" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1023.18" cy="807.691" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1077.55" cy="779.245" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1169.97" cy="728.409" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1211.77" cy="706.185" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1258.61" cy="680.206" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1306.51" cy="653.912" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1357.04" cy="626.941" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1398.79" cy="605.187" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1452.93" cy="572.243" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1504.3" cy="547.611" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1553.86" cy="516.044" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1576.87" cy="506.469" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1623.53" cy="478.295" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1623.53" cy="490.146" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1702.77" cy="432.754" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1743.83" cy="410.693" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1779.45" cy="392.876" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1807.36" cy="381.881" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1834.33" cy="364.286" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1862.82" cy="352.523" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1894.39" cy="323.989" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1925.34" cy="320.223" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1955.01" cy="306.498" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1977.45" cy="298.332" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1995.15" cy="292.206" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2013.08" cy="285.725" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2029.59" cy="282.087" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2047.79" cy="278.969" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2063.87" cy="279.238" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2079.05" cy="281.298" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2091.53" cy="282.524" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2100.76" cy="285.204" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2109.64" cy="289.653" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2119.69" cy="291.281" r="7" fill="#3da44d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2119.69" cy="291.281" r="10" fill="#3da44d" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="0"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -362.285,1648.42 -47.2073,1456.51 3.5089,1425.62 44.947,1400.38 63.1392,1400.38 95.6632,1389.3 110.332,1456.51
149.39,1440.2 172.137,1440.2 220.678,1389.3 220.678,1412.42 220.678,1425.62 253.202,1379.04 267.87,1389.3 294.64,1352.16
294.64,1369.49 340.249,1344.25
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="253.202" cy="1379.04" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="267.87" cy="1389.3" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="294.64" cy="1352.16" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="294.64" cy="1369.49" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="340.249" cy="1344.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="340.249" cy="1344.25" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#00a8cb; stroke-width:8; stroke-opacity:0.5; fill:none" points="
-77.5564,1521.58 25.1711,1440.2 95.6632,1389.3 161.048,1344.25 161.048,1360.55 182.71,1369.49 182.71,1412.42 211.764,1425.62
211.764,1521.58 220.678,1496.34 220.678,1552.47 237.521,1496.34 245.497,1552.47 335.024,1344.25 406.921,1260.34 432.403,1233.7
458.406,1208.46 487.215,1187.12 512.779,1164.38 537.931,1144.85 572.037,1139.49 614.404,1124.55 632.239,1116.9 647.443,1112.51 671.523,1100.1 699.758,1081.62
714.161,1078.2 726.764,1082.77 740.487,1094.93 755.931,1087.51 771.169,1078.2 798.885,1058.31 817.973,1054.47 853.009,1016.55 874.178,997.704 893.543,982.24
897.582,987.4 926.76,960.419 948.387,951.124 948.387,964.814 969.434,963.825 991.655,949.338 1010.28,938.667 1010.28,942.415 1020.6,956.159 1023.43,980.008
1032.21,961.868 1041.61,973.517 1051.76,989.164 1072.04,973.517 1077.55,959.939 1090.28,948.013 1111.03,908.848 1124.53,894.694 1137.43,882.673 1169.84,840.267
1191.95,825.178 1191.95,830.152 1202.31,826.086 1227.09,807.213
"/>
<circle clip-path="url(#clip7702)" cx="335.024" cy="1344.25" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="406.921" cy="1260.34" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="432.403" cy="1233.7" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="458.406" cy="1208.46" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="487.215" cy="1187.12" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="512.779" cy="1164.38" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="537.931" cy="1144.85" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="572.037" cy="1139.49" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="614.404" cy="1124.55" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="632.239" cy="1116.9" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="647.443" cy="1112.51" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="671.523" cy="1100.1" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="699.758" cy="1081.62" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="714.161" cy="1078.2" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="726.764" cy="1082.77" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="740.487" cy="1094.93" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="755.931" cy="1087.51" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="771.169" cy="1078.2" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="798.885" cy="1058.31" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="817.973" cy="1054.47" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="853.009" cy="1016.55" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="874.178" cy="997.704" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="893.543" cy="982.24" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="897.582" cy="987.4" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="926.76" cy="960.419" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="948.387" cy="951.124" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="948.387" cy="964.814" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="969.434" cy="963.825" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="991.655" cy="949.338" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1010.28" cy="938.667" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1010.28" cy="942.415" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1020.6" cy="956.159" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1023.43" cy="980.008" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1032.21" cy="961.868" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1041.61" cy="973.517" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1051.76" cy="989.164" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1072.04" cy="973.517" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1077.55" cy="959.939" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1090.28" cy="948.013" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1111.03" cy="908.848" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1124.53" cy="894.694" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1137.43" cy="882.673" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1169.84" cy="840.267" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1191.95" cy="825.178" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1191.95" cy="830.152" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1202.31" cy="826.086" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1227.09" cy="807.213" r="7" fill="#00a8cb" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1227.09" cy="807.213" r="10" fill="#00a8cb" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="0"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -47.2073,1475 124.11,1360.55 281.649,1260.34
378.217,1200.07 442.506,1160.25 489.904,1130.99 552.599,1101.43 581.166,1093.66 624.977,1081.62 650.101,1081.62 697.624,1057.34 721.034,1050.72
731.431,1040.93 743.135,1053.52 750.899,1059.29 755.931,1081.62 759.225,1098.79
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="281.649" cy="1260.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="378.217" cy="1200.07" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="442.506" cy="1160.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="489.904" cy="1130.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="489.904" cy="1130.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="552.599" cy="1101.43" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="581.166" cy="1093.66" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="624.977" cy="1081.62" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="650.101" cy="1081.62" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="697.624" cy="1057.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="721.034" cy="1050.72" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="731.431" cy="1040.93" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="743.135" cy="1053.52" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="750.899" cy="1059.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="755.931" cy="1081.62" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="759.225" cy="1098.79" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="759.225" cy="1098.79" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-204.746,1552.47 -112.592,1496.34 -20.4375,1440.2 3.5089,1425.62 274.864,1260.34 288.238,1252.19 340.249,1220.51 364.711,1217.4 382.546,1211.38 410.741,1200.07
418.193,1197.38 452.179,1237.21 478.949,1214.36 550.561,1162.3 618.996,1105.48 714.161,1029.38 764.078,995.21 778.045,985.659 806.979,968.842 830.261,955.23
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="274.864" cy="1260.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="288.238" cy="1252.19" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="340.249" cy="1220.51" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="364.711" cy="1217.4" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="382.546" cy="1211.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="410.741" cy="1200.07" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="418.193" cy="1197.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="452.179" cy="1237.21" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="478.949" cy="1214.36" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="550.561" cy="1162.3" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="618.996" cy="1105.48" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="714.161" cy="1029.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="764.078" cy="995.21" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="778.045" cy="985.659" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="806.979" cy="968.842" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="830.261" cy="955.23" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="830.261" cy="955.23" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -270.131,1592.29 -77.5564,1475 -77.5564,1496.34 95.6632,1400.38
110.332,1389.3 211.764,1316.47 237.521,1298.77 260.655,1304.42 306.929,1268.99 329.676,1288.12 369.303,1256.2 406.921,1256.2 478.949,1194.75
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="260.655" cy="1304.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="260.655" cy="1304.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="306.929" cy="1268.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="329.676" cy="1288.12" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="369.303" cy="1256.2" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="406.921" cy="1256.2" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="478.949" cy="1194.75" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="478.949" cy="1194.75" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#8e971d; stroke-width:8; stroke-opacity:0.5; fill:none" points="
-204.746,1592.29 -204.746,1592.29 25.1711,1440.2 44.947,1425.62 95.6632,1400.38 95.6632,1412.42 110.332,1400.38 149.39,1369.49 192.813,1336.76 202.486,1389.3
202.486,1400.38 211.764,1425.62 229.256,1400.38 237.521,1400.38 237.521,1440.2 237.521,1521.58 237.521,1552.47 245.497,1552.47 253.202,1592.29
260.655,1592.29 535.756,1144.85 688.881,1028.6 859.937,913.222 934.83,865.185 1008.65,818.466 1044.89,795.778 1102.88,759.435 1179.43,717.764
1243.11,683.223 1310.96,649.722 1349.73,629.956 1383.53,614.586 1424.27,589.128 1442.58,584.249 1460.72,585.461 1478.83,587.591 1493.77,600.004 1502.42,611.613
1507.46,629.559 1508.52,671.172 1515.72,683.158 1519.04,708.191 1522.19,742.905 1525.22,782 1527.35,810.918 1529.4,826.45 1531.71,817.779 1534.23,846.036
1538.3,838.264 1540.6,842.916 1544.43,834.923 1548.57,819.158 1548.57,832.612 1550.49,834.148 1552.99,832.803 1555.57,842.3 1557.79,841.483 1561.32,841.687
1563.83,853.825 1565.67,837.47 1568.59,828.104 1570.92,827.919
"/>
<circle clip-path="url(#clip7702)" cx="535.756" cy="1144.85" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="688.881" cy="1028.6" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="859.937" cy="913.222" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="934.83" cy="865.185" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1008.65" cy="818.466" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1044.89" cy="795.778" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1102.88" cy="759.435" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1179.43" cy="717.764" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1243.11" cy="683.223" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1310.96" cy="649.722" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1349.73" cy="629.956" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1383.53" cy="614.586" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1424.27" cy="589.128" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1442.58" cy="584.249" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1460.72" cy="585.461" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1478.83" cy="587.591" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1493.77" cy="600.004" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1502.42" cy="611.613" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1507.46" cy="629.559" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1508.52" cy="671.172" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1515.72" cy="683.158" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1519.04" cy="708.191" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1522.19" cy="742.905" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1525.22" cy="782" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1527.35" cy="810.918" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1529.4" cy="826.45" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1531.71" cy="817.779" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1534.23" cy="846.036" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1538.3" cy="838.264" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1540.6" cy="842.916" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1544.43" cy="834.923" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1548.57" cy="819.158" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1548.57" cy="832.612" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1550.49" cy="834.148" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1552.99" cy="832.803" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1555.57" cy="842.3" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1557.79" cy="841.483" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1561.32" cy="841.687" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1563.83" cy="853.825" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1565.67" cy="837.47" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1568.59" cy="828.104" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1570.92" cy="827.919" r="7" fill="#8e971d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1570.92" cy="827.919" r="10" fill="#8e971d" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="0"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 25.1711,1412.42 220.678,1293.34 335.024,1223.69 345.356,1217.4 395.06,1189.62 395.06,1217.4 395.06,1273.53
403.036,1369.49 403.036,1389.3 414.498,1360.55 425.409,1336.76 425.409,1456.51 442.506,1389.3 452.179,1360.55 476.126,1316.47 535.756,1223.69
552.599,1208.46 573.892,1179.9 586.472,1175.28 606.539,1156.23 615.945,1160.25 632.239,1139.49 655.327,1152.33 670.318,1144.85 671.523,1164.38 673.916,1175.28
678.626,1194.75 693.295,1177.57 711.15,1164.38 721.034,1179.9 739.598,1162.3 749.196,1143.04 768.045,1109.65 789.062,1079.33
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="335.024" cy="1223.69" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="345.356" cy="1217.4" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="345.356" cy="1217.4" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="345.356" cy="1217.4" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="395.06" cy="1189.62" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="395.06" cy="1217.4" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="395.06" cy="1273.53" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="403.036" cy="1369.49" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="403.036" cy="1389.3" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="414.498" cy="1360.55" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="425.409" cy="1336.76" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="442.506" cy="1389.3" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="452.179" cy="1360.55" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="476.126" cy="1316.47" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="476.126" cy="1316.47" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="535.756" cy="1223.69" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="552.599" cy="1208.46" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="573.892" cy="1179.9" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="586.472" cy="1175.28" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="606.539" cy="1156.23" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="615.945" cy="1160.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="632.239" cy="1139.49" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="655.327" cy="1152.33" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="670.318" cy="1144.85" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="671.523" cy="1164.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="673.916" cy="1175.28" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="678.626" cy="1194.75" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="693.295" cy="1177.57" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="711.15" cy="1164.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="721.034" cy="1179.9" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="739.598" cy="1162.3" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="749.196" cy="1143.04" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="768.045" cy="1109.65" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="789.062" cy="1079.33" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="789.062" cy="1079.33" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-270.131,1592.29 -270.131,1592.29 -112.592,1496.34 79.9825,1379.04 110.332,1360.55 329.676,1226.95 340.249,1230.29 403.036,1197.38
403.036,1220.51 487.215,1156.23 512.779,1141.25 542.219,1166.49 550.561,1162.3
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="329.676" cy="1226.95" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="340.249" cy="1230.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="340.249" cy="1230.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="403.036" cy="1197.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="403.036" cy="1220.51" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="487.215" cy="1156.23" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="512.779" cy="1141.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="542.219" cy="1166.49" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="550.561" cy="1162.3" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="550.561" cy="1162.3" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1648.42 -112.592,1521.58 -47.2073,1475 3.5089,1440.2
124.11,1360.55 220.678,1298.77 253.202,1283.08 281.649,1283.08 364.711,1230.29 449,1175.28 492.563,1144.85 550.561,1115.42 575.732,1109.65
601.686,1094.93 660.434,1054.47 680.946,1052.58 707.073,1050.72 729.576,1043.53 760.854,1034.21 780.292,1024.72 809.614,1005.47 827.856,1013.7 840.78,1010.21
866.66,994.593
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="253.202" cy="1283.08" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="281.649" cy="1283.08" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="364.711" cy="1230.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="449" cy="1175.28" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="492.563" cy="1144.85" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="550.561" cy="1115.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="575.732" cy="1109.65" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="601.686" cy="1094.93" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="660.434" cy="1054.47" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="680.946" cy="1052.58" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="707.073" cy="1050.72" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="729.576" cy="1043.53" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="760.854" cy="1034.21" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="780.292" cy="1024.72" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="809.614" cy="1005.47" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="827.856" cy="1013.7" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="840.78" cy="1010.21" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="866.66" cy="994.593" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="866.66" cy="994.593" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1648.42 -362.285,1744.38 -204.746,1592.29 3.5089,1440.2
63.1392,1400.38 63.1392,1412.42 110.332,1379.04 182.71,1329.66 182.71,1344.25 267.87,1316.47 267.87,1336.76 324.199,1283.08 414.498,1208.46
414.498,1217.4 467.439,1189.62 510.348,1154.27 548.504,1141.25 568.28,1139.49 591.657,1152.33 629.362,1112.51 637.886,1127.74 669.105,1115.42
733.271,1062.27 750.049,1044.41 789.778,1012.29 800.254,1010.9 822.968,1003.49 836.747,992.76 848.638,994.593 862.546,1018 866.66,1026.26 878.573,1048.89
882.884,1054.47
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="267.87" cy="1316.47" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="267.87" cy="1336.76" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="324.199" cy="1283.08" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="414.498" cy="1208.46" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="414.498" cy="1217.4" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="467.439" cy="1189.62" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="510.348" cy="1154.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="548.504" cy="1141.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="548.504" cy="1141.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="568.28" cy="1139.49" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="591.657" cy="1152.33" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="629.362" cy="1112.51" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="637.886" cy="1127.74" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="669.105" cy="1115.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="733.271" cy="1062.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="750.049" cy="1044.41" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="789.778" cy="1012.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="800.254" cy="1010.9" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="822.968" cy="1003.49" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="836.747" cy="992.76" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="848.638" cy="994.593" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="862.546" cy="1018" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="866.66" cy="1026.26" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="878.573" cy="1048.89" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="882.884" cy="1054.47" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="882.884" cy="1054.47" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1648.42 -270.131,1592.29 -270.131,1648.42 -270.131,1744.38
-112.592,1592.29
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -204.746,1592.29
-77.5564,1496.34 237.521,1288.12 300.868,1260.34 373.804,1211.38 373.804,1220.51 373.804,1310.31 395.06,1283.08
395.06,1336.76 418.193,1412.42 439.188,1352.16
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="300.868" cy="1260.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="300.868" cy="1260.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="373.804" cy="1211.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="373.804" cy="1220.51" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="373.804" cy="1310.31" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="395.06" cy="1283.08" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="395.06" cy="1283.08" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="395.06" cy="1336.76" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="395.06" cy="1336.76" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="418.193" cy="1412.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="439.188" cy="1352.16" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="439.188" cy="1352.16" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="439.188" cy="1352.16" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -270.131,1648.42 -112.592,1521.58
-47.2073,1475 44.947,1412.42 124.11,1360.55 211.764,1304.42 229.256,1304.42 294.64,1260.34 364.711,1223.69 484.493,1146.68 608.134,1069.47 659.168,1040.07
694.385,1022.44 755.931,981.679 775.776,972.99 816.707,950.676 838.484,949.782 873.685,947.137 888.507,949.338 908.861,942.415 926.76,951.574
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="294.64" cy="1260.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="364.711" cy="1223.69" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="484.493" cy="1146.68" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="608.134" cy="1069.47" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="659.168" cy="1040.07" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="694.385" cy="1022.44" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="755.931" cy="981.679" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="775.776" cy="972.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="816.707" cy="950.676" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="838.484" cy="949.782" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="873.685" cy="947.137" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="888.507" cy="949.338" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="908.861" cy="942.415" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="926.76" cy="951.574" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="926.76" cy="951.574" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1648.42 -362.285,1744.38 -270.131,1648.42
-154.03,1552.47 -77.5564,1496.34 149.39,1344.25 281.649,1264.6 373.804,1205.61 406.921,1187.12 467.439,1148.54 603.315,1065.31 687.764,1013.7 801.615,947.574
885.244,898.636 959.154,854.495 998.889,829.965 1019.83,819.331 1071.63,793.889 1115.5,771.174 1135.09,772.652 1157.71,772.281 1187.65,767.427 1201.96,768.505
1206.35,773.272 1227.09,777.567 1241.35,790.045
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="281.649" cy="1264.6" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="373.804" cy="1205.61" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="406.921" cy="1187.12" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="467.439" cy="1148.54" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="603.315" cy="1065.31" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="687.764" cy="1013.7" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="801.615" cy="947.574" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="885.244" cy="898.636" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="959.154" cy="854.495" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="998.889" cy="829.965" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1019.83" cy="819.331" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1071.63" cy="793.889" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1115.5" cy="771.174" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1135.09" cy="772.652" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1157.71" cy="772.281" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1187.65" cy="767.427" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1201.96" cy="768.505" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1206.35" cy="773.272" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1227.09" cy="777.567" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1241.35" cy="790.045" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1241.35" cy="790.045" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-270.131,1592.29 -270.131,1592.29 44.947,1400.38 124.11,1352.16 149.39,1336.76 192.813,1310.31 220.678,1310.31 312.832,1248.29
335.024,1268.99 399.083,1233.7 399.083,1240.81
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="312.832" cy="1248.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="335.024" cy="1268.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="399.083" cy="1233.7" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="399.083" cy="1240.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="399.083" cy="1240.81" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-77.5564,1475 -47.2073,1456.51 -47.2073,1521.58 -47.2073,1552.47 3.5089,1496.34 44.947,1521.58 44.947,1552.47
110.332,1456.51 137.101,1425.62 137.101,1456.51 137.101,1496.34 149.39,1475 182.71,1496.34 182.71,1552.47
182.71,1592.29 192.813,1744.38 211.764,1592.29 245.497,1475 294.64,1379.04
369.303,1283.08 369.303,1288.12 484.493,1177.57 510.348,1160.25 524.557,1156.23 562.526,1124.55 584.717,1116.9 617.476,1108.25 680.946,1088.72
723.917,1055.42 857.297,941.993 920.815,898.944 960.169,872.375 996.599,849.66 1026.23,827.735 1056.89,813.389 1088.37,795.925 1110.85,806.105 1145.04,794.903
1160.38,795.049 1183.26,787.265 1211.21,771.051 1225.31,771.051 1241.45,770.319 1255.69,767.07 1269.61,773.896 1281.41,769.712 1292.79,773.397
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="294.64" cy="1379.04" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="369.303" cy="1283.08" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="369.303" cy="1288.12" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="484.493" cy="1177.57" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="510.348" cy="1160.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="524.557" cy="1156.23" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="562.526" cy="1124.55" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="584.717" cy="1116.9" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="617.476" cy="1108.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="617.476" cy="1108.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="680.946" cy="1088.72" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="723.917" cy="1055.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="857.297" cy="941.993" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="920.815" cy="898.944" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="960.169" cy="872.375" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="996.599" cy="849.66" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1026.23" cy="827.735" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1056.89" cy="813.389" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1088.37" cy="795.925" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1110.85" cy="806.105" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1145.04" cy="794.903" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1160.38" cy="795.049" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1183.26" cy="787.265" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1211.21" cy="771.051" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1225.31" cy="771.051" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1241.45" cy="770.319" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1255.69" cy="767.07" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1269.61" cy="773.896" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1281.41" cy="769.712" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1292.79" cy="773.397" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1292.79" cy="773.397" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-204.746,1552.47 -204.746,1552.47 -112.592,1496.34 -47.2073,1456.51 -20.4375,1440.2 3.5089,1425.62 63.1392,1440.2 63.1392,1475
63.1392,1521.58 63.1392,1552.47 63.1392,1592.29 110.332,1592.29 124.11,1552.47 137.101,1521.58 149.39,1496.34
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-270.131,1592.29 -270.131,1592.29 -154.03,1521.58 -112.592,1496.34 44.947,1400.38 137.101,1369.49 172.137,1344.25 253.202,1288.12
306.929,1260.34 306.929,1264.6 382.546,1211.38 425.409,1197.38 455.314,1189.62 502.895,1158.22 542.219,1143.04 548.504,1152.33 584.717,1119.91 593.36,1136.03
601.686,1146.68 617.476,1144.85 620.506,1175.28 627.91,1205.61 646.102,1179.9 670.318,1179.9
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="253.202" cy="1288.12" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="306.929" cy="1260.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="306.929" cy="1264.6" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="382.546" cy="1211.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="425.409" cy="1197.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="455.314" cy="1189.62" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="502.895" cy="1158.22" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="542.219" cy="1143.04" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="548.504" cy="1152.33" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="584.717" cy="1119.91" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="593.36" cy="1136.03" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="601.686" cy="1146.68" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="617.476" cy="1144.85" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="620.506" cy="1175.28" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="627.91" cy="1205.61" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="646.102" cy="1179.9" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="670.318" cy="1179.9" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="670.318" cy="1179.9" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1648.42 -362.285,1744.38
-270.131,1744.38 -154.03,1592.29 -112.592,1552.47
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-270.131,1592.29 -270.131,1592.29 44.947,1400.38 79.9825,1379.04 237.521,1283.08 294.64,1248.29 329.676,1226.95 360.025,1217.4 478.949,1141.25 512.779,1134.33
531.342,1124.55 542.219,1139.49 582.948,1118.4 608.134,1105.48 635.08,1089.94
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="294.64" cy="1248.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="329.676" cy="1226.95" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="360.025" cy="1217.4" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="478.949" cy="1141.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="512.779" cy="1134.33" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="531.342" cy="1124.55" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="542.219" cy="1139.49" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="582.948" cy="1118.4" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="608.134" cy="1105.48" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="635.08" cy="1089.94" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="635.08" cy="1089.94" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -204.746,1552.47 -154.03,1521.58 -112.592,1521.58 -112.592,1648.42 -77.5564,1648.42
-47.2073,1592.29 44.947,1475 44.947,1496.34 220.678,1329.66 324.199,1256.2 382.546,1214.36 481.738,1146.68 510.348,1129.35
564.46,1098.79 639.277,1048.89 687.764,1027.81 736.004,1004.14 788.344,972.99 822.35,961.868 844.743,949.338 880.978,930.686 928.32,907.858 974.563,880.227
1012.7,859.504 1048.58,842.095 1070.59,832.231 1094.44,817.265
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="324.199" cy="1256.2" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="382.546" cy="1214.36" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="481.738" cy="1146.68" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="510.348" cy="1129.35" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="564.46" cy="1098.79" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="639.277" cy="1048.89" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="687.764" cy="1027.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="736.004" cy="1004.14" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="788.344" cy="972.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="822.35" cy="961.868" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="844.743" cy="949.338" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="880.978" cy="930.686" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="928.32" cy="907.858" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="974.563" cy="880.227" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1012.7" cy="859.504" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1048.58" cy="842.095" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1070.59" cy="832.231" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1094.44" cy="817.265" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1094.44" cy="817.265" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -270.131,1592.29 -112.592,1496.34 44.947,1400.38 192.813,1316.47 253.202,1288.12
364.711,1214.36 432.403,1177.57 476.126,1160.25 512.779,1154.27 546.428,1127.74 577.558,1113.96 617.476,1082.77 656.614,1072.68 683.241,1067.38
717.132,1049.8 746.618,1034.21 775.015,1018.73 813.51,992.76 854.626,967.317
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="253.202" cy="1288.12" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="253.202" cy="1288.12" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="364.711" cy="1214.36" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="432.403" cy="1177.57" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="476.126" cy="1160.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="512.779" cy="1154.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="546.428" cy="1127.74" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="577.558" cy="1113.96" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="617.476" cy="1082.77" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="656.614" cy="1072.68" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="683.241" cy="1067.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="717.132" cy="1049.8" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="746.618" cy="1034.21" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="775.015" cy="1018.73" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="813.51" cy="992.76" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="854.626" cy="967.317" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="854.626" cy="967.317" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1744.38
-77.5564,1496.34 -77.5564,1521.58 25.1711,1440.2 192.813,1322.91 192.813,1360.55
260.655,1304.42 274.864,1293.34 329.676,1268.99 350.352,1310.31 364.711,1293.34 378.217,1278.22 390.965,1304.42
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="260.655" cy="1304.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="274.864" cy="1293.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="329.676" cy="1268.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="329.676" cy="1268.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="350.352" cy="1310.31" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="364.711" cy="1293.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="378.217" cy="1278.22" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="390.965" cy="1304.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="390.965" cy="1304.42" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -154.03,1552.47 -112.592,1521.58
3.5089,1440.2 3.5089,1521.58 3.5089,1552.47 25.1711,1521.58 44.947,1648.42
79.9825,1552.47
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-362.285,1648.42 -362.285,1648.42 -270.131,1592.29 79.9825,1379.04 172.137,1322.91 229.256,1288.12 355.24,1217.4 378.217,1202.81 442.506,1164.38
481.738,1160.25 487.215,1156.23 489.904,1168.64 505.407,1168.64 546.428,1173.03 573.892,1154.27
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="355.24" cy="1217.4" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="378.217" cy="1202.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="442.506" cy="1164.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="481.738" cy="1160.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="487.215" cy="1156.23" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="489.904" cy="1168.64" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="505.407" cy="1168.64" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="546.428" cy="1173.03" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="573.892" cy="1154.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="573.892" cy="1154.27" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1648.42 -362.285,1744.38 -270.131,1648.42 -154.03,1552.47
-112.592,1552.47 -77.5564,1521.58 124.11,1369.49 237.521,1293.34 245.497,1288.12 306.929,1252.19 364.711,1220.51 421.83,1184.67 467.439,1156.23 517.564,1139.49
558.607,1126.13 608.134,1088.72 647.443,1068.42 711.15,1028.6 756.759,1002.83 808.3,970.383 843.053,952.026 882.884,927.998 916.764,910.514 940.424,899.562
953.66,905.252
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="306.929" cy="1252.19" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="364.711" cy="1220.51" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="421.83" cy="1184.67" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="467.439" cy="1156.23" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="517.564" cy="1139.49" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="558.607" cy="1126.13" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="608.134" cy="1088.72" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="647.443" cy="1068.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="711.15" cy="1028.6" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="756.759" cy="1002.83" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="808.3" cy="970.383" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="843.053" cy="952.026" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="882.884" cy="927.998" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="916.764" cy="910.514" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="940.424" cy="899.562" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="953.66" cy="905.252" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="953.66" cy="905.252" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-362.285,1648.42 -362.285,1648.42 -270.131,1592.29 -270.131,1744.38 -204.746,1648.42
-77.5564,1521.58 -47.2073,1521.58 25.1711,1456.51 25.1711,1475 25.1711,1552.47 79.9825,1475
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1744.38 -270.131,1648.42 -204.746,1592.29 -154.03,1552.47
-154.03,1592.29 -154.03,1648.42
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -112.592,1496.34 3.5089,1425.62 137.101,1344.25 202.486,1304.42 306.929,1240.81 481.738,1136.03 582.948,1073.77 670.318,1023.95
748.34,977.266 791.912,953.39 831.455,930.299 893.995,894.097 893.995,907.858 1001.16,841.891 1041.37,823.559 1079.56,806.896 1129.23,775.53 1172.24,748.718
1214.21,726.977 1255.41,694.651 1300.09,679.131 1343.82,651.723 1377.26,632.407 1404.98,620.811 1440.91,600.789 1473.42,583.615 1507.15,565.26 1540.47,548.515
1569.36,535.978 1593.72,524.503 1611.45,517.663 1627.24,516.998 1644.99,513.697
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="306.929" cy="1240.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="481.738" cy="1136.03" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="582.948" cy="1073.77" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="670.318" cy="1023.95" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="748.34" cy="977.266" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="791.912" cy="953.39" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="831.455" cy="930.299" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="893.995" cy="894.097" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="893.995" cy="907.858" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1001.16" cy="841.891" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1041.37" cy="823.559" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1079.56" cy="806.896" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1129.23" cy="775.53" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1172.24" cy="748.718" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1214.21" cy="726.977" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1255.41" cy="694.651" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1300.09" cy="679.131" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1343.82" cy="651.723" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1377.26" cy="632.407" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1404.98" cy="620.811" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1440.91" cy="600.789" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1473.42" cy="583.615" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1507.15" cy="565.26" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1540.47" cy="548.515" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1569.36" cy="535.978" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1593.72" cy="524.503" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1611.45" cy="517.663" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1627.24" cy="516.998" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1644.99" cy="513.697" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1644.99" cy="513.697" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -270.131,1592.29 -204.746,1592.29 -154.03,1552.47
-154.03,1648.42 -154.03,1744.38 -112.592,1744.38 -47.2073,1592.29 44.947,1475 161.048,1369.49
237.521,1310.31 312.832,1256.2 378.217,1214.36 531.342,1115.42 626.449,1057.34 689.993,1021.69 763.276,977.266 822.968,941.993 869.194,915.288
898.912,910.85 929.868,887.697 951.215,886.283 971.692,883.222
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="312.832" cy="1256.2" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="378.217" cy="1214.36" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="531.342" cy="1115.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="531.342" cy="1115.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="626.449" cy="1057.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="689.993" cy="1021.69" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="763.276" cy="977.266" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="822.968" cy="941.993" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="869.194" cy="915.288" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="898.912" cy="910.85" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="929.868" cy="887.697" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="951.215" cy="886.283" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="971.692" cy="883.222" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="971.692" cy="883.222" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1648.42 -362.285,1744.38 -204.746,1648.42
-154.03,1592.29
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1744.38
-270.131,1744.38 -47.2073,1496.34 63.1392,1412.42 192.813,1322.91 267.87,1273.53
335.024,1230.29 355.24,1220.51 403.036,1202.81 461.457,1162.3 476.126,1162.3 524.557,1144.85 584.717,1111.07 630.805,1087.51 636.488,1087.51 733.271,1018
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="267.87" cy="1273.53" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="335.024" cy="1230.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="355.24" cy="1220.51" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="403.036" cy="1202.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="461.457" cy="1162.3" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="476.126" cy="1162.3" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="524.557" cy="1144.85" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="584.717" cy="1111.07" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="630.805" cy="1087.51" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="636.488" cy="1087.51" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="733.271" cy="1018" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="733.271" cy="1018" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1744.38
-270.131,1744.38 -47.2073,1496.34 44.947,1425.62 182.71,1329.66 253.202,1283.08
318.587,1240.81 340.249,1230.29 373.804,1223.69 428.933,1184.67 445.776,1182.27 500.356,1162.3 550.561,1136.03 588.214,1119.91 595.05,1119.91 652.729,1078.2
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="253.202" cy="1283.08" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="318.587" cy="1240.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="340.249" cy="1230.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="373.804" cy="1223.69" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="428.933" cy="1184.67" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="445.776" cy="1182.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="500.356" cy="1162.3" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="550.561" cy="1136.03" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="588.214" cy="1119.91" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="595.05" cy="1119.91" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="652.729" cy="1078.2" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="652.729" cy="1078.2" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -270.131,1648.42
-77.5564,1496.34 79.9825,1412.42 137.101,1369.49 220.678,1336.76 288.238,1283.08
360.025,1230.29 435.821,1194.75 489.904,1154.27 558.607,1105.48 596.727,1083.94 615.945,1079.33 656.614,1058.31 685.514,1047.98 705.007,1048.89 726.764,1045.3
743.135,1056.38 764.877,1051.65 797.507,1024.72 814.153,1027.81
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="288.238" cy="1283.08" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="360.025" cy="1230.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="435.821" cy="1194.75" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="489.904" cy="1154.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="558.607" cy="1105.48" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="596.727" cy="1083.94" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="615.945" cy="1079.33" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="656.614" cy="1058.31" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="685.514" cy="1047.98" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="705.007" cy="1048.89" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="726.764" cy="1045.3" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="743.135" cy="1056.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="764.877" cy="1051.65" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="797.507" cy="1024.72" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="814.153" cy="1027.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="814.153" cy="1027.81" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -112.592,1496.34 95.6632,1369.49 149.39,1336.76 211.764,1298.77 267.87,1264.6 395.06,1189.62 495.19,1127.74 544.333,1104.11
614.404,1068.42 655.327,1044.41 689.993,1025.48 841.919,926.485 933.315,872.884 969.758,855.392 1049.26,804.537 1069.76,796.218 1095.56,782 1115.5,771.419
1136.65,779.636 1149.78,794.903 1176.84,782.132 1197.72,799.938 1220.74,784.27 1247.73,767.07 1269.17,753.056 1289.24,741.513 1306.14,728.859 1326.23,721.052
1350.89,703.604 1366.1,699.456 1380.84,699.31 1389.23,704.888 1399.03,708.424 1409.65,708.347
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="267.87" cy="1264.6" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="395.06" cy="1189.62" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="495.19" cy="1127.74" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="544.333" cy="1104.11" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="614.404" cy="1068.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="655.327" cy="1044.41" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="689.993" cy="1025.48" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="841.919" cy="926.485" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="933.315" cy="872.884" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="969.758" cy="855.392" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1049.26" cy="804.537" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1069.76" cy="796.218" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1095.56" cy="782" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1115.5" cy="771.419" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1136.65" cy="779.636" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1149.78" cy="794.903" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1176.84" cy="782.132" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1197.72" cy="799.938" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1220.74" cy="784.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1247.73" cy="767.07" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1269.17" cy="753.056" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1289.24" cy="741.513" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1306.14" cy="728.859" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1326.23" cy="721.052" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1350.89" cy="703.604" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1366.1" cy="699.456" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1380.84" cy="699.31" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1389.23" cy="704.888" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1399.03" cy="708.424" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1409.65" cy="708.347" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1409.65" cy="708.347" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-362.285,1648.42 -362.285,1648.42 -204.746,1552.47 -112.592,1496.34 -112.592,1552.47 44.947,1425.62 95.6632,1412.42
110.332,1400.38 110.332,1425.62 137.101,1496.34 137.101,1592.29 137.101,1648.42 149.39,1592.29
182.71,1496.34 202.486,1496.34 312.832,1322.91 360.025,1273.53 360.025,1278.22 378.217,1260.34 390.965,1260.34 432.403,1220.51 487.215,1177.57
524.557,1177.57 546.428,1175.28 588.214,1132.65 622.006,1106.86 643.397,1091.17 659.168,1089.94 675.103,1096.2 695.47,1092.41
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="312.832" cy="1322.91" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="360.025" cy="1273.53" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="360.025" cy="1278.22" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="378.217" cy="1260.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="390.965" cy="1260.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="432.403" cy="1220.51" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="487.215" cy="1177.57" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="524.557" cy="1177.57" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="546.428" cy="1175.28" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="588.214" cy="1132.65" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="622.006" cy="1106.86" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="643.397" cy="1091.17" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="659.168" cy="1089.94" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="675.103" cy="1096.2" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="695.47" cy="1092.41" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="695.47" cy="1092.41" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-362.285,1648.42 -362.285,1648.42 -204.746,1552.47 -154.03,1521.58 -154.03,1592.29 -112.592,1552.47
-112.592,1648.42 110.332,1412.42 149.39,1379.04 161.048,1369.49 237.521,1316.47 260.655,1298.77 382.546,1211.38 596.727,1070.54
721.999,997.704 775.776,964.319 870.701,903.648 893.09,891.735 978.647,837.668 992.536,832.995 1019.83,829.965 1043.72,830.528 1064.06,825.359 1091.8,828.474
1122.22,807.054 1141.57,825.178 1156.57,815.398 1173.04,811.901 1200.56,792.882 1220.74,780.681
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="260.655" cy="1298.77" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="382.546" cy="1211.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="596.727" cy="1070.54" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="721.999" cy="997.704" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="775.776" cy="964.319" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="870.701" cy="903.648" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="893.09" cy="891.735" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="978.647" cy="837.668" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="992.536" cy="832.995" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1019.83" cy="829.965" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1043.72" cy="830.528" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1064.06" cy="825.359" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1091.8" cy="828.474" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1122.22" cy="807.054" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1141.57" cy="825.178" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1156.57" cy="815.398" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1173.04" cy="811.901" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1200.56" cy="792.882" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1220.74" cy="780.681" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1220.74" cy="780.681" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -47.2073,1456.51 25.1711,1412.42 229.256,1288.12 294.64,1248.29 335.024,1223.69 390.965,1189.62 442.506,1160.25 492.563,1141.25 546.428,1109.65
598.392,1093.66 684.381,1038.37 786.176,969.353 808.3,959.461 808.3,966.311 865.126,930.686 917.58,898.944 960.507,874.167 995.446,862.079 1026.48,861.607
1047.66,849.013 1087.99,812.891 1087.99,830.152
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="294.64" cy="1248.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="335.024" cy="1223.69" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="390.965" cy="1189.62" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="442.506" cy="1160.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="492.563" cy="1141.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="546.428" cy="1109.65" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="598.392" cy="1093.66" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="684.381" cy="1038.37" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="786.176" cy="969.353" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="808.3" cy="959.461" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="808.3" cy="966.311" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="865.126" cy="930.686" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="917.58" cy="898.944" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="960.507" cy="874.167" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="995.446" cy="862.079" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1026.48" cy="861.607" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1047.66" cy="849.013" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1087.99" cy="812.891" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1087.99" cy="830.152" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1087.99" cy="830.152" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -154.03,1521.58 -112.592,1496.34 -112.592,1521.58 -47.2073,1475 -20.4375,1456.51
25.1711,1496.34 63.1392,1475 137.101,1400.38 182.71,1360.55 182.71,1379.04 229.256,1344.25 300.868,1293.34 324.199,1273.53 378.217,1237.21
395.06,1240.81 406.921,1244.5 425.409,1226.95 428.933,1240.81 442.506,1264.6
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="300.868" cy="1293.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="324.199" cy="1273.53" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="378.217" cy="1237.21" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="395.06" cy="1240.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="406.921" cy="1244.5" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="425.409" cy="1226.95" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="428.933" cy="1240.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="442.506" cy="1264.6" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="442.506" cy="1264.6" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -112.592,1496.34 -77.5564,1475 25.1711,1412.42 95.6632,1369.49 237.521,1288.12 306.929,1244.5 335.024,1244.5
492.563,1139.49 562.526,1098.79 611.291,1066.34 720.064,998.335 720.064,1006.81 789.778,964.319 819.859,945.833 839.061,950.676 850.834,955.23 883.358,939.491
926.369,935.019 946.96,914.596 959.493,932.246 1013.77,887.13 1038.52,869.603 1064.49,847.943 1113.79,811.737
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="306.929" cy="1244.5" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="335.024" cy="1244.5" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="492.563" cy="1139.49" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="562.526" cy="1098.79" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="611.291" cy="1066.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="720.064" cy="998.335" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="720.064" cy="1006.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="789.778" cy="964.319" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="819.859" cy="945.833" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="839.061" cy="950.676" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="850.834" cy="955.23" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="883.358" cy="939.491" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="926.369" cy="935.019" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="946.96" cy="914.596" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="959.493" cy="932.246" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1013.77" cy="887.13" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1038.52" cy="869.603" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1064.49" cy="847.943" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1113.79" cy="811.737" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1113.79" cy="811.737" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1648.42 -362.285,1744.38 -270.131,1648.42
-270.131,1744.38 -154.03,1648.42 -112.592,1592.29 3.5089,1475 161.048,1352.16 274.864,1273.53
364.711,1214.36 378.217,1205.61 425.409,1179.9 550.561,1100.1 603.315,1070.54 606.539,1079.33 669.105,1047.08 686.642,1047.98 702.922,1037.53 716.146,1036.69
781.777,1013.7 830.261,985.659 874.671,945.833 915.123,927.618 947.317,903.648 971.371,886.847 1000.31,865.185 1066.61,824.636 1129.55,782.93 1149.19,776.927
1217.06,729.04 1240.56,716.686
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="274.864" cy="1273.53" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="364.711" cy="1214.36" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="378.217" cy="1205.61" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="425.409" cy="1179.9" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="550.561" cy="1100.1" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="603.315" cy="1070.54" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="606.539" cy="1079.33" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="669.105" cy="1047.08" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="686.642" cy="1047.98" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="702.922" cy="1037.53" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="716.146" cy="1036.69" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="781.777" cy="1013.7" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="830.261" cy="985.659" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="874.671" cy="945.833" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="915.123" cy="927.618" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="947.317" cy="903.648" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="971.371" cy="886.847" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1000.31" cy="865.185" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1066.61" cy="824.636" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1129.55" cy="782.93" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1149.19" cy="776.927" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1217.06" cy="729.04" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1240.56" cy="716.686" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1240.56" cy="716.686" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -154.03,1521.58 25.1711,1412.42 110.332,1360.55 182.71,1316.47 260.655,1273.53 364.711,1208.46 439.188,1170.82
533.56,1109.65 566.378,1096.2 656.614,1040.93 723.917,1000.24 736.004,997.704 814.794,952.026 855.698,930.686 908.438,903.967 946.601,879.958 984.487,865.426
1026.48,844.988 1061.48,818.985 1095.56,808.01 1124.86,793.169 1162.33,774.647 1191.46,759.66 1213.88,751.135 1240.56,740.528 1263.29,731.685
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="260.655" cy="1273.53" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="364.711" cy="1208.46" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="439.188" cy="1170.82" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="533.56" cy="1109.65" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="566.378" cy="1096.2" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="656.614" cy="1040.93" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="723.917" cy="1000.24" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="736.004" cy="997.704" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="814.794" cy="952.026" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="855.698" cy="930.686" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="908.438" cy="903.967" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="946.601" cy="879.958" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="984.487" cy="865.426" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1026.48" cy="844.988" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1061.48" cy="818.985" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1095.56" cy="808.01" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1124.86" cy="793.169" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1162.33" cy="774.647" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1191.46" cy="759.66" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1213.88" cy="751.135" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1240.56" cy="740.528" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1263.29" cy="731.685" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1263.29" cy="731.685" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-362.285,1648.42 -362.285,1648.42 -154.03,1521.58 -47.2073,1456.51 63.1392,1389.3 161.048,1329.66 253.202,1273.53 253.202,1283.08 324.199,1237.21 406.921,1192.16
406.921,1200.07 552.599,1108.25 646.102,1051.65 730.505,1000.89 798.885,954.307 867.677,912.54 867.677,918.802 995.156,832.422 1054.68,801.454 1106.28,773.521
1157,746.036 1214.43,712.293 1245.52,698.221 1299.49,658.666 1337.74,647.598 1379.99,625.009 1423.57,600.039 1455.96,584.185 1472.36,584.63 1506.39,563.063
1529.81,558.375
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="253.202" cy="1273.53" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="253.202" cy="1283.08" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="324.199" cy="1237.21" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="406.921" cy="1192.16" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="406.921" cy="1200.07" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="552.599" cy="1108.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="646.102" cy="1051.65" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="730.505" cy="1000.89" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="798.885" cy="954.307" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="867.677" cy="912.54" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="867.677" cy="918.802" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="995.156" cy="832.422" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1054.68" cy="801.454" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1106.28" cy="773.521" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1157" cy="746.036" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1214.43" cy="712.293" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1245.52" cy="698.221" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1299.49" cy="658.666" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1337.74" cy="647.598" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1379.99" cy="625.009" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1423.57" cy="600.039" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1455.96" cy="584.185" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1472.36" cy="584.63" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1506.39" cy="563.063" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1529.81" cy="558.375" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1529.81" cy="558.375" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -270.131,1592.29 -77.5564,1475 -47.2073,1456.51 -47.2073,1475 95.6632,1400.38 137.101,1369.49
202.486,1352.16 745.752,977.81 791.203,949.338 802.968,941.993 842.487,919.874 863.064,907.858 863.064,909.845 869.697,1018 873.685,1012.29
878.573,1050.72 883.831,1056.38 889.892,1116.9 893.09,1173.03 904.157,1126.13 908.861,1129.35 913.884,1122.99 919.203,1118.4 930.254,1094.93 946.601,1060.28
966.825,1016.55 993.995,977.266 1009.19,955.694
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="745.752" cy="977.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="745.752" cy="977.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="791.203" cy="949.338" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="802.968" cy="941.993" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="842.487" cy="919.874" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="863.064" cy="907.858" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="863.064" cy="909.845" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="869.697" cy="1018" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="873.685" cy="1012.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="878.573" cy="1050.72" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="883.831" cy="1056.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="889.892" cy="1116.9" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="893.09" cy="1173.03" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="904.157" cy="1126.13" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="908.861" cy="1129.35" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="913.884" cy="1122.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="919.203" cy="1118.4" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="930.254" cy="1094.93" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="946.601" cy="1060.28" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="966.825" cy="1016.55" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="993.995" cy="977.266" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1009.19" cy="955.694" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1009.19" cy="955.694" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -270.131,1592.29 -204.746,1592.29 -112.592,1521.58 -20.4375,1496.34
95.6632,1400.38 211.764,1316.47 345.356,1230.29 364.711,1223.69 500.356,1137.75 573.892,1088.72 588.214,1086.31 630.805,1057.34
665.43,1042.66 744.011,1000.89 758.406,992.76 782.516,998.335 822.35,983.371 859.937,953.848 924.796,908.848 997.747,856.522 1027.74,848.584 1056.67,827.55
1108.4,790.326 1134.94,776.8 1185.65,743.305 1219.77,728.949 1233.98,736.56 1254.76,727.066
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="345.356" cy="1230.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="364.711" cy="1223.69" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="500.356" cy="1137.75" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="573.892" cy="1088.72" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="588.214" cy="1086.31" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="630.805" cy="1057.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="665.43" cy="1042.66" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="744.011" cy="1000.89" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="758.406" cy="992.76" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="782.516" cy="998.335" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="822.35" cy="983.371" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="859.937" cy="953.848" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="924.796" cy="908.848" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="997.747" cy="856.522" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1027.74" cy="848.584" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1056.67" cy="827.55" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1108.4" cy="790.326" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1134.94" cy="776.8" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1185.65" cy="743.305" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1219.77" cy="728.949" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1233.98" cy="736.56" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1254.76" cy="727.066" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1254.76" cy="727.066" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-362.285,1648.42 -362.285,1648.42 -270.131,1744.38
-204.746,1648.42 63.1392,1412.42 124.11,1369.49 124.11,1379.04 161.048,1352.16 237.521,1304.42 345.356,1264.6 406.921,1214.36
421.83,1214.36 502.895,1150.42 556.622,1115.42 614.404,1073.77 683.241,1032.59 737.808,1005.47 781.036,981.679 822.35,952.934 862.546,934.221 890.351,921.679
955.046,881.038 1010.55,849.66 1058.21,821.958 1103.42,794.033 1147.42,766.714 1188.27,741.711 1243.11,703.529 1282.31,684.135
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="345.356" cy="1264.6" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="406.921" cy="1214.36" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="421.83" cy="1214.36" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="502.895" cy="1150.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="556.622" cy="1115.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="614.404" cy="1073.77" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="683.241" cy="1032.59" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="737.808" cy="1005.47" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="781.036" cy="981.679" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="822.35" cy="952.934" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="862.546" cy="934.221" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="890.351" cy="921.679" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="955.046" cy="881.038" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1010.55" cy="849.66" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1058.21" cy="821.958" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1103.42" cy="794.033" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1147.42" cy="766.714" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1188.27" cy="741.711" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1243.11" cy="703.529" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1282.31" cy="684.135" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1282.31" cy="684.135" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -154.03,1521.58 -77.5564,1475 -47.2073,1456.51 124.11,1352.16 124.11,1360.55 149.39,1344.25 294.64,1268.99
318.587,1260.34 324.199,1260.34 369.303,1226.95 386.795,1244.5 410.741,1223.69 445.776,1200.07 445.776,1256.2 461.457,1252.19 481.738,1230.29
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="294.64" cy="1268.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="318.587" cy="1260.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="324.199" cy="1260.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="369.303" cy="1226.95" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="386.795" cy="1244.5" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="410.741" cy="1223.69" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="445.776" cy="1200.07" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="445.776" cy="1256.2" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="461.457" cy="1252.19" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="481.738" cy="1230.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="481.738" cy="1230.29" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -362.285,1648.42 -362.285,1744.38 -270.131,1744.38
-20.4375,1475 -20.4375,1496.34 63.1392,1425.62
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -47.2073,1456.51 3.5089,1425.62 110.332,1360.55 172.137,1329.66 192.813,1316.47
294.64,1252.19 294.64,1283.08 373.804,1230.29 418.193,1214.36 442.506,1208.46 476.126,1179.9 476.126,1184.67 529.103,1166.49 546.428,1150.42 546.428,1182.27
566.378,1184.67 566.378,1202.81 609.718,1168.64 654.031,1148.54 669.105,1141.25 693.295,1122.99 709.121,1139.49
710.138,1137.75 710.138,1205.61 716.146,1223.69 721.999,1205.61 721.999,1283.08
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="294.64" cy="1252.19" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="294.64" cy="1283.08" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="373.804" cy="1230.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="418.193" cy="1214.36" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="442.506" cy="1208.46" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="476.126" cy="1179.9" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="476.126" cy="1184.67" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="529.103" cy="1166.49" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="546.428" cy="1150.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="546.428" cy="1182.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="566.378" cy="1184.67" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="566.378" cy="1202.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="609.718" cy="1168.64" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="609.718" cy="1168.64" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="654.031" cy="1148.54" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="669.105" cy="1141.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="669.105" cy="1141.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="693.295" cy="1122.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="693.295" cy="1122.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="709.121" cy="1139.49" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="710.138" cy="1137.75" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="710.138" cy="1205.61" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="716.146" cy="1223.69" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="721.999" cy="1205.61" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="721.999" cy="1283.08" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="721.999" cy="1283.08" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -154.03,1521.58 25.1711,1412.42 95.6632,1379.04 161.048,1336.76 172.137,1329.66
345.356,1233.7 492.563,1136.03 533.56,1109.65 533.56,1118.4 564.46,1102.76 648.776,1049.8 648.776,1050.72 755.931,992.154 807.64,975.647 837.328,959.939
897.582,912.2 919.203,900.494 989.884,859.736 1026.23,831.851 1052.89,830.152 1072.66,826.086 1092.18,817.094 1109.63,821.077 1135.09,804.07 1151.68,819.679
1173.43,815.566
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="345.356" cy="1233.7" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="492.563" cy="1136.03" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="533.56" cy="1109.65" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="533.56" cy="1118.4" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="564.46" cy="1102.76" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="648.776" cy="1049.8" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="648.776" cy="1050.72" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="755.931" cy="992.154" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="807.64" cy="975.647" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="837.328" cy="959.939" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="897.582" cy="912.2" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="919.203" cy="900.494" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="989.884" cy="859.736" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1026.23" cy="831.851" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1052.89" cy="830.152" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1072.66" cy="826.086" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1092.18" cy="817.094" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1109.63" cy="821.077" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1135.09" cy="804.07" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1151.68" cy="819.679" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1173.43" cy="815.566" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1173.43" cy="815.566" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -362.285,1648.42 -204.746,1552.47 -204.746,1592.29 -204.746,1648.42 3.5089,1496.34
202.486,1329.66 220.678,1316.47 260.655,1288.12 306.929,1283.08 355.24,1244.5 435.821,1223.69 473.267,1189.62
492.563,1177.57 524.557,1160.25 537.931,1148.54 566.378,1136.03 586.472,1132.65 606.539,1146.68 636.488,1132.65 654.031,1122.99 672.723,1119.91
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="260.655" cy="1288.12" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="260.655" cy="1288.12" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="306.929" cy="1283.08" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="355.24" cy="1244.5" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="435.821" cy="1223.69" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="473.267" cy="1189.62" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="492.563" cy="1177.57" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="524.557" cy="1160.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="537.931" cy="1148.54" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="566.378" cy="1136.03" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="586.472" cy="1132.65" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="606.539" cy="1146.68" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="636.488" cy="1132.65" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="654.031" cy="1122.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="672.723" cy="1119.91" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="672.723" cy="1119.91" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -154.03,1521.58 44.947,1400.38 149.39,1336.76 288.238,1256.2 350.352,1217.4 360.025,1211.38
390.965,1192.16 428.933,1177.57 484.493,1154.27 533.56,1130.99 595.05,1106.86 648.776,1075.96 708.1,1030.18 734.186,1015.12 778.796,986.817 832.641,954.307
832.641,963.825 872.198,944.97 955.391,887.413 982.046,878.887 995.156,874.425 1026.23,859.504 1063.42,842.3
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="288.238" cy="1256.2" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="350.352" cy="1217.4" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="360.025" cy="1211.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="390.965" cy="1192.16" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="428.933" cy="1177.57" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="484.493" cy="1154.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="533.56" cy="1130.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="595.05" cy="1106.86" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="648.776" cy="1075.96" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="708.1" cy="1030.18" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="734.186" cy="1015.12" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="778.796" cy="986.817" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="832.641" cy="954.307" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="832.641" cy="963.825" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="872.198" cy="944.97" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="955.391" cy="887.413" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="982.046" cy="878.887" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="995.156" cy="874.425" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1026.23" cy="859.504" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1063.42" cy="842.3" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1063.42" cy="842.3" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-362.285,1648.42 -362.285,1648.42 -270.131,1592.29 -204.746,1552.47 -112.592,1496.34 -77.5564,1475 -77.5564,1521.58 -77.5564,1552.47
-77.5564,1592.29 -77.5564,1744.38 -47.2073,1744.38 3.5089,1592.29
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#00a98d; stroke-width:8; stroke-opacity:0.5; fill:none" points="
-77.5564,1475 3.5089,1440.2 63.1392,1425.62 110.332,1389.3 137.101,1379.04 137.101,1389.3 202.486,1352.16 237.521,1322.91 237.521,1344.25 253.202,1352.16
274.864,1352.16 318.587,1316.47 345.356,1288.12 355.24,1310.31 369.303,1316.47 403.036,1273.53 435.821,1244.5 452.179,1237.21 461.457,1252.19 467.439,1264.6
478.949,1256.2 487.215,1256.2 487.215,1293.34 489.904,1344.25 489.904,1389.3 500.356,1379.04 500.356,1400.38 505.407,1425.62 510.348,1440.2
510.348,1456.51 531.342,1352.16 540.085,1352.16 544.333,1336.76 548.504,1336.76 548.504,1352.16 562.526,1304.42 586.472,1244.5 600.045,1248.29 618.996,1220.51
618.996,1226.95 633.664,1202.81 657.895,1160.25 657.895,1175.28 684.381,1156.23 697.624,1148.54 712.158,1144.85 728.642,1116.9 749.196,1098.79 786.176,1065.31
808.3,1035.86 833.233,1021.69 859.411,997.704 871.201,992.154 896.69,971.42 917.58,958.509 945.523,946.701 963.521,938.257 979.269,934.619 1000.03,925.734
1011.63,918.802 1020.86,925.734 1032.7,926.485 1050.17,926.109
"/>
<circle clip-path="url(#clip7702)" cx="253.202" cy="1352.16" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="274.864" cy="1352.16" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="318.587" cy="1316.47" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="345.356" cy="1288.12" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="355.24" cy="1310.31" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="369.303" cy="1316.47" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="403.036" cy="1273.53" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="435.821" cy="1244.5" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="452.179" cy="1237.21" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="461.457" cy="1252.19" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="467.439" cy="1264.6" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="478.949" cy="1256.2" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="487.215" cy="1256.2" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="487.215" cy="1293.34" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="489.904" cy="1344.25" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="489.904" cy="1389.3" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="500.356" cy="1379.04" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="500.356" cy="1400.38" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="505.407" cy="1425.62" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="531.342" cy="1352.16" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="540.085" cy="1352.16" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="544.333" cy="1336.76" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="548.504" cy="1336.76" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="548.504" cy="1352.16" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="562.526" cy="1304.42" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="586.472" cy="1244.5" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="600.045" cy="1248.29" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="618.996" cy="1220.51" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="618.996" cy="1226.95" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="633.664" cy="1202.81" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="657.895" cy="1160.25" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="657.895" cy="1175.28" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="684.381" cy="1156.23" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="697.624" cy="1148.54" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="712.158" cy="1144.85" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="728.642" cy="1116.9" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="749.196" cy="1098.79" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="786.176" cy="1065.31" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="808.3" cy="1035.86" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="833.233" cy="1021.69" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="859.411" cy="997.704" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="871.201" cy="992.154" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="896.69" cy="971.42" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="917.58" cy="958.509" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="945.523" cy="946.701" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="963.521" cy="938.257" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="979.269" cy="934.619" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1000.03" cy="925.734" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1011.63" cy="918.802" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1020.86" cy="925.734" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1032.7" cy="926.485" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1050.17" cy="926.109" r="7" fill="#00a98d" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1050.17" cy="926.109" r="10" fill="#00a98d" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="0"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -270.131,1592.29 -77.5564,1475 3.5089,1425.62 110.332,1360.55 267.87,1268.99 340.249,1223.69 386.795,1200.07
421.83,1177.57 452.179,1166.49 537.931,1113.96 573.892,1097.49 598.392,1100.1 657.895,1066.34 666.661,1069.47 667.887,1078.2 688.881,1068.42 701.872,1092.41
712.158,1102.76 751.745,1068.42 770.392,1088.72 786.901,1071.6 802.292,1050.72 819.859,1042.66 841.919,1022.44
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="267.87" cy="1268.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="340.249" cy="1223.69" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="386.795" cy="1200.07" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="421.83" cy="1177.57" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="452.179" cy="1166.49" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="537.931" cy="1113.96" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="573.892" cy="1097.49" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="598.392" cy="1100.1" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="657.895" cy="1066.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="666.661" cy="1069.47" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="667.887" cy="1078.2" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="688.881" cy="1068.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="701.872" cy="1092.41" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="712.158" cy="1102.76" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="751.745" cy="1068.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="770.392" cy="1088.72" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="786.901" cy="1071.6" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="802.292" cy="1050.72" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="819.859" cy="1042.66" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="841.919" cy="1022.44" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="841.919" cy="1022.44" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-362.285,1648.42 -77.5564,1475 110.332,1360.55 260.655,1268.99 399.083,1184.67 500.356,1126.13 604.933,1066.34 661.693,1030.18
705.007,1008.84 737.808,987.4 756.759,983.371 756.759,998.969 765.673,1012.99 805.65,1010.9 832.049,1009.52 849.738,1014.4 864.612,1018.73 883.358,1007.48
905.02,978.356 919.203,966.311 945.883,958.984 963.854,954.307 978.647,947.574 986.601,948.453 1000.03,944.97 1010.82,948.895
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="260.655" cy="1268.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="399.083" cy="1184.67" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="500.356" cy="1126.13" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="604.933" cy="1066.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="661.693" cy="1030.18" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="705.007" cy="1008.84" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="737.808" cy="987.4" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="756.759" cy="983.371" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="756.759" cy="998.969" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="765.673" cy="1012.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="805.65" cy="1010.9" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="832.049" cy="1009.52" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="849.738" cy="1014.4" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="864.612" cy="1018.73" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="883.358" cy="1007.48" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="905.02" cy="978.356" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="919.203" cy="966.311" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="945.883" cy="958.984" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="963.854" cy="954.307" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="978.647" cy="947.574" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="986.601" cy="948.453" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1000.03" cy="944.97" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1010.82" cy="948.895" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1010.82" cy="948.895" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1744.38 -270.131,1648.42
-154.03,1552.47
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -270.131,1592.29 -77.5564,1475 63.1392,1389.3 124.11,1360.55 202.486,1310.31 306.929,1244.5
373.804,1208.46 418.193,1179.9 418.193,1189.62 560.575,1102.76 618.996,1067.38 686.642,1027.03 725.819,1009.52 755.931,995.829 843.053,937.44 915.945,886.283
972.013,860.435 1032.95,823.023 1085.86,792.596 1089.14,795.632 1106.28,787.265 1114.31,799.036 1118.89,819.158 1123.38,843.328
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="306.929" cy="1244.5" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="373.804" cy="1208.46" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="418.193" cy="1179.9" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="418.193" cy="1189.62" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="560.575" cy="1102.76" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="618.996" cy="1067.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="686.642" cy="1027.03" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="725.819" cy="1009.52" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="755.931" cy="995.829" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="843.053" cy="937.44" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="915.945" cy="886.283" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="972.013" cy="860.435" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1032.95" cy="823.023" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1085.86" cy="792.596" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1089.14" cy="795.632" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1106.28" cy="787.265" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1114.31" cy="799.036" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1118.89" cy="819.158" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1123.38" cy="843.328" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1123.38" cy="843.328" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#ac8d18; stroke-width:8; stroke-opacity:0.5; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1744.38
-112.592,1552.47 63.1392,1412.42 95.6632,1389.3 267.87,1273.53 345.356,1223.69 487.215,1134.33
568.28,1083.94 640.658,1042.66 708.1,1004.81 743.135,983.371 841.919,926.485 892.636,897.107 960.169,861.372 1066.19,794.758 1170.11,729.221 1237.19,688.381
1237.19,690.896 1426.28,570.019 1471.76,542.586 1516.98,516.257 1572.19,485.946 1610.12,468.599 1648.52,448.391 1706.63,407.009 1735.66,411.566 1785.14,380.598
1813.67,366.817 1859.12,341.412 1887.93,326.118 1937.09,293.53 1972.19,278.03 2001.43,260.164 2026.04,252.578 2046.44,242.859 2067.67,238.93 2087.38,230.742
2106.01,234.334
"/>
<circle clip-path="url(#clip7702)" cx="267.87" cy="1273.53" r="7" fill="#ac8d18" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="345.356" cy="1223.69" r="7" fill="#ac8d18" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="487.215" cy="1134.33" r="7" fill="#ac8d18" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="568.28" cy="1083.94" r="7" fill="#ac8d18" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="640.658" cy="1042.66" r="7" fill="#ac8d18" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="708.1" cy="1004.81" r="7" fill="#ac8d18" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="743.135" cy="983.371" r="7" fill="#ac8d18" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="841.919" cy="926.485" r="7" fill="#ac8d18" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="892.636" cy="897.107" r="7" fill="#ac8d18" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="960.169" cy="861.372" r="7" fill="#ac8d18" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1066.19" cy="794.758" r="7" fill="#ac8d18" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1170.11" cy="729.221" r="7" fill="#ac8d18" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1237.19" cy="688.381" r="7" fill="#ac8d18" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1237.19" cy="690.896" r="7" fill="#ac8d18" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1426.28" cy="570.019" r="7" fill="#ac8d18" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1471.76" cy="542.586" r="7" fill="#ac8d18" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1516.98" cy="516.257" r="7" fill="#ac8d18" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1572.19" cy="485.946" r="7" fill="#ac8d18" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1610.12" cy="468.599" r="7" fill="#ac8d18" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1648.52" cy="448.391" r="7" fill="#ac8d18" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1706.63" cy="407.009" r="7" fill="#ac8d18" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1735.66" cy="411.566" r="7" fill="#ac8d18" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1785.14" cy="380.598" r="7" fill="#ac8d18" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1813.67" cy="366.817" r="7" fill="#ac8d18" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1859.12" cy="341.412" r="7" fill="#ac8d18" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1887.93" cy="326.118" r="7" fill="#ac8d18" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1937.09" cy="293.53" r="7" fill="#ac8d18" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1972.19" cy="278.03" r="7" fill="#ac8d18" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2001.43" cy="260.164" r="7" fill="#ac8d18" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2026.04" cy="252.578" r="7" fill="#ac8d18" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2046.44" cy="242.859" r="7" fill="#ac8d18" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2067.67" cy="238.93" r="7" fill="#ac8d18" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2087.38" cy="230.742" r="7" fill="#ac8d18" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2106.01" cy="234.334" r="7" fill="#ac8d18" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2106.01" cy="234.334" r="10" fill="#ac8d18" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="0"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1744.38 -112.592,1521.58 3.5089,1440.2 137.101,1352.16
237.521,1288.12 340.249,1223.69 373.804,1205.61 410.741,1182.27 455.314,1162.3 467.439,1162.3 481.738,1168.64 519.919,1158.22 531.342,1182.27 531.342,1200.07
540.085,1214.36 540.085,1260.34 554.619,1248.29 562.526,1252.19 572.037,1298.77 608.134,1230.29 612.853,1220.51
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="340.249" cy="1223.69" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="373.804" cy="1205.61" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="410.741" cy="1182.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="455.314" cy="1162.3" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="467.439" cy="1162.3" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="481.738" cy="1168.64" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="519.919" cy="1158.22" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="531.342" cy="1182.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="531.342" cy="1200.07" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="540.085" cy="1214.36" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="540.085" cy="1260.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="554.619" cy="1248.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="562.526" cy="1252.19" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="572.037" cy="1298.77" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="608.134" cy="1230.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="612.853" cy="1220.51" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="612.853" cy="1220.51" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1648.42 -362.285,1744.38
-270.131,1648.42 -270.131,1744.38 -154.03,1592.29 -112.592,1552.47 -77.5564,1552.47
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -204.746,1552.47 -204.746,1592.29 -154.03,1552.47
-77.5564,1496.34 -47.2073,1475 -47.2073,1552.47 -47.2073,1592.29 -20.4375,1648.42 3.5089,1648.42
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1744.38 -77.5564,1496.34
44.947,1412.42 79.9825,1389.3 95.6632,1379.04 172.137,1329.66 288.238,1260.34 512.779,1126.13 529.103,1115.42 635.08,1051.65 687.764,1018.73 733.271,989.757
814.794,939.905 892.636,894.097 933.695,882.673 1003.4,834.923 1041.13,818.985 1055.12,815.735 1072.46,809.78 1089.71,813.057 1106.1,822.667 1132.89,812.23
1162.47,814.725 1179.05,818.639 1200.09,800.845 1212.88,796.218 1238.09,775.403 1260.78,757.535 1287.41,741.414 1305.04,738.578 1331.44,715.944 1347.53,709.362
1366.84,693.388 1388.72,682.189 1413.55,665.69
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="288.238" cy="1260.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="512.779" cy="1126.13" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="529.103" cy="1115.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="635.08" cy="1051.65" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="687.764" cy="1018.73" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="733.271" cy="989.757" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="814.794" cy="939.905" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="892.636" cy="894.097" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="933.695" cy="882.673" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1003.4" cy="834.923" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1041.13" cy="818.985" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1055.12" cy="815.735" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1072.46" cy="809.78" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1089.71" cy="813.057" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1106.1" cy="822.667" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1132.89" cy="812.23" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1162.47" cy="814.725" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1179.05" cy="818.639" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1200.09" cy="800.845" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1212.88" cy="796.218" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1238.09" cy="775.403" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1260.78" cy="757.535" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1287.41" cy="741.414" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1305.04" cy="738.578" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1331.44" cy="715.944" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1347.53" cy="709.362" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1366.84" cy="693.388" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1388.72" cy="682.189" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1413.55" cy="665.69" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1413.55" cy="665.69" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -47.2073,1456.51 137.101,1344.25 229.256,1288.12 329.676,1226.95 395.06,1189.62 502.895,1122.99 556.622,1098.79
699.758,1006.81 750.899,980.008 802.968,950.228 826.644,940.737 888.507,903.329 952.964,867.868 952.964,873.91 1079.76,798.886 1119.89,776.036 1229.38,701.96
1229.38,704.737 1275.92,678.377 1301.98,668.288 1369.47,617.744 1428.95,590.916 1478.21,559.433 1507.33,557.902 1544.32,526.958 1570.69,515.251 1593.03,502.508
1611.34,504.867 1631.88,506.705 1651.21,509.138 1663.06,511.859 1679.22,516.219 1688.77,524.194 1704.15,521.283
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="329.676" cy="1226.95" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="395.06" cy="1189.62" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="502.895" cy="1122.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="556.622" cy="1098.79" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="699.758" cy="1006.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="750.899" cy="980.008" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="802.968" cy="950.228" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="826.644" cy="940.737" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="888.507" cy="903.329" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="952.964" cy="867.868" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="952.964" cy="873.91" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1079.76" cy="798.886" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1119.89" cy="776.036" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1229.38" cy="701.96" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1229.38" cy="704.737" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1275.92" cy="678.377" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1301.98" cy="668.288" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1369.47" cy="617.744" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1428.95" cy="590.916" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1478.21" cy="559.433" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1507.33" cy="557.902" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1544.32" cy="526.958" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1570.69" cy="515.251" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1593.03" cy="502.508" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1611.34" cy="504.867" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1631.88" cy="506.705" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1651.21" cy="509.138" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1663.06" cy="511.859" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1679.22" cy="516.219" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1688.77" cy="524.194" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1704.15" cy="521.283" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1704.15" cy="521.283" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-47.2073,1475 -20.4375,1456.51 3.5089,1475 3.5089,1496.34 3.5089,1521.58 25.1711,1592.29 110.332,1475 110.332,1496.34
124.11,1475 137.101,1456.51 137.101,1475 137.101,1648.42 137.101,1744.38 161.048,1648.42 182.71,1552.47
192.813,1521.58 202.486,1496.34 220.678,1456.51 237.521,1456.51 253.202,1456.51 260.655,1440.2 267.87,1440.2 267.87,1456.51
281.649,1456.51 312.832,1389.3 318.587,1400.38 324.199,1412.42 329.676,1412.42 329.676,1425.62 340.249,1400.38 345.356,1412.42 345.356,1496.34 345.356,1521.58
345.356,1552.47 355.24,1521.58 360.025,1496.34 364.711,1521.58 369.303,1521.58 382.546,1456.51 406.921,1379.04 435.821,1316.47 467.439,1273.53 526.842,1197.38
544.333,1179.9 595.05,1129.35 623.497,1106.86 646.102,1093.66 678.626,1072.68 700.818,1062.27 721.034,1065.31 736.908,1056.38 750.049,1068.42 763.276,1070.54
775.015,1071.6 781.036,1092.41 792.619,1097.49 797.507,1115.42
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="312.832" cy="1389.3" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="318.587" cy="1400.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="324.199" cy="1412.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="329.676" cy="1412.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="329.676" cy="1425.62" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="340.249" cy="1400.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="345.356" cy="1412.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="406.921" cy="1379.04" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="435.821" cy="1316.47" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="467.439" cy="1273.53" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="526.842" cy="1197.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="544.333" cy="1179.9" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="595.05" cy="1129.35" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="623.497" cy="1106.86" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="646.102" cy="1093.66" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="678.626" cy="1072.68" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="700.818" cy="1062.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="721.034" cy="1065.31" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="736.908" cy="1056.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="750.049" cy="1068.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="763.276" cy="1070.54" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="775.015" cy="1071.6" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="781.036" cy="1092.41" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="792.619" cy="1097.49" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="797.507" cy="1115.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="797.507" cy="1115.42" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -270.131,1592.29 -112.592,1496.34 44.947,1400.38 44.947,1412.42 44.947,1440.2
63.1392,1475 79.9825,1456.51 79.9825,1648.42 149.39,1475 161.048,1456.51
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
79.9825,1400.38 79.9825,1412.42 149.39,1379.04 149.39,1400.38 149.39,1412.42 211.764,1412.42 211.764,1496.34
267.87,1389.3 274.864,1456.51 274.864,1744.38 281.649,1648.42 288.238,1592.29
288.238,1648.42 288.238,1744.38 300.868,1648.42 318.587,1521.58 324.199,1496.34
329.676,1475 335.024,1456.51 335.024,1496.34 335.024,1592.29 355.24,1475 360.025,1475 369.303,1456.51 369.303,1475
382.546,1425.62 406.921,1360.55 445.776,1310.31 461.457,1288.12 481.738,1264.6 556.622,1168.64 614.404,1111.07 656.614,1077.08 697.624,1047.98 754.266,1009.52
792.619,981.679 848.085,941.993 933.695,888.267 975.827,864.943 1007,847.73 1034.66,833.186 1060.18,823.738 1079.16,816.583 1099.98,813.223 1124.69,820.901
1145.94,818.466 1164.13,814.893 1180.08,812.726
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="267.87" cy="1389.3" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="267.87" cy="1389.3" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="267.87" cy="1389.3" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="382.546" cy="1425.62" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="406.921" cy="1360.55" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="445.776" cy="1310.31" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="461.457" cy="1288.12" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="481.738" cy="1264.6" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="556.622" cy="1168.64" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="614.404" cy="1111.07" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="656.614" cy="1077.08" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="697.624" cy="1047.98" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="754.266" cy="1009.52" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="792.619" cy="981.679" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="848.085" cy="941.993" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="933.695" cy="888.267" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="975.827" cy="864.943" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1007" cy="847.73" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1034.66" cy="833.186" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1060.18" cy="823.738" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1079.16" cy="816.583" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1099.98" cy="813.223" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1124.69" cy="820.901" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1145.94" cy="818.466" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1164.13" cy="814.893" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1180.08" cy="812.726" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1180.08" cy="812.726" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -20.4375,1456.51 110.332,1369.49
137.101,1352.16 161.048,1336.76 192.813,1316.47 211.764,1360.55 211.764,1440.2 253.202,1400.38 281.649,1379.04 294.64,1389.3
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="253.202" cy="1400.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="281.649" cy="1379.04" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="294.64" cy="1389.3" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="294.64" cy="1389.3" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-362.285,1648.42 -362.285,1648.42 -204.746,1552.47 -154.03,1521.58 -77.5564,1475 -20.4375,1440.2 364.711,1211.38 369.303,1208.46 373.804,1211.38
399.083,1197.38 410.741,1194.75 428.933,1187.12 432.403,1184.67 458.406,1298.77 470.371,1283.08 481.738,1268.99 495.19,1273.53 502.895,1273.53
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="364.711" cy="1211.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="369.303" cy="1208.46" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="373.804" cy="1211.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="399.083" cy="1197.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="410.741" cy="1194.75" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="428.933" cy="1187.12" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="432.403" cy="1184.67" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="458.406" cy="1298.77" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="470.371" cy="1283.08" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="481.738" cy="1268.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="495.19" cy="1273.53" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="502.895" cy="1273.53" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="502.895" cy="1273.53" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1648.42 -154.03,1521.58 -77.5564,1496.34 110.332,1369.49
137.101,1352.16 137.101,1360.55 161.048,1344.25 202.486,1336.76 245.497,1316.47 312.832,1264.6 386.795,1240.81 410.741,1226.95 461.457,1184.67 500.356,1158.22
556.622,1121.44 651.419,1056.38 680.946,1043.53 713.162,1030.98 759.225,998.969 785.449,987.4 785.449,995.829 838.484,964.319 854.626,980.008
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="312.832" cy="1264.6" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="386.795" cy="1240.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="410.741" cy="1226.95" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="461.457" cy="1184.67" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="500.356" cy="1158.22" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="556.622" cy="1121.44" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="651.419" cy="1056.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="680.946" cy="1043.53" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="713.162" cy="1030.98" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="759.225" cy="998.969" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="785.449" cy="987.4" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="785.449" cy="995.829" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="838.484" cy="964.319" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="854.626" cy="980.008" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="854.626" cy="980.008" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -154.03,1521.58 -112.592,1496.34 137.101,1344.25 355.24,1211.38 522.25,1111.07 675.103,1017.27 817.341,931.854
959.154,844.571 1098.33,759.435 1146.68,730.951 1192.68,704.812 1252.26,670.697 1343.13,617.179 1445.67,556.206 1505.13,524.112 1554.98,500.551 1591.57,479.407
1642.24,448.082 1675.72,430.415
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="355.24" cy="1211.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="522.25" cy="1111.07" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="675.103" cy="1017.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="817.341" cy="931.854" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="959.154" cy="844.571" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1098.33" cy="759.435" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1146.68" cy="730.951" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1192.68" cy="704.812" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1252.26" cy="670.697" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1343.13" cy="617.179" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1445.67" cy="556.206" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1505.13" cy="524.112" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1554.98" cy="500.551" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1591.57" cy="479.407" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1642.24" cy="448.082" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1675.72" cy="430.415" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1675.72" cy="430.415" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -20.4375,1440.2 79.9825,1379.04 192.813,1310.31 253.202,1278.22 274.864,1264.6 274.864,1304.42
340.249,1252.19 340.249,1273.53
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="253.202" cy="1278.22" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="274.864" cy="1264.6" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="274.864" cy="1304.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="340.249" cy="1252.19" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="340.249" cy="1273.53" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="340.249" cy="1273.53" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -270.131,1648.42
-77.5564,1496.34 79.9825,1389.3 110.332,1369.49 245.497,1293.34 355.24,1220.51 455.314,1156.23 455.314,1164.38 519.919,1132.65 611.291,1069.47
679.789,1025.48 783.987,963.825 815.434,950.676 880.978,914.251 913.47,891.151 950.511,871.36 997.747,847.943
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="355.24" cy="1220.51" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="455.314" cy="1156.23" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="455.314" cy="1164.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="519.919" cy="1132.65" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="611.291" cy="1069.47" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="679.789" cy="1025.48" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="783.987" cy="963.825" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="815.434" cy="950.676" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="880.978" cy="914.251" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="913.47" cy="891.151" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="950.511" cy="871.36" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="997.747" cy="847.943" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="997.747" cy="847.943" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-204.746,1552.47 -204.746,1552.47 -154.03,1521.58 -154.03,1744.38
-77.5564,1592.29 -77.5564,1648.42 -47.2073,1592.29 -47.2073,1744.38 -20.4375,1648.42 -20.4375,1744.38
63.1392,1521.58 63.1392,1552.47
149.39,1425.62 172.137,1456.51 229.256,1379.04 245.497,1360.55 245.497,1425.62 345.356,1304.42
458.406,1211.38 489.904,1187.12 489.904,1233.7 522.25,1194.75 522.25,1304.42 554.619,1237.21
603.315,1189.62 623.497,1160.25 623.497,1189.62 682.096,1106.86 733.271,1050.72 800.254,997.704 800.254,1015.83 844.743,971.941 877.603,948.013
922.416,909.18 938.203,910.514 957.109,909.512 1003.4,889.414
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="345.356" cy="1304.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="345.356" cy="1304.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="345.356" cy="1304.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="458.406" cy="1211.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="458.406" cy="1211.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="489.904" cy="1187.12" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="489.904" cy="1187.12" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="489.904" cy="1233.7" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="522.25" cy="1194.75" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="522.25" cy="1194.75" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="522.25" cy="1304.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="554.619" cy="1237.21" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="603.315" cy="1189.62" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="603.315" cy="1189.62" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="623.497" cy="1160.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="623.497" cy="1189.62" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="682.096" cy="1106.86" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="733.271" cy="1050.72" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="800.254" cy="997.704" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="800.254" cy="1015.83" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="844.743" cy="971.941" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="877.603" cy="948.013" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="922.416" cy="909.18" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="938.203" cy="910.514" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="957.109" cy="909.512" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1003.4" cy="889.414" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1003.4" cy="889.414" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#c68125; stroke-width:8; stroke-opacity:0.5; fill:none" points="
-362.285,1648.42 -362.285,1648.42 -270.131,1744.38
-47.2073,1496.34 -20.4375,1475 -20.4375,1496.34 -20.4375,1744.38 63.1392,1552.47
95.6632,1496.34 161.048,1412.42 192.813,1379.04 294.64,1288.12 318.587,1288.12 373.804,1240.81 492.563,1150.42 560.575,1105.48
639.277,1056.38 692.199,1022.44 755.931,986.817 792.619,963.333 832.641,940.32 873.19,924.617 873.19,936.224 1000.03,850.309 1080.75,797.102 1080.95,807.213
1149.93,759.548 1203.12,725.12 1270.99,680.016 1277.26,675.401 1366.05,626.552 1418.99,598.87 1447.54,576.831 1483.37,560.525 1527.4,535.419 1565.17,518.747
1611.36,482.448 1661.76,459.564 1698.24,441.293 1728.53,422.405 1757.34,406.647 1786.09,393.315 1822.18,371.825
"/>
<circle clip-path="url(#clip7702)" cx="294.64" cy="1288.12" r="7" fill="#c68125" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="318.587" cy="1288.12" r="7" fill="#c68125" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="373.804" cy="1240.81" r="7" fill="#c68125" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="492.563" cy="1150.42" r="7" fill="#c68125" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="560.575" cy="1105.48" r="7" fill="#c68125" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="639.277" cy="1056.38" r="7" fill="#c68125" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="692.199" cy="1022.44" r="7" fill="#c68125" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="755.931" cy="986.817" r="7" fill="#c68125" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="792.619" cy="963.333" r="7" fill="#c68125" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="832.641" cy="940.32" r="7" fill="#c68125" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="873.19" cy="924.617" r="7" fill="#c68125" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="873.19" cy="936.224" r="7" fill="#c68125" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1000.03" cy="850.309" r="7" fill="#c68125" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1080.75" cy="797.102" r="7" fill="#c68125" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1080.95" cy="807.213" r="7" fill="#c68125" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1149.93" cy="759.548" r="7" fill="#c68125" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1203.12" cy="725.12" r="7" fill="#c68125" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1270.99" cy="680.016" r="7" fill="#c68125" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1277.26" cy="675.401" r="7" fill="#c68125" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1366.05" cy="626.552" r="7" fill="#c68125" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1418.99" cy="598.87" r="7" fill="#c68125" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1447.54" cy="576.831" r="7" fill="#c68125" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1483.37" cy="560.525" r="7" fill="#c68125" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1527.4" cy="535.419" r="7" fill="#c68125" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1565.17" cy="518.747" r="7" fill="#c68125" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1611.36" cy="482.448" r="7" fill="#c68125" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1661.76" cy="459.564" r="7" fill="#c68125" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1698.24" cy="441.293" r="7" fill="#c68125" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1728.53" cy="422.405" r="7" fill="#c68125" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1757.34" cy="406.647" r="7" fill="#c68125" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1786.09" cy="393.315" r="7" fill="#c68125" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1822.18" cy="371.825" r="7" fill="#c68125" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1822.18" cy="371.825" r="10" fill="#c68125" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="0"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-204.746,1552.47 -204.746,1552.47 -47.2073,1456.51 245.497,1278.22 369.303,1202.81 473.267,1139.49 512.779,1115.42 548.504,1098.79 630.805,1047.08 636.488,1047.08
636.488,1067.38 671.523,1061.27 702.922,1062.27 723.917,1056.38 755.931,1038.37 779.545,1054.47 783.987,1052.58 803.641,1028.6 803.641,1051.65
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="369.303" cy="1202.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="473.267" cy="1139.49" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="512.779" cy="1115.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="548.504" cy="1098.79" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="630.805" cy="1047.08" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="636.488" cy="1047.08" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="636.488" cy="1067.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="671.523" cy="1061.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="702.922" cy="1062.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="723.917" cy="1056.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="755.931" cy="1038.37" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="779.545" cy="1054.47" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="783.987" cy="1052.58" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="803.641" cy="1028.6" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="803.641" cy="1051.65" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="803.641" cy="1051.65" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#ed5d92; stroke-width:8; stroke-opacity:0.5; fill:none" points="
-154.03,1552.47 -154.03,1552.47 -77.5564,1521.58 -47.2073,1496.34 -47.2073,1592.29 25.1711,1496.34 25.1711,1552.47
25.1711,1592.29 44.947,1744.38 63.1392,1648.42 63.1392,1744.38
95.6632,1648.42 373.804,1240.81 399.083,1220.51 403.036,1217.4 410.741,1217.4 439.188,1194.75
458.406,1179.9 522.25,1211.38 564.46,1162.3 617.476,1118.4 702.922,1042.66 745.752,1009.52 843.053,939.905 900.674,900.494 927.541,888.267 1040.66,812.066
1106.46,770.929 1165.77,737.038 1227.2,698.004 1278.18,671.291 1334.84,636.884 1398.59,594.494 1472.82,553.053 1516.54,528.924 1644.68,443.929 1720.58,396.517
1786.17,355.465 1846.76,318.275 1909.46,280.16 1955.7,254.155 2001.64,225.99 2056.77,199.631 2100.58,177.104 2141.06,156.235 2174.75,140.415 2206.22,127.702
2240.52,109.606 2269.09,96.6753
"/>
<circle clip-path="url(#clip7702)" cx="373.804" cy="1240.81" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="373.804" cy="1240.81" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="399.083" cy="1220.51" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="403.036" cy="1217.4" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="410.741" cy="1217.4" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="439.188" cy="1194.75" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="458.406" cy="1179.9" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="522.25" cy="1211.38" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="564.46" cy="1162.3" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="617.476" cy="1118.4" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="702.922" cy="1042.66" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="745.752" cy="1009.52" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="843.053" cy="939.905" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="900.674" cy="900.494" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="927.541" cy="888.267" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1040.66" cy="812.066" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1106.46" cy="770.929" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1165.77" cy="737.038" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1227.2" cy="698.004" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1278.18" cy="671.291" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1334.84" cy="636.884" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1398.59" cy="594.494" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1472.82" cy="553.053" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1516.54" cy="528.924" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1644.68" cy="443.929" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1720.58" cy="396.517" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1786.17" cy="355.465" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1846.76" cy="318.275" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1909.46" cy="280.16" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="1955.7" cy="254.155" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2001.64" cy="225.99" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2056.77" cy="199.631" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2100.58" cy="177.104" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2141.06" cy="156.235" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2174.75" cy="140.415" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2206.22" cy="127.702" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2240.52" cy="109.606" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2269.09" cy="96.6753" r="7" fill="#ed5d92" fill-rule="evenodd" fill-opacity="0" stroke="#000000" stroke-opacity="0" stroke-width="0"/>
<circle clip-path="url(#clip7702)" cx="2269.09" cy="96.6753" r="10" fill="#ed5d92" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="0"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -112.592,1496.34 3.5089,1425.62 95.6632,1369.49 192.813,1310.31 274.864,1260.34 335.024,1223.69 335.024,1226.95 350.352,1233.7 369.303,1233.7
410.741,1217.4 461.457,1197.38 497.788,1189.62 535.756,1175.28 609.718,1105.48 617.476,1102.76 650.101,1079.33 661.693,1080.47
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="274.864" cy="1260.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="335.024" cy="1223.69" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="335.024" cy="1226.95" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="350.352" cy="1233.7" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="369.303" cy="1233.7" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="410.741" cy="1217.4" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="461.457" cy="1197.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="497.788" cy="1189.62" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="535.756" cy="1175.28" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="609.718" cy="1105.48" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="617.476" cy="1102.76" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="650.101" cy="1079.33" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="661.693" cy="1080.47" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="661.693" cy="1080.47" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-362.285,1648.42 3.5089,1425.62 124.11,1352.16 274.864,1260.34 294.64,1248.29 329.676,1226.95 445.776,1160.25 445.776,1177.57 467.439,1177.57
487.215,1200.07 505.407,1189.62 542.219,1166.49 566.378,1205.61 595.05,1182.27 595.05,1200.07 608.134,1197.38
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="274.864" cy="1260.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="294.64" cy="1248.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="329.676" cy="1226.95" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="329.676" cy="1226.95" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="445.776" cy="1160.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="445.776" cy="1177.57" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="467.439" cy="1177.57" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="487.215" cy="1200.07" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="505.407" cy="1189.62" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="542.219" cy="1166.49" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="542.219" cy="1166.49" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="566.378" cy="1205.61" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="566.378" cy="1205.61" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="595.05" cy="1182.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="595.05" cy="1200.07" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="608.134" cy="1197.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="608.134" cy="1197.38" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-362.285,1648.42 -112.592,1552.47 -47.2073,1496.34 3.5089,1456.51 63.1392,1475
79.9825,1496.34 95.6632,1475 110.332,1496.34 110.332,1592.29 110.332,1648.42 110.332,1744.38
137.101,1648.42 253.202,1379.04 260.655,1369.49 306.929,1316.47 312.832,1310.31 355.24,1268.99 382.546,1252.19 395.06,1293.34 414.498,1268.99
432.403,1252.19 461.457,1244.5 489.904,1214.36 505.407,1220.51 512.779,1230.29 554.619,1184.67 573.892,1173.03 593.36,1160.25 604.933,1164.38 623.497,1160.25
637.886,1152.33 652.729,1137.75 670.318,1146.68 687.764,1137.75 697.624,1141.25 703.967,1143.04
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="253.202" cy="1379.04" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="253.202" cy="1379.04" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="260.655" cy="1369.49" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="306.929" cy="1316.47" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="312.832" cy="1310.31" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="355.24" cy="1268.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="382.546" cy="1252.19" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="395.06" cy="1293.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="414.498" cy="1268.99" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="432.403" cy="1252.19" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="461.457" cy="1244.5" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="489.904" cy="1214.36" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="505.407" cy="1220.51" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="512.779" cy="1230.29" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="554.619" cy="1184.67" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="573.892" cy="1173.03" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="593.36" cy="1160.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="604.933" cy="1164.38" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="623.497" cy="1160.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="637.886" cy="1152.33" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="652.729" cy="1137.75" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="670.318" cy="1146.68" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="687.764" cy="1137.75" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="697.624" cy="1141.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="703.967" cy="1143.04" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="703.967" cy="1143.04" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-362.285,1648.42 -362.285,1648.42 -270.131,1592.29 44.947,1425.62 110.332,1379.04 182.71,1329.66
237.521,1293.34 245.497,1293.34 288.238,1264.6 294.64,1304.42
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="288.238" cy="1264.6" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="288.238" cy="1264.6" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="294.64" cy="1304.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="294.64" cy="1304.42" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -270.131,1592.29 -154.03,1552.47 -77.5564,1552.47
-47.2073,1521.58
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1648.42 -154.03,1552.47
-154.03,1592.29 25.1711,1440.2 25.1711,1496.34 172.137,1360.55 281.649,1278.22 452.179,1162.3
552.599,1105.48 687.764,1016.55 732.353,987.986 786.901,958.036 841.351,922.773 892.181,894.097 931.023,878.621 978.647,854.718 1018.52,844.155 1029.24,844.571
1076.13,817.779 1109.1,803.141
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="281.649" cy="1278.22" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="452.179" cy="1162.3" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="552.599" cy="1105.48" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="687.764" cy="1016.55" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="732.353" cy="987.986" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="786.901" cy="958.036" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="841.351" cy="922.773" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="892.181" cy="894.097" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="931.023" cy="878.621" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="978.647" cy="854.718" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1018.52" cy="844.155" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1029.24" cy="844.571" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1076.13" cy="817.779" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="1109.1" cy="803.141" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="1109.1" cy="803.141" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -77.5564,1475 -20.4375,1456.51
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -270.131,1592.29 -154.03,1521.58 -77.5564,1475 -47.2073,1456.51 -47.2073,1475 -47.2073,1521.58
3.5089,1521.58
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -154.03,1521.58 -20.4375,1456.51 3.5089,1440.2
3.5089,1521.58
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -362.285,1648.42 -270.131,1648.42 -270.131,1744.38
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-362.285,1648.42 -270.131,1592.29 -112.592,1496.34 -47.2073,1456.51 -20.4375,1475 3.5089,1475
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -519.824,1744.38 -270.131,1592.29 -47.2073,1456.51 3.5089,1440.2
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-204.746,1552.47 -77.5564,1475 110.332,1360.55 149.39,1336.76 220.678,1293.34 253.202,1273.53 253.202,1293.34 260.655,1304.42 288.238,1336.76
306.929,1316.47 306.929,1336.76 312.832,1389.3 324.199,1412.42 340.249,1379.04 355.24,1360.55 360.025,1389.3 378.217,1379.04 406.921,1322.91 406.921,1329.66
406.921,1344.25 487.215,1233.7 505.407,1220.51 522.25,1202.81 546.428,1184.67 560.575,1184.67 566.378,1177.57 593.36,1146.68
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="253.202" cy="1273.53" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="253.202" cy="1293.34" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="260.655" cy="1304.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="288.238" cy="1336.76" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="306.929" cy="1316.47" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="306.929" cy="1336.76" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="312.832" cy="1389.3" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="324.199" cy="1412.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="340.249" cy="1379.04" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="355.24" cy="1360.55" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="360.025" cy="1389.3" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="378.217" cy="1379.04" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="406.921" cy="1322.91" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="406.921" cy="1329.66" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="406.921" cy="1344.25" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="487.215" cy="1233.7" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="505.407" cy="1220.51" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="522.25" cy="1202.81" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="546.428" cy="1184.67" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="560.575" cy="1184.67" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="566.378" cy="1177.57" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="593.36" cy="1146.68" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="593.36" cy="1146.68" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-362.285,1648.42 -362.285,1648.42 -47.2073,1456.51 -20.4375,1475
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-362.285,1648.42 -204.746,1552.47 25.1711,1412.42 137.101,1344.25 211.764,1298.77 237.521,1283.08 260.655,1278.22
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="260.655" cy="1278.22" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="260.655" cy="1278.22" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-362.285,1648.42 -362.285,1648.42 -77.5564,1475 -47.2073,1456.51 -47.2073,1496.34
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
449,1154.27 492.563,1127.74 505.407,1119.91 512.779,1115.42 552.599,1091.17 577.558,1075.96
"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="449" cy="1154.27" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="492.563" cy="1127.74" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="505.407" cy="1119.91" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="512.779" cy="1115.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="512.779" cy="1115.42" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="552.599" cy="1091.17" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:0" cx="577.558" cy="1075.96" r="2"/>
<circle clip-path="url(#clip7702)" style="fill:#000000; stroke:none; fill-opacity:1" cx="577.558" cy="1075.96" r="2"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-47.2073,1456.51 -47.2073,1456.51 3.5089,1425.62 79.9825,1379.04 95.6632,1369.49
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-362.285,1648.42 -362.285,1648.42 -20.4375,1440.2
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-270.131,1592.29 -204.746,1552.47
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-362.285,1648.42 -362.285,1648.42
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:0.1; fill:none" points="
-519.824,1744.38 -362.285,1648.42
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#808080; stroke-width:4; stroke-opacity:1; fill:none" points="
253.202,1274.62 2352.76,-4.22477
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none" points="
776.535,955.853 1879.31,284.154
"/>
<circle clip-path="url(#clip7702)" cx="776.535" cy="955.853" r="7" fill="#000000" fill-rule="evenodd" fill-opacity="1" stroke="none"/>
<path clip-path="url(#clip7702)" d="M1887.31 276.154 L1871.31 276.154 L1879.31 292.154 L1887.31 276.154 Z" fill="#000000" fill-rule="evenodd" fill-opacity="1" stroke="none"/>
<polyline clip-path="url(#clip7702)" style="stroke:#808080; stroke-width:4; stroke-opacity:1; fill:none" stroke-dasharray="16, 10" points="
253.202,1304.15 2352.76,25.3085
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none" points="
776.535,985.387 1144.13,761.487
"/>
<circle clip-path="url(#clip7702)" cx="776.535" cy="985.387" r="7" fill="#000000" fill-rule="evenodd" fill-opacity="1" stroke="none"/>
<path clip-path="url(#clip7702)" d="M1152.13 753.487 L1136.13 753.487 L1144.13 769.487 L1152.13 753.487 Z" fill="#000000" fill-rule="evenodd" fill-opacity="1" stroke="none"/>
<polyline clip-path="url(#clip7702)" style="stroke:#808080; stroke-width:4; stroke-opacity:1; fill:none" stroke-dasharray="16, 8, 2, 8" points="
253.202,1369.49 2352.76,90.6466
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none" points="
776.535,1050.72 934.074,954.768
"/>
<circle clip-path="url(#clip7702)" cx="776.535" cy="1050.72" r="7" fill="#000000" fill-rule="evenodd" fill-opacity="1" stroke="none"/>
<path clip-path="url(#clip7702)" d="M942.074 946.768 L926.074 946.768 L934.074 962.768 L942.074 946.768 Z" fill="#000000" fill-rule="evenodd" fill-opacity="1" stroke="none"/>
<polyline clip-path="url(#clip7702)" style="stroke:#808080; stroke-width:4; stroke-opacity:1; fill:none" stroke-dasharray="2, 4" points="
253.202,1492.04 2352.76,213.202
"/>
<polyline clip-path="url(#clip7702)" style="stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none" points="
776.535,1173.28 829.048,1141.29
"/>
<circle clip-path="url(#clip7702)" cx="776.535" cy="1173.28" r="7" fill="#000000" fill-rule="evenodd" fill-opacity="1" stroke="none"/>
<path clip-path="url(#clip7702)" d="M837.048 1133.29 L821.048 1133.29 L829.048 1149.29 L837.048 1133.29 Z" fill="#000000" fill-rule="evenodd" fill-opacity="1" stroke="none"/>
<path clip-path="url(#clip7700)" d="
M325.202 493.644 L969.784 493.644 L969.784 130.764 L325.202 130.764 Z
" fill="#ffffff" fill-rule="evenodd" fill-opacity="1"/>
<polyline clip-path="url(#clip7700)" style="stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none" points="
325.202,493.644 969.784,493.644 969.784,130.764 325.202,130.764 325.202,493.644
"/>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:66px; text-anchor:middle;" transform="rotate(0, 647.493, 215.244)" x="647.493" y="215.244">Doubling time</text>
</g>
<polyline clip-path="url(#clip7700)" style="stroke:#808080; stroke-width:4; stroke-opacity:1; fill:none" points="
349.202,251.724 493.202,251.724
"/>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;" transform="rotate(0, 517.202, 269.224)" x="517.202" y="269.224">1 days</text>
</g>
<polyline clip-path="url(#clip7700)" style="stroke:#808080; stroke-width:4; stroke-opacity:1; fill:none" stroke-dasharray="16, 10" points="
349.202,312.204 493.202,312.204
"/>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;" transform="rotate(0, 517.202, 329.704)" x="517.202" y="329.704">3 days</text>
</g>
<polyline clip-path="url(#clip7700)" style="stroke:#808080; stroke-width:4; stroke-opacity:1; fill:none" stroke-dasharray="16, 8, 2, 8" points="
349.202,372.684 493.202,372.684
"/>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;" transform="rotate(0, 517.202, 390.184)" x="517.202" y="390.184">7 days</text>
</g>
<polyline clip-path="url(#clip7700)" style="stroke:#808080; stroke-width:4; stroke-opacity:1; fill:none" stroke-dasharray="2, 4" points="
349.202,433.164 493.202,433.164
"/>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;" transform="rotate(0, 517.202, 450.664)" x="517.202" y="450.664">21 days</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 744.622, 1056.48)" x="744.622" y="1056.48">Afghanistan</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 764.797, 1098.44)" x="764.797" y="1098.44">Albania</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1034.1, 880.62)" x="1034.1" y="880.62">Algeria</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 857.827, 1018.02)" x="857.827" y="1018.02">Andorra</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1083.79, 852.655)" x="1083.79" y="852.655">Argentina</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 944.476, 960.526)" x="944.476" y="960.526">Armenia</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#00a9ad; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:71px; text-anchor:start;" transform="rotate(0, 1431.27, 687.356)" x="1431.27" y="687.356">Australia</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1610.78, 570.423)" x="1610.78" y="570.423">Austria</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 839.003, 979.92)" x="839.003" y="979.92">Azerbaijan</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 943.679, 1059.22)" x="943.679" y="1059.22">Bahrain</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 408.457, 1377.99)" x="408.457" y="1377.99">Bangladesh</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 303.311, 1369.05)" x="303.311" y="1369.05">Barbados</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 659.549, 1151.54)" x="659.549" y="1151.54">Belarus</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1671.06, 492.002)" x="1671.06" y="492.002">Belgium</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 580.269, 1141.15)" x="580.269" y="1141.15">Bolivia</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 894.852, 971.343)" x="894.852" y="971.343">Bosnia and Herzegovina</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1508.72, 595.248)" x="1508.72" y="595.248">Brazil</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 609.876, 1324.97)" x="609.876" y="1324.97">Brunei</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 875.75, 1033.98)" x="875.75" y="1033.98">Bulgaria</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 784.134, 1072.79)" x="784.134" y="1072.79">Burkina Faso</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 568.09, 1397.8)" x="568.09" y="1397.8">Cambodia</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 740.753, 1052.03)" x="740.753" y="1052.03">Cameroon</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#e26f46; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;" transform="rotate(0, 1584.94, 550.596)" x="1584.94" y="550.596">Canada</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1323.87, 708.541)" x="1323.87" y="708.541">Chile</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#009af9; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;" transform="rotate(0, 2074.4, 854.97)" x="2074.4" y="854.97">China</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1086.15, 868.469)" x="1086.15" y="868.469">Colombia</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 568.09, 1183.78)" x="568.09" y="1183.78">Congo Kinshasa</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 848.913, 1038.68)" x="848.913" y="1038.68">Costa Rica</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 694.385, 1102.16)" x="694.385" y="1102.16">Cote d Ivoire</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1063.27, 886.855)" x="1063.27" y="886.855">Croatia</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 719.286, 1054.69)" x="719.286" y="1054.69">Cuba</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 812.865, 1027.96)" x="812.865" y="1027.96">Cyprus</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1357.08, 711.13)" x="1357.08" y="711.13">Czechia</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1342.5, 747.272)" x="1342.5" y="747.272">Denmark</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 296.526, 1324.97)" x="296.526" y="1324.97">Djibouti</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1128.65, 812.415)" x="1128.65" y="812.415">Dominican Republic</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1301.59, 733.708)" x="1301.59" y="733.708">Ecuador</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1015.07, 953.041)" x="1015.07" y="953.041">Egypt</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 289.533, 1318.81)" x="289.533" y="1318.81">El Salvador</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1015.07, 932.376)" x="1015.07" y="932.376">Estonia</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1155.66, 875.386)" x="1155.66" y="875.386">Finland</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#c271d2; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;" transform="rotate(0, 1993.71, 325.165)" x="1993.71" y="325.165">France</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 584.188, 1235.45)" x="584.188" y="1235.45">Georgia</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 2061.66, 284.029)" x="2061.66" y="284.029">Germany</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 700.288, 1112.61)" x="700.288" y="1112.61">Ghana</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1150.73, 868.702)" x="1150.73" y="868.702">Greece</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 334.495, 1377.99)" x="334.495" y="1377.99">Guatemala</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 412.627, 1245.71)" x="412.627" y="1245.71">Guinea</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 671.764, 1072.79)" x="671.764" y="1072.79">Honduras</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 925.387, 963.73)" x="925.387" y="963.73">Hungary</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1117.03, 897.339)" x="1117.03" y="897.339">Iceland</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1229.15, 755.974)" x="1229.15" y="755.974">India</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1189.34, 813.193)" x="1189.34" y="813.193">Indonesia</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1949.75, 377.943)" x="1949.75" y="377.943">Iran</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 999.685, 929.816)" x="999.685" y="929.816">Iraq</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1353.1, 708.981)" x="1353.1" y="708.981">Ireland</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1482.53, 614.614)" x="1482.53" y="614.614">Israel</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#3da44d; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;" transform="rotate(0, 2141.35, 308.781)" x="2141.35" y="308.781">Italy</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 361.911, 1352.75)" x="361.911" y="1352.75">Jamaica</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#00a8cb; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;" transform="rotate(0, 1248.75, 824.713)" x="1248.75" y="824.713">Japan</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 780.887, 1107.29)" x="780.887" y="1107.29">Jordan</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 851.924, 963.73)" x="851.924" y="963.73">Kazakhstan</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 500.611, 1203.25)" x="500.611" y="1203.25">Kenya</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#8e971d; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;" transform="rotate(0, 1592.59, 845.419)" x="1592.59" y="845.419">Korea South</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 810.725, 1087.83)" x="810.725" y="1087.83">Kuwait</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 572.223, 1170.8)" x="572.223" y="1170.8">Kyrgyzstan</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 888.322, 1003.09)" x="888.322" y="1003.09">Latvia</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 904.546, 1062.97)" x="904.546" y="1062.97">Lebanon</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 460.85, 1360.66)" x="460.85" y="1360.66">Liechtenstein</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 948.422, 960.074)" x="948.422" y="960.074">Lithuania</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1263.01, 798.545)" x="1263.01" y="798.545">Luxembourg</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 420.745, 1249.31)" x="420.745" y="1249.31">Madagascar</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1314.45, 781.897)" x="1314.45" y="781.897">Malaysia</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 691.98, 1188.4)" x="691.98" y="1188.4">Malta</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 656.743, 1098.44)" x="656.743" y="1098.44">Mauritius</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1116.1, 825.765)" x="1116.1" y="825.765">Mexico</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 876.288, 975.817)" x="876.288" y="975.817">Moldova</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 412.627, 1312.92)" x="412.627" y="1312.92">Monaco</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 595.554, 1162.77)" x="595.554" y="1162.77">Montenegro</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 975.322, 913.752)" x="975.322" y="913.752">Morocco</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1666.65, 522.197)" x="1666.65" y="522.197">Netherlands</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 993.354, 891.722)" x="993.354" y="891.722">New Zealand</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 754.933, 1026.5)" x="754.933" y="1026.5">Niger</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 674.391, 1086.7)" x="674.391" y="1086.7">Nigeria</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 835.815, 1036.31)" x="835.815" y="1036.31">North Macedonia</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1431.32, 716.847)" x="1431.32" y="716.847">Norway</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 717.132, 1100.91)" x="717.132" y="1100.91">Oman</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1242.4, 789.181)" x="1242.4" y="789.181">Pakistan</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1109.65, 838.652)" x="1109.65" y="838.652">Panama</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 464.168, 1273.1)" x="464.168" y="1273.1">Paraguay</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1135.45, 820.237)" x="1135.45" y="820.237">Peru</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1262.23, 725.186)" x="1262.23" y="725.186">Philippines</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1284.95, 740.185)" x="1284.95" y="740.185">Poland</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1551.47, 566.875)" x="1551.47" y="566.875">Portugal</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1030.85, 964.194)" x="1030.85" y="964.194">Qatar</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1276.43, 735.566)" x="1276.43" y="735.566">Romania</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1303.97, 692.635)" x="1303.97" y="692.635">Russia</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 503.4, 1238.79)" x="503.4" y="1238.79">Rwanda</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 743.661, 1291.58)" x="743.661" y="1291.58">San Marino</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1195.1, 824.066)" x="1195.1" y="824.066">Saudi Arabia</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 694.385, 1128.41)" x="694.385" y="1128.41">Senegal</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1085.08, 850.8)" x="1085.08" y="850.8">Serbia</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#00a98d; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;" transform="rotate(0, 1071.84, 943.609)" x="1071.84" y="943.609">Singapore</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 863.582, 1030.94)" x="863.582" y="1030.94">Slovakia</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1032.48, 957.395)" x="1032.48" y="957.395">Slovenia</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1145.04, 851.828)" x="1145.04" y="851.828">South Africa</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#ac8d18; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;" transform="rotate(0, 2127.67, 251.834)" x="2127.67" y="251.834">Spain</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 634.515, 1229.01)" x="634.515" y="1229.01">Sri Lanka</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1435.21, 674.19)" x="1435.21" y="674.19">Sweden</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1725.81, 529.783)" x="1725.81" y="529.783">Switzerland</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 819.169, 1123.92)" x="819.169" y="1123.92">Taiwan</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1201.74, 821.226)" x="1201.74" y="821.226">Thailand</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 316.302, 1397.8)" x="316.302" y="1397.8">Togo</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 524.557, 1282.03)" x="524.557" y="1282.03">Trinidad and Tobago</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 876.288, 988.508)" x="876.288" y="988.508">Tunisia</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1697.39, 438.915)" x="1697.39" y="438.915">Turkey</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 361.911, 1282.03)" x="361.911" y="1282.03">Uganda</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1019.41, 856.443)" x="1019.41" y="856.443">Ukraine</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1025.06, 897.914)" x="1025.06" y="897.914">United Arab Emirates</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#c68125; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;" transform="rotate(0, 1843.84, 389.325)" x="1843.84" y="389.325">United Kingdom</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 825.303, 1060.15)" x="825.303" y="1060.15">Uruguay</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#ed5d92; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;" transform="rotate(0, 2290.75, 114.175)" x="2290.75" y="114.175">US</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 683.356, 1088.97)" x="683.356" y="1088.97">Uzbekistan</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 629.796, 1205.88)" x="629.796" y="1205.88">Venezuela</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 725.629, 1151.54)" x="725.629" y="1151.54">Vietnam</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 316.302, 1312.92)" x="316.302" y="1312.92">Zambia</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 1130.77, 811.641)" x="1130.77" y="811.641">Dominica</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 615.022, 1155.18)" x="615.022" y="1155.18">West Bank and Gaza</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 282.317, 1286.72)" x="282.317" y="1286.72">Mali</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:0.1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:23px; text-anchor:start;" transform="rotate(0, 599.22, 1084.46)" x="599.22" y="1084.46">Kosovo</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;" transform="rotate(0, 1828.59, 301.654)" x="1828.59" y="301.654">×128.0 in 7 days</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;" transform="rotate(0, 1165.79, 778.987)" x="1165.79" y="778.987">×5.0</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;" transform="rotate(0, 955.736, 972.268)" x="955.736" y="972.268">×2.0</text>
</g>
<g clip-path="url(#clip7700)">
<text style="fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;" transform="rotate(0, 850.71, 1158.79)" x="850.71" y="1158.79">×1.3</text>
</g>
</svg>
using HTTP, CSV, Plots, DataFrames, Dates
file_url = "https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_confirmed_global.csv"
# Download the data
df = CSV.read(IOBuffer(String(HTTP.get(file_url).body)), normalizenames=true, header=2, transpose=true, datarow=5)
const allcountries = unique(replace.(string.(names(df)), r"_\d*$"=>""))[2:end]
# Plotting function
function doit(df, countries, alignment, lockdowndict=Dict())
cp = get_color_palette(:auto, plot_color(:white), length(countries))
plot(legend=false, yaxis=:log)
dates = Date.(df.Country_Region, dateformat"mm/dd/yy") .+ Year(2000)
days = [d.value for d in (dates .- dates[1])]
n = length(days)
for country in allcountries
country == "Cruise_Ship" && continue
i = findfirst(Symbol(country) .== countries)
if i isa Nothing
color, m, ms, α, ma, lw, fs = RGBA{Float64}(0,0,0,0.1), 0, 0, 0.1, 0, 1, 4
elseif country == "Australia"
color, m, ms, α, ma, lw, fs = cp[i], :star, 4, 1, 0, 4, 12
else
color, m, ms, α, ma, lw, fs = cp[i], :circle, 2, 0.5, 0, 2, 8
end
cases = Float64.(sum(eachcol(select(df, occursin.(string(country), string.(names(df)))))))
# alignment by interpolating
if cases[1] > alignment
baseline = -cases[1] / (cases[2] - cases[1])
elseif cases[end] < alignment
continue
else
ialign = findlast(cases .< alignment)
baseline = ialign + (alignment - cases[ialign]) / (cases[ialign+1] - cases[ialign]) - 1
end
# don't plot 0 values
cases[cases .== 0] .= NaN
plot!(days .- baseline, cases, color=color, m=m, ms=ms, msw=0, lw=lw, alpha=α, ma=ma, label="")
plot!([days[end] - baseline], [cases[end]], color=color, m=m, alpha=1, ms=ms+1, msw=0, label="")
# annotate country next to end point instead of legend
annotate!(days[end] - baseline + 0.5, cases[end], text("$(replace(string(country), "_"=>" "))", fs, :left, :bold, color=color))
end
# axis labels
xlabel!("Days since $(alignment)th case")
ylabel!("Cumulative number of cases")
# pretty lims
xlims!(0, last(xlims())+4)
ylims!(alignment, last(ylims()))
yticks=vec([1,2,5] * 10 .^ (1:4)')
# pretty ticks
yticks=yticks[first(ylims()) .≤ yticks .≤ last(ylims())]
plot!(yticks=(yticks, string.(yticks)), xticks=0:7:last(xlims())+4)
end
lockdowndict = Dict(
:Australia => nothing,
:Italy => Date("9 March 2020", dateformat"d U Y"),
:France => Date("16 March 2020", dateformat"d U Y"),
:China => Date("23 January 2020", dateformat"d U Y"),
)
function addtrend(dailygrowth, alignment)
d = 0:last(xlims())
c = alignment * (1 + dailygrowth) .^ (d)
plot!(d, c, ls=:dot, color=:gray, lw=2, label="+$(100dailygrowth)% daily")
plot!(legend=:bottomright)
end
# Do it! (plotting the data)
countries = [:China, :Turkey, :India, :Iraq, :Bahrain, :Iran, :Germany, :Switzerland, :Netherlands, :Belgium, :Italy, :France, :Spain, :Australia, :US, :United_Kingdom, :Singapore, :Korea_South, :Japan, :Norway, :Finland, :Sweden]
doit(df, countries, 100, lockdowndict)
addtrend(0.25, 100)
@briochemc
Copy link
Author

briochemc commented Mar 18, 2020

First output "Will Australia be like current Italy in ~3 weeks?"

covid19.jl output

Second output: All death cases above 10

covid19_deaths.jl output

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment