Skip to content

Instantly share code, notes, and snippets.

@saschatimme
Created July 30, 2019 12:48
Show Gist options
  • Save saschatimme/ef70486092afc4762b9ed52c41ee26aa to your computer and use it in GitHub Desktop.
Save saschatimme/ef70486092afc4762b9ed52c41ee26aa to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Starting solutions\n",
"\n",
"Here we compute the starting solutions. There should be 39, because that is the MLE degree for this problem."
]
},
{
"cell_type": "code",
"execution_count": 139,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"5-element Array{Polynomial{true,Int64},1}:\n",
" p0 + p1 + p2 + p3 + p4 + p5 - 1 \n",
" 20p0p2p4 - 10p0p3² - 8p1²p4 + 4p1p2p3 - p2³ \n",
" 100p0p2p5 - 20p0p3p4 - 40p1²p5 + 4p1p2p4 + 2p1p3² - p2²p3\n",
" 100p0p3p5 - 40p0p4² - 20p1p2p5 + 4p1p3p4 + 2p2²p4 - p2p3²\n",
" 20p1p3p5 - 8p1p4² - 10p2²p5 + 4p2p3p4 - p3³ "
]
},
"execution_count": 139,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"using HomotopyContinuation, DynamicPolynomials, LinearAlgebra\n",
"p = @polyvar p0 p1 p2 p3 p4 p5\n",
"u = @polyvar u0 u1 u2 u3 u4 u5\n",
"\n",
"f0 = p0+p1+p2+p3+p4+p5-1\n",
"f1 = 20*p0*p2*p4-10*p0*p3^2-8*p1^2*p4+4*p1*p2*p3-p2^3\n",
"f2 = 100*p0*p2*p5-20*p0*p3*p4-40*p1^2*p5+4*p1*p2*p4+2*p1*p3^2-p2^2*p3\n",
"f3 = 100*p0*p3*p5-40*p0*p4^2-20*p1*p2*p5+4*p1*p3*p4+2*p2^2*p4-p2*p3^2\n",
"f4 = 20*p1*p3*p5-8*p1*p4^2-10*p2^2*p5+4*p2*p3*p4-p3^3\n",
"F = [f0, f1, f2, f3, f4]"
]
},
{
"cell_type": "code",
"execution_count": 140,
"metadata": {},
"outputs": [],
"source": [
"@polyvar λ[1:3]\n",
"A = randn(ComplexF64, 3, 5) \n",
"J_AF = differentiate(A * F, p)\n",
"G = [(p .* J_AF') * λ .- u; F];"
]
},
{
"cell_type": "code",
"execution_count": 146,
"metadata": {},
"outputs": [],
"source": [
"# Generate random start solutions"
]
},
{
"cell_type": "code",
"execution_count": 149,
"metadata": {},
"outputs": [],
"source": [
"p₀ = [518/9375, 124/625, 192/625, 168/625, 86/625, 307/9375];"
]
},
{
"cell_type": "code",
"execution_count": 141,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"6-element Array{Complex{Float64},1}:\n",
" -0.007759331588900692 - 0.051702519582698656im\n",
" -0.02901864267019256 - 0.1338686976337791im \n",
" -0.07080646952592631 - 0.2342026009161865im \n",
" -0.012616054415686057 - 0.23526730344954921im \n",
" -0.04455595100361198 - 0.07782179318649807im \n",
" 0.0008519378150538565 - 0.033993931962325565im"
]
},
"execution_count": 141,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# We know that p₀ is a point in our variety, let's use use this to find a solution to `G`\n",
"λ₀ = randn(ComplexF64, 3)\n",
"u₀ = [gᵢ( p=> p₀) for gᵢ in (p .* J_AF')] * λ₀"
]
},
{
"cell_type": "code",
"execution_count": 142,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"1.1653756241042735e-16"
]
},
"execution_count": 142,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# Check that we have indeed constructed solution\n",
"norm([gᵢ(p => p₀, u => u₀, λ => λ₀) for gᵢ in G])"
]
},
{
"cell_type": "code",
"execution_count": 150,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"\r",
"\u001b[32mSolutions found: 39 \t Time: 0:00:00\u001b[39m\n"
]
},
{
"data": {
"text/plain": [
"MonodromyResult\n",
"==================================\n",
"• 39 solutions (0 real)\n",
"• return code → success\n",
"• 576 tracked paths\n",
"• seed → 153568\n"
]
},
"execution_count": 150,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"res_generic = monodromy_solve(G, [p₀; λ₀], u₀; parameters=[u...], target_solutions_count=39)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Create hexagon and sample from it"
]
},
{
"cell_type": "code",
"execution_count": 152,
"metadata": {},
"outputs": [],
"source": [
"vertices = [\n",
" [0, 651/1625, 0, 30569/58500, 43/2250, 3377/58500],\n",
" [0, 124/375, 88/375, 77/375, 86/375, 0],\n",
" [8288/76875, 0, 3176/5125, 0, 1376/5125, 307/76875],\n",
" [259/1875, 0, 52/125, 91/250, 0, 307/3750],\n",
" [518/76875, 1984/5125, 0, 2779/5125, 0, 4912/76875],\n",
" [2849/29250, 31/1125, 8734/14625, 0, 903/3250, 0]];"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The vertices only span a two-dimensional hexagon. We can check this by checking that these points lie in a 2 dimensional affine space:"
]
},
{
"cell_type": "code",
"execution_count": 156,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"2"
]
},
"execution_count": 156,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"rank(hcat(vertices[2:end]...) .- vertices[1])"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"In order to sample from the polygon and to visualize it let's reduce to a two dimensional picture:"
]
},
{
"cell_type": "code",
"execution_count": 162,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"6-element Array{Array{Float64,1},1}:\n",
" [0.0, 0.0, 0.0, 0.0, 0.0, 0.0] \n",
" [0.0, -0.0699487, 0.234667, -0.317214, 0.210222, -0.0577265] \n",
" [0.107811, -0.400615, 0.619707, -0.522547, 0.249377, -0.053733] \n",
" [0.138133, -0.400615, 0.416, -0.158547, -0.0191111, 0.0241402] \n",
" [0.00673821, -0.0134934, 0.0, 0.0196969, -0.0191111, 0.00616944]\n",
" [0.0974017, -0.37306, 0.597197, -0.522547, 0.258735, -0.0577265]"
]
},
"execution_count": 162,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# 1) translate to the origin\n",
"P = vertices .- Ref(vertices[1])"
]
},
{
"cell_type": "code",
"execution_count": 302,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"6×2 Array{Float64,2}:\n",
" -0.114006 0.258541\n",
" 0.423633 -0.580681\n",
" -0.655313 0.211174\n",
" 0.55257 0.4703 \n",
" -0.263705 -0.544105\n",
" 0.0568203 0.18477 "
]
},
"execution_count": 302,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# Let's use a QR decomposition to find a basis of the two dimensional space\n",
"B = qr(hcat(P...), Val(true)).Q[:,1:2]"
]
},
{
"cell_type": "code",
"execution_count": 303,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"6-element Array{Array{Float64,1},1}:\n",
" [-0.0, -0.0] \n",
" [-0.417412, -0.184061] \n",
" [-0.945666, 3.4093e-17]\n",
" [-0.539269, 0.296485] \n",
" [0.0097897, 0.0303793] \n",
" [-0.920749, -0.0292758]"
]
},
"execution_count": 303,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# compute coordinates of our points in the new basis B\n",
"coords = Ref(B) .\\ P"
]
},
{
"cell_type": "code",
"execution_count": 304,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"Polyhedron DefaultPolyhedron{Float64,Polyhedra.Intersection{Float64,Array{Float64,1},Int64},Polyhedra.Hull{Float64,Array{Float64,1},Int64}}:\n",
"6-element iterator of Array{Float64,1}:\n",
" [-0.0, -0.0]\n",
" [-0.417412, -0.184061]\n",
" [-0.945666, 3.4093e-17]\n",
" [-0.539269, 0.296485]\n",
" [0.0097897, 0.0303793]\n",
" [-0.920749, -0.0292758]"
]
},
"execution_count": 304,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"using Polyhedra\n",
"hexagon = polyhedron(vrep(coords))"
]
},
{
"cell_type": "code",
"execution_count": 305,
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<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\">\n",
"<defs>\n",
" <clipPath id=\"clip0800\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip0800)\" points=\"\n",
"0,1600 2400,1600 2400,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip0801\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip0800)\" points=\"\n",
"182.008,1487.47 2352.76,1487.47 2352.76,47.2441 182.008,47.2441 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip0802\">\n",
" <rect x=\"182\" y=\"47\" width=\"2172\" height=\"1441\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip0802)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 555.658,1487.47 555.658,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0802)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 984.328,1487.47 984.328,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0802)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1413,1487.47 1413,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0802)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1841.67,1487.47 1841.67,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0802)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2270.34,1487.47 2270.34,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0802)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 182.008,1209.04 2352.76,1209.04 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0802)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 182.008,926.294 2352.76,926.294 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0802)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 182.008,643.552 2352.76,643.552 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0802)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 182.008,360.81 2352.76,360.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0802)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 182.008,78.0675 2352.76,78.0675 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 182.008,1487.47 2352.76,1487.47 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 182.008,1487.47 182.008,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 555.658,1487.47 555.658,1465.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 984.328,1487.47 984.328,1465.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1413,1487.47 1413,1465.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1841.67,1487.47 1841.67,1465.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2270.34,1487.47 2270.34,1465.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 182.008,1209.04 214.569,1209.04 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 182.008,926.294 214.569,926.294 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 182.008,643.552 214.569,643.552 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 182.008,360.81 214.569,360.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 182.008,78.0675 214.569,78.0675 \n",
" \"/>\n",
"<g clip-path=\"url(#clip0800)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 555.658, 1541.47)\" x=\"555.658\" y=\"1541.47\">-0.8</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip0800)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 984.328, 1541.47)\" x=\"984.328\" y=\"1541.47\">-0.6</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip0800)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1413, 1541.47)\" x=\"1413\" y=\"1541.47\">-0.4</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip0800)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1841.67, 1541.47)\" x=\"1841.67\" y=\"1541.47\">-0.2</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip0800)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 2270.34, 1541.47)\" x=\"2270.34\" y=\"1541.47\">0.0</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip0800)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 1226.54)\" x=\"158.008\" y=\"1226.54\">-0.1</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip0800)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 943.794)\" x=\"158.008\" y=\"943.794\">0.0</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip0800)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 661.052)\" x=\"158.008\" y=\"661.052\">0.1</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip0800)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 378.31)\" x=\"158.008\" y=\"378.31\">0.2</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip0800)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 95.5675)\" x=\"158.008\" y=\"95.5675\">0.3</text>\n",
"</g>\n",
"<polygon clip-path=\"url(#clip0802)\" points=\"\n",
"243.444,926.294 1114.5,88.0053 2291.32,840.399 2270.34,926.294 1375.68,1446.71 296.85,1009.07 243.444,926.294 243.444,926.294 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip0802)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 243.444,926.294 1114.5,88.0053 2291.32,840.399 2270.34,926.294 1375.68,1446.71 296.85,1009.07 243.444,926.294 \n",
" \"/>\n",
"</svg>\n"
]
},
"execution_count": 305,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"plot(hexagon)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Sampling"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We sample uniformly from the polygon by using rejection sampling"
]
},
{
"cell_type": "code",
"execution_count": 306,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"#171 (generic function with 1 method)"
]
},
"execution_count": 306,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"sampler = let\n",
" poly = hexagon\n",
" # sample from box\n",
" x_min, x_max = extrema(first.(coords))\n",
" y_min, y_max = extrema(last.(coords))\n",
" () -> begin\n",
" while true\n",
" x = rand()*(x_max-x_min) + x_min\n",
" y = rand()*(y_max-y_min) + y_min\n",
" if [x,y] ∈ poly\n",
" return [x,y]\n",
" end\n",
" end\n",
" end\n",
"end"
]
},
{
"cell_type": "code",
"execution_count": 343,
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<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\">\n",
"<defs>\n",
" <clipPath id=\"clip9200\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip9200)\" points=\"\n",
"0,1600 2400,1600 2400,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip9201\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip9200)\" points=\"\n",
"182.008,1487.47 2352.76,1487.47 2352.76,47.2441 182.008,47.2441 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip9202\">\n",
" <rect x=\"182\" y=\"47\" width=\"2172\" height=\"1441\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 555.658,1487.47 555.658,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 984.328,1487.47 984.328,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1413,1487.47 1413,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1841.67,1487.47 1841.67,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2270.34,1487.47 2270.34,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 182.008,1209.04 2352.76,1209.04 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 182.008,926.294 2352.76,926.294 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 182.008,643.552 2352.76,643.552 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 182.008,360.81 2352.76,360.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 182.008,78.0675 2352.76,78.0675 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 182.008,1487.47 2352.76,1487.47 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 182.008,1487.47 182.008,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 555.658,1487.47 555.658,1465.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 984.328,1487.47 984.328,1465.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1413,1487.47 1413,1465.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1841.67,1487.47 1841.67,1465.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2270.34,1487.47 2270.34,1465.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 182.008,1209.04 214.569,1209.04 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 182.008,926.294 214.569,926.294 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 182.008,643.552 214.569,643.552 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 182.008,360.81 214.569,360.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 182.008,78.0675 214.569,78.0675 \n",
" \"/>\n",
"<g clip-path=\"url(#clip9200)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 555.658, 1541.47)\" x=\"555.658\" y=\"1541.47\">-0.8</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip9200)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 984.328, 1541.47)\" x=\"984.328\" y=\"1541.47\">-0.6</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip9200)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1413, 1541.47)\" x=\"1413\" y=\"1541.47\">-0.4</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip9200)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1841.67, 1541.47)\" x=\"1841.67\" y=\"1541.47\">-0.2</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip9200)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 2270.34, 1541.47)\" x=\"2270.34\" y=\"1541.47\">0.0</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip9200)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 1226.54)\" x=\"158.008\" y=\"1226.54\">-0.1</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip9200)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 943.794)\" x=\"158.008\" y=\"943.794\">0.0</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip9200)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 661.052)\" x=\"158.008\" y=\"661.052\">0.1</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip9200)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 378.31)\" x=\"158.008\" y=\"378.31\">0.2</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip9200)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 95.5675)\" x=\"158.008\" y=\"95.5675\">0.3</text>\n",
"</g>\n",
"<polygon clip-path=\"url(#clip9202)\" points=\"\n",
"243.444,926.294 1114.5,88.0053 2291.32,840.399 2270.34,926.294 1375.68,1446.71 296.85,1009.07 243.444,926.294 243.444,926.294 \n",
" \" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0\"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 243.444,926.294 1114.5,88.0053 2291.32,840.399 2270.34,926.294 1375.68,1446.71 296.85,1009.07 243.444,926.294 \n",
" \"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1568.73\" cy=\"491.272\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1103.48\" cy=\"1247.95\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"495.297\" cy=\"852.772\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2017.1\" cy=\"911.31\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1061.66\" cy=\"501.103\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1152.69\" cy=\"415.974\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1136.05\" cy=\"243.864\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1394\" cy=\"574.576\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1359.62\" cy=\"593.059\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"975.536\" cy=\"953.147\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1688.18\" cy=\"795.858\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1256.4\" cy=\"883.83\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1289.31\" cy=\"1178.69\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"821.402\" cy=\"1064.42\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1244.37\" cy=\"1026.86\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"823.92\" cy=\"1156.61\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1308.14\" cy=\"281.827\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"460.272\" cy=\"990.374\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1104.22\" cy=\"468.947\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1816.71\" cy=\"958.416\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1184.77\" cy=\"1249.47\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"884.106\" cy=\"570.086\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1361.36\" cy=\"370.619\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"545.065\" cy=\"886.157\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1611.11\" cy=\"415.373\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"516.828\" cy=\"954.893\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1488.58\" cy=\"1313.22\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1245.48\" cy=\"838.318\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"973.623\" cy=\"849.065\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2119.78\" cy=\"864.793\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1178.25\" cy=\"424.238\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1231.58\" cy=\"1223.34\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"987.552\" cy=\"743.807\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1062\" cy=\"704.007\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1619.19\" cy=\"916.675\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1553.24\" cy=\"635.351\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1138.47\" cy=\"428.705\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1953.29\" cy=\"749.537\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"606.137\" cy=\"878.46\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1406.5\" cy=\"1082.38\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1386.1\" cy=\"583.44\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"592.553\" cy=\"729.299\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1458.15\" cy=\"1267.61\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1353.23\" cy=\"1157.84\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1263.77\" cy=\"1041.05\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1389.67\" cy=\"1123.92\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1975.68\" cy=\"682.539\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1087.33\" cy=\"850.959\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"985.984\" cy=\"821.817\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1890.07\" cy=\"882.171\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"794.255\" cy=\"739.636\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1192.22\" cy=\"1190.53\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1384.45\" cy=\"951.459\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"589.612\" cy=\"836.22\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1397.91\" cy=\"1256.83\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1172.51\" cy=\"322.309\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"715.508\" cy=\"1092.11\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1493.71\" cy=\"712.53\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1355.76\" cy=\"585.322\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1586.02\" cy=\"1228.22\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1611.06\" cy=\"1126.14\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1928.96\" cy=\"706.14\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2041.78\" cy=\"765.873\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"742.083\" cy=\"946.169\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1172.93\" cy=\"983.144\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1261.86\" cy=\"1019.31\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1636.39\" cy=\"860.186\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"434.69\" cy=\"1023.19\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"969.583\" cy=\"794.985\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1161.26\" cy=\"874.15\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1704.28\" cy=\"1014.3\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1094.87\" cy=\"1004.59\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"731.515\" cy=\"621.228\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"973.602\" cy=\"255.618\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"684.491\" cy=\"894.069\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"797.115\" cy=\"784.987\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"737.333\" cy=\"626.153\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1902.51\" cy=\"1130.9\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1662.06\" cy=\"559.564\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1043.96\" cy=\"1174.82\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1535.76\" cy=\"434.612\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1841.82\" cy=\"887.205\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1182.73\" cy=\"734.996\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1148.22\" cy=\"1328.58\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"885.852\" cy=\"561.31\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"946.281\" cy=\"500.54\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1944.16\" cy=\"1075.02\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1170.36\" cy=\"521.92\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1305.2\" cy=\"593.529\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1024.58\" cy=\"407.239\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2219.61\" cy=\"872.554\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2265.37\" cy=\"871.317\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1197.53\" cy=\"738.021\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"944.923\" cy=\"661.461\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"797.654\" cy=\"859.577\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"913.019\" cy=\"465.749\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1011.41\" cy=\"1290.69\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1052.74\" cy=\"907.416\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1064.16\" cy=\"625.025\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"467.21\" cy=\"829.175\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1354.07\" cy=\"1304.15\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1271.39\" cy=\"337.1\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1397.95\" cy=\"1128.88\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1401.98\" cy=\"1132.62\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1006.05\" cy=\"757.581\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1548.75\" cy=\"1154.84\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1926.34\" cy=\"1005.93\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1372.21\" cy=\"702.095\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1542.22\" cy=\"1319.87\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1922.85\" cy=\"1033.86\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1442.95\" cy=\"824.405\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2064.91\" cy=\"719.089\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"543.533\" cy=\"1080.7\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1497.36\" cy=\"490.901\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1011.2\" cy=\"1263.12\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2025.97\" cy=\"740.607\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1049.34\" cy=\"886.178\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1413.95\" cy=\"1253.26\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1682.89\" cy=\"672.572\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1887.63\" cy=\"650.641\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"881.496\" cy=\"580.148\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1601.18\" cy=\"1186.2\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1545.21\" cy=\"1332.51\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1918.48\" cy=\"886.368\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"769.76\" cy=\"531.006\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1735.71\" cy=\"1114.58\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1148.75\" cy=\"1308.1\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"594.738\" cy=\"1104.65\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1620.61\" cy=\"722.406\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"671.65\" cy=\"789.127\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1023.11\" cy=\"757.543\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1273.72\" cy=\"1218.82\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"753.166\" cy=\"1054.96\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"505.327\" cy=\"943.39\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1468.15\" cy=\"1253.56\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1420.67\" cy=\"1404.42\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"987.038\" cy=\"338.63\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1852.28\" cy=\"1005.22\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1303.49\" cy=\"730.547\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1294.9\" cy=\"1255.44\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1409.83\" cy=\"1124.09\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1227.9\" cy=\"885.299\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"704.983\" cy=\"754.991\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"970.404\" cy=\"833.079\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1372.12\" cy=\"292.274\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1691.23\" cy=\"909.892\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1034.2\" cy=\"786.127\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2007.97\" cy=\"789.539\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1361.23\" cy=\"291.242\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1209.24\" cy=\"1330.29\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1629.6\" cy=\"963.66\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1769.04\" cy=\"848.409\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1739.92\" cy=\"836.186\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"982.241\" cy=\"378.672\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"494.672\" cy=\"1064.84\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1181.29\" cy=\"1163.95\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1305.7\" cy=\"1168.63\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1699.53\" cy=\"889.343\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1495.58\" cy=\"1257.84\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1822.37\" cy=\"842.46\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1031.43\" cy=\"998.208\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"816.789\" cy=\"542.508\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1782.27\" cy=\"530.599\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"665.945\" cy=\"892.977\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"827.44\" cy=\"946.161\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1806.82\" cy=\"881.731\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"669.845\" cy=\"1023.27\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1037.5\" cy=\"798.039\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1089.97\" cy=\"787.777\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1605.79\" cy=\"1068.67\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"987.448\" cy=\"1200.4\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1399.51\" cy=\"1102.03\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"970.931\" cy=\"525.683\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1465.15\" cy=\"1241.12\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1500.97\" cy=\"969.246\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1701.7\" cy=\"668.288\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1353.24\" cy=\"1371.79\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1108.12\" cy=\"1139.99\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1344.95\" cy=\"469.962\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"988.628\" cy=\"502.18\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1769.28\" cy=\"510.338\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1164.2\" cy=\"224.485\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1126.1\" cy=\"507.691\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1885.25\" cy=\"1057.6\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1565.11\" cy=\"1023.31\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"913.335\" cy=\"544.665\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1192.28\" cy=\"570.916\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1313.99\" cy=\"1397.85\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1061.61\" cy=\"902.396\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"821.381\" cy=\"632.523\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1635.11\" cy=\"840.4\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"411.223\" cy=\"1025.29\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1131.85\" cy=\"1085.54\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"901.025\" cy=\"331.778\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1471.74\" cy=\"446.848\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"838.457\" cy=\"1102.28\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1886.74\" cy=\"848.441\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2213.77\" cy=\"949.903\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1212.19\" cy=\"285.815\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1262.25\" cy=\"1395.59\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1339.66\" cy=\"1047.16\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"825.705\" cy=\"838.214\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1112.17\" cy=\"1194.05\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1255.08\" cy=\"1129.68\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1610.58\" cy=\"648.876\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1089.08\" cy=\"985.252\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1340.96\" cy=\"724.559\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1863.8\" cy=\"744.586\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"971.057\" cy=\"668.044\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1174.05\" cy=\"502.733\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1398.5\" cy=\"562.281\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1342.7\" cy=\"622.457\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2015.59\" cy=\"707.491\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"625.021\" cy=\"690.322\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1177.9\" cy=\"778.153\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1800.65\" cy=\"733.528\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1107.3\" cy=\"346.783\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1855.9\" cy=\"742.127\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1584.78\" cy=\"487.56\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1560.27\" cy=\"1325.12\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1013.35\" cy=\"383.471\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"867.395\" cy=\"1111.64\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1585.91\" cy=\"1079.32\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1710.95\" cy=\"872.44\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"954.336\" cy=\"1045.39\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1267.63\" cy=\"314.457\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"783.95\" cy=\"463.943\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"733.016\" cy=\"1109.09\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"972.455\" cy=\"597.945\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"676.032\" cy=\"1061.9\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1883.7\" cy=\"957.167\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1012.27\" cy=\"379.596\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"928.726\" cy=\"1114.43\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1712.18\" cy=\"991.715\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1797.44\" cy=\"1157.65\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1253.19\" cy=\"749.772\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1818.71\" cy=\"960.065\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"522.33\" cy=\"981.765\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1348.83\" cy=\"1341.6\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"732.76\" cy=\"682.173\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1809.72\" cy=\"1094.28\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2236.38\" cy=\"919.786\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1014.58\" cy=\"1125.43\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"902.613\" cy=\"1117.25\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"517.754\" cy=\"945.928\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"518.535\" cy=\"880.73\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1227.35\" cy=\"1192.59\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"800.264\" cy=\"897.784\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1555.44\" cy=\"374.21\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1309.16\" cy=\"948.739\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1455.68\" cy=\"938.571\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2099.08\" cy=\"880.876\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1805.05\" cy=\"696.594\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1387.31\" cy=\"346.61\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1511.57\" cy=\"735.73\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1251.18\" cy=\"1294.9\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2170.11\" cy=\"820.93\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1536.01\" cy=\"758.73\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1080.98\" cy=\"1118.65\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1817.27\" cy=\"817.209\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1342.3\" cy=\"407.415\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1555.94\" cy=\"861.097\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1157.97\" cy=\"849.008\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"783.257\" cy=\"1167.51\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1058.28\" cy=\"1159.09\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1566.06\" cy=\"510.676\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1058.74\" cy=\"1314.86\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1806.23\" cy=\"966.909\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1700.85\" cy=\"1225.01\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"827.623\" cy=\"1145.35\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2192.35\" cy=\"827.53\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1657.2\" cy=\"1044.51\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1350.06\" cy=\"939.987\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1332.2\" cy=\"1167.39\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1269.57\" cy=\"1009.74\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"710.63\" cy=\"669.821\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"568.571\" cy=\"803.462\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"796.013\" cy=\"1164.88\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1788.71\" cy=\"848.241\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"253.732\" cy=\"937.002\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"467.966\" cy=\"1058.69\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2119.74\" cy=\"1000.33\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1239.4\" cy=\"839.669\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"809.626\" cy=\"603.531\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"979.922\" cy=\"1198.24\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"753.418\" cy=\"722.896\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1428.77\" cy=\"785.099\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1171.05\" cy=\"515.61\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1428.2\" cy=\"838.023\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1113.09\" cy=\"939.444\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1639.92\" cy=\"644.594\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1361.01\" cy=\"780.547\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"835.863\" cy=\"361.88\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1041.22\" cy=\"214.431\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"361.934\" cy=\"999.065\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1686.78\" cy=\"792.468\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1494.25\" cy=\"665.207\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"500.806\" cy=\"1061.56\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"740.419\" cy=\"1057.1\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1466.78\" cy=\"797.048\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1129.78\" cy=\"927.477\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"834.232\" cy=\"658.615\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"632.95\" cy=\"1059.95\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1776.45\" cy=\"549.455\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1397.59\" cy=\"440.933\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"502.762\" cy=\"1053.75\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1309.26\" cy=\"1196.21\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1225.34\" cy=\"230.313\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1251.23\" cy=\"184.268\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1298.15\" cy=\"960.485\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1786.31\" cy=\"893.849\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"913.579\" cy=\"730.415\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1011.08\" cy=\"897.927\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1674.93\" cy=\"562.937\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"781.218\" cy=\"466.988\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1382.41\" cy=\"1280.03\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2012.57\" cy=\"959.58\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1036.7\" cy=\"1064.01\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"904.017\" cy=\"337.129\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"711.652\" cy=\"577.108\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1282.2\" cy=\"1214.65\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"688.392\" cy=\"775.255\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"865.822\" cy=\"855.567\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1095.24\" cy=\"626.244\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1537.73\" cy=\"953.089\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1936.11\" cy=\"922.721\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"734.976\" cy=\"638.593\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"956.912\" cy=\"505.778\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"840.891\" cy=\"431.247\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1480.65\" cy=\"1258.5\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1377.89\" cy=\"903.014\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1224.35\" cy=\"1310.67\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1397.52\" cy=\"385.038\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1099.41\" cy=\"1018.98\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1158.33\" cy=\"767.52\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1262.41\" cy=\"365.239\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"525.411\" cy=\"846.503\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"348.621\" cy=\"949.977\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1788.92\" cy=\"1191.17\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1691.03\" cy=\"809.991\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1188.3\" cy=\"136.81\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1052.52\" cy=\"327.671\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1309.81\" cy=\"646.844\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1246.5\" cy=\"831.358\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1226.58\" cy=\"1160.12\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"710.763\" cy=\"498.03\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"723.622\" cy=\"738.096\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"781.832\" cy=\"639.358\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1019.26\" cy=\"816.008\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"913.806\" cy=\"748.136\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"958.64\" cy=\"576.428\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1538.1\" cy=\"771.947\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2117.03\" cy=\"944.592\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1295.99\" cy=\"683.035\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1346.59\" cy=\"1157.28\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"444.433\" cy=\"1056.26\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"981.736\" cy=\"301.354\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1838.4\" cy=\"947.39\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1106.44\" cy=\"1231.54\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1115.41\" cy=\"1235.65\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1326.86\" cy=\"404.757\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1179.61\" cy=\"1300.47\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"740.037\" cy=\"1173.52\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"593.925\" cy=\"837.622\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1017.49\" cy=\"500.159\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1305.99\" cy=\"1059.63\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"975.888\" cy=\"474.456\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1841.38\" cy=\"660.506\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"911.802\" cy=\"673.097\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1082.34\" cy=\"1241.96\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1011.95\" cy=\"767.385\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1306.51\" cy=\"1328.96\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1357\" cy=\"805.754\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1038.24\" cy=\"1239.7\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"849.452\" cy=\"541.567\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1516.63\" cy=\"989.02\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"801.478\" cy=\"914.73\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1266.13\" cy=\"1289.51\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1466.56\" cy=\"893.134\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1043.5\" cy=\"527.771\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1382.54\" cy=\"537.296\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1296.36\" cy=\"645.22\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"930.562\" cy=\"599.069\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1179.4\" cy=\"1076.73\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"844.047\" cy=\"398.633\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"861.172\" cy=\"427.006\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"530.702\" cy=\"1041.02\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1220.92\" cy=\"667.267\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"902.663\" cy=\"811.574\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"820.969\" cy=\"826.221\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"900.226\" cy=\"340.121\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1012.91\" cy=\"347.983\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1422.01\" cy=\"896.259\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"894.102\" cy=\"1219.83\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1986.79\" cy=\"915.621\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"887.255\" cy=\"409.928\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1466.62\" cy=\"1128.49\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1022.53\" cy=\"682.234\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1705.56\" cy=\"1048.99\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1459.8\" cy=\"752.429\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1429.35\" cy=\"500.684\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1783.52\" cy=\"1067.89\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1353.97\" cy=\"860.244\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1207.7\" cy=\"870.994\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1279.45\" cy=\"301.881\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1357.55\" cy=\"1254.14\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"908.623\" cy=\"1177.89\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1337.47\" cy=\"483.306\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1533.71\" cy=\"872.15\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1502.65\" cy=\"368.549\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1058.38\" cy=\"191.343\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"914.175\" cy=\"577.394\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1487.09\" cy=\"549.402\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1846.5\" cy=\"579.119\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1494.98\" cy=\"354.318\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1417.67\" cy=\"524.898\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1442.76\" cy=\"1142.26\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2079.83\" cy=\"922.987\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1124.99\" cy=\"570.893\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1351.95\" cy=\"1324.48\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1273.33\" cy=\"781.527\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"787.62\" cy=\"659.868\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1028.42\" cy=\"717.04\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1430\" cy=\"438.331\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1989.64\" cy=\"744.73\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1403.69\" cy=\"474.712\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"821.182\" cy=\"1127.48\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1053.99\" cy=\"616.732\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1492.36\" cy=\"355.423\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1009.6\" cy=\"464.165\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1130.75\" cy=\"1286.79\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1480.92\" cy=\"560.809\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1429.53\" cy=\"350.692\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"663.147\" cy=\"986.7\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1929.92\" cy=\"1093.62\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1568.2\" cy=\"975.034\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1148.56\" cy=\"318.929\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1550.17\" cy=\"447.369\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1306.99\" cy=\"945.189\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1367.04\" cy=\"1032.51\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"649.013\" cy=\"1006.92\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"794.093\" cy=\"942.686\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"626.474\" cy=\"1130.69\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"652.08\" cy=\"847.186\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"815.498\" cy=\"518.263\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"585.432\" cy=\"940.757\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"749.867\" cy=\"886.324\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1186.97\" cy=\"1224.74\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1168.65\" cy=\"1122.54\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1067.44\" cy=\"970.323\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1140.46\" cy=\"782.767\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"923.167\" cy=\"645.849\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"967.66\" cy=\"804.804\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1198.68\" cy=\"1309.44\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1470.26\" cy=\"413.501\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"851.394\" cy=\"1074.67\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1835.21\" cy=\"1126.43\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1151.16\" cy=\"722.395\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1451.27\" cy=\"1387.9\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1730.4\" cy=\"1088.95\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1456.31\" cy=\"1167.67\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"438.201\" cy=\"786.576\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"594.094\" cy=\"945.416\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"906.19\" cy=\"775.281\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1755.91\" cy=\"720.398\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1543.98\" cy=\"1163.33\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"965.285\" cy=\"1278.44\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1339.41\" cy=\"470.052\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1244.06\" cy=\"251.378\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1219.32\" cy=\"787.317\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1338.82\" cy=\"1317.96\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1296.85\" cy=\"1280.45\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1674.49\" cy=\"1266.29\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1171.09\" cy=\"485.786\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1225.59\" cy=\"1228.32\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"910.449\" cy=\"1235.97\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"908.22\" cy=\"950.004\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1669.76\" cy=\"671.287\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1907.5\" cy=\"1066.07\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"794.711\" cy=\"935.91\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1189.32\" cy=\"1127.56\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1297.31\" cy=\"831.699\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"608.75\" cy=\"629.816\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1080.69\" cy=\"1308.91\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1448.47\" cy=\"681.262\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1087.76\" cy=\"1183.35\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"750.519\" cy=\"685.136\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1117.35\" cy=\"144.624\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"836.397\" cy=\"943.852\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1997\" cy=\"682.039\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1410.05\" cy=\"356.581\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1686.26\" cy=\"1203.49\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1460.18\" cy=\"1139.27\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"752.071\" cy=\"1136.41\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"270.346\" cy=\"931.849\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1259.06\" cy=\"529.125\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1266.89\" cy=\"1042.77\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2021.53\" cy=\"754.281\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1944.12\" cy=\"796.522\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1675.46\" cy=\"911.418\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1501.81\" cy=\"512.495\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"955.216\" cy=\"528.952\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1190.46\" cy=\"1009.56\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1808.9\" cy=\"1070.66\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2198.09\" cy=\"849.304\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1435.91\" cy=\"891.58\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1461.68\" cy=\"790.2\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1881.12\" cy=\"1045.52\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1525.86\" cy=\"1145.24\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"446.289\" cy=\"980.045\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"761.741\" cy=\"1196.82\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1430.32\" cy=\"969.94\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"848.485\" cy=\"608.431\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1511.64\" cy=\"1289.72\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1704.06\" cy=\"1167.5\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"807.605\" cy=\"1074.64\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1859.01\" cy=\"921.139\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1165.61\" cy=\"611.534\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1463.06\" cy=\"552.62\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1666.15\" cy=\"696.476\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1837.47\" cy=\"1001.83\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1352.52\" cy=\"1418.05\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1257.47\" cy=\"1262.73\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1386.74\" cy=\"1089.14\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"632.912\" cy=\"1022.96\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1149.78\" cy=\"1266.63\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"444.248\" cy=\"1006.17\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2102\" cy=\"925.523\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2135.88\" cy=\"784.421\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"921.13\" cy=\"547.409\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"678.905\" cy=\"1048.28\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2159.44\" cy=\"839.222\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"931.189\" cy=\"984.608\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"964.35\" cy=\"1204.36\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1174.63\" cy=\"403.455\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1155\" cy=\"854.598\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"915.973\" cy=\"284.414\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"963.828\" cy=\"431.773\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1038.57\" cy=\"539.507\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1053.6\" cy=\"515.762\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"675.692\" cy=\"971.024\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1125.93\" cy=\"837.668\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1112.69\" cy=\"382.763\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"572.617\" cy=\"1062.2\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1574.33\" cy=\"518.637\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1512.26\" cy=\"1354.66\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1175.1\" cy=\"659.336\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2032.59\" cy=\"728.662\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1982.54\" cy=\"873.756\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1158.59\" cy=\"833.445\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1174.58\" cy=\"1255.94\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1595.56\" cy=\"544.733\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"629.106\" cy=\"693.087\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1644.4\" cy=\"637.086\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1874.41\" cy=\"925.307\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1599.82\" cy=\"447.343\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"764.73\" cy=\"552.749\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1660.34\" cy=\"987.098\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"882.363\" cy=\"737.436\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"399.434\" cy=\"1016.68\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1673.16\" cy=\"675.245\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"676.966\" cy=\"969.673\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1731.93\" cy=\"633.624\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1776.17\" cy=\"998.385\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1882.72\" cy=\"729.275\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1641.93\" cy=\"1272.48\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"969.246\" cy=\"661.719\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"598.81\" cy=\"641.536\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1613.28\" cy=\"996.215\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1095.66\" cy=\"150.543\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"291.488\" cy=\"970.378\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"982.69\" cy=\"221.875\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1593.37\" cy=\"608.726\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1881.44\" cy=\"613.704\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1612.94\" cy=\"539.361\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"900.06\" cy=\"892.37\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"858.94\" cy=\"1098.57\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1016.4\" cy=\"392.816\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1004.21\" cy=\"732.97\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1361.24\" cy=\"474.714\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1871.93\" cy=\"879.979\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1991.38\" cy=\"835.584\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1448.86\" cy=\"721.23\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1032.31\" cy=\"1166.59\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1083.44\" cy=\"473.45\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1102.41\" cy=\"946.088\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"885.991\" cy=\"505.387\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1587.49\" cy=\"840.115\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1547.86\" cy=\"1345.07\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"887.514\" cy=\"748.648\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1231.95\" cy=\"956.009\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1220.05\" cy=\"1138.93\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1601.63\" cy=\"1023.92\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1421.83\" cy=\"969.61\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1589.86\" cy=\"965.914\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1109.71\" cy=\"511.953\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1477.91\" cy=\"1082.37\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"820.962\" cy=\"1117.51\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2051.09\" cy=\"853.681\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1558.54\" cy=\"1297.49\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1920.98\" cy=\"887.484\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"773.908\" cy=\"1008.67\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"978.311\" cy=\"233.524\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"670.122\" cy=\"738.252\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1607.42\" cy=\"610.778\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1411.83\" cy=\"822.727\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1341.26\" cy=\"1101.71\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1645.9\" cy=\"467.233\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1480.6\" cy=\"1240.56\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"463.304\" cy=\"912.993\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1317.74\" cy=\"408.87\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"880.749\" cy=\"529.418\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1077.3\" cy=\"1222.36\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"910.874\" cy=\"978.776\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1885.78\" cy=\"785.721\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"942.199\" cy=\"1000.93\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"757.966\" cy=\"897.426\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"929.576\" cy=\"766.044\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1775.63\" cy=\"1125.87\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1955.49\" cy=\"1030.3\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1326.33\" cy=\"1161.38\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1257.91\" cy=\"1112.95\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"653.799\" cy=\"997.17\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"368.812\" cy=\"984.339\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1715.69\" cy=\"802.549\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1188.8\" cy=\"515.097\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1735.75\" cy=\"508.102\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"674.066\" cy=\"692.637\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2200.1\" cy=\"815.849\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1172.02\" cy=\"1010.66\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1301.44\" cy=\"545.171\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1639.67\" cy=\"530.328\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1253.03\" cy=\"824.011\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"782.4\" cy=\"914.496\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2037.52\" cy=\"932.395\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"280.902\" cy=\"899.579\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"858.01\" cy=\"703.699\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1949.13\" cy=\"707.884\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"851.723\" cy=\"464.468\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1432.28\" cy=\"473.871\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"906.069\" cy=\"535.726\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"582.884\" cy=\"602.61\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1512.28\" cy=\"861.56\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1323.43\" cy=\"1064.12\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1224.63\" cy=\"361.828\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1063.36\" cy=\"174.37\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1357.6\" cy=\"891.772\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"918.247\" cy=\"939.18\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1499.06\" cy=\"737.772\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1845.81\" cy=\"675.975\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1377.6\" cy=\"946.518\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1440.01\" cy=\"352.204\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2145.29\" cy=\"979.844\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1244.69\" cy=\"319.05\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1346.16\" cy=\"699.203\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1645.21\" cy=\"733.793\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1313.67\" cy=\"833.074\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"303.755\" cy=\"998.629\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1644.85\" cy=\"1109.75\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1919.23\" cy=\"964.023\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"988.519\" cy=\"649.154\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1748.06\" cy=\"920.466\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1490.09\" cy=\"1380.12\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1388.85\" cy=\"1050.22\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1460.24\" cy=\"937.157\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1113.77\" cy=\"572.74\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1539.57\" cy=\"1309.72\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1573.71\" cy=\"447.808\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1173.21\" cy=\"950.999\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1996.49\" cy=\"983.341\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1981.09\" cy=\"967.624\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1110.79\" cy=\"174.835\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"454.403\" cy=\"926.303\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1856.09\" cy=\"1076.67\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2149.63\" cy=\"852.791\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1109.58\" cy=\"222.519\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1580.88\" cy=\"946.514\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1339.06\" cy=\"1414.02\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"547.246\" cy=\"702.95\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1126.09\" cy=\"916.696\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1262.33\" cy=\"927.566\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1306.65\" cy=\"961.185\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1269.14\" cy=\"1021.32\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2117.56\" cy=\"733.537\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1945.24\" cy=\"889.628\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1264.03\" cy=\"738.741\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1254.95\" cy=\"430.145\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1766.13\" cy=\"1028.95\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1261.88\" cy=\"284.914\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1396.74\" cy=\"520.051\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"669.96\" cy=\"1071.88\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"679.966\" cy=\"1058.69\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1795.31\" cy=\"775.818\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1295.65\" cy=\"488.384\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1303.11\" cy=\"831.417\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1129.02\" cy=\"799.439\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1081.77\" cy=\"331.83\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1147.43\" cy=\"249.016\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"859.071\" cy=\"724.659\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"368.199\" cy=\"948.897\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"991.106\" cy=\"389.204\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"960.552\" cy=\"644.163\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1917.94\" cy=\"994.802\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1692.1\" cy=\"1109.62\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1719.45\" cy=\"972.938\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1091.46\" cy=\"464.768\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1851.36\" cy=\"680.196\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1084.21\" cy=\"755.536\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"457.186\" cy=\"975.103\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"816.155\" cy=\"534.951\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1483.98\" cy=\"1117.39\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1217.94\" cy=\"1137.75\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2233.34\" cy=\"874.617\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"961.774\" cy=\"904.004\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1539.57\" cy=\"945.603\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1758.38\" cy=\"606.479\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1378.36\" cy=\"1282.53\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1134.08\" cy=\"759.748\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1425.59\" cy=\"596.336\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2278.12\" cy=\"866.859\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"900.159\" cy=\"462.503\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"555.822\" cy=\"1098.72\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"839.645\" cy=\"785.296\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1112.71\" cy=\"1144.41\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"291.459\" cy=\"944.099\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2205.85\" cy=\"902.005\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1264.61\" cy=\"688.284\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"829.082\" cy=\"415.725\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"535.098\" cy=\"831.011\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1080.99\" cy=\"492.038\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1710.5\" cy=\"919.229\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1608.27\" cy=\"737.031\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"459.698\" cy=\"959.029\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1882.08\" cy=\"614.02\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"832.096\" cy=\"583.039\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1246.68\" cy=\"325.901\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"990.337\" cy=\"343.37\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1428.36\" cy=\"496.322\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1437.41\" cy=\"1005.31\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1172.01\" cy=\"240.918\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1622.12\" cy=\"482.354\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1740.13\" cy=\"824.174\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1388.73\" cy=\"986.664\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"868.584\" cy=\"1012.45\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"521.009\" cy=\"825.288\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1718.8\" cy=\"763.176\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2084.53\" cy=\"1026.38\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1305.7\" cy=\"444.751\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"965.315\" cy=\"1087.95\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1805.8\" cy=\"883.266\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1064.17\" cy=\"920.969\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2044.77\" cy=\"935.831\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1174.5\" cy=\"999.608\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"798.808\" cy=\"437.099\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1711.96\" cy=\"1241.48\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"699.73\" cy=\"765.922\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"731.132\" cy=\"1184.45\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1419.51\" cy=\"805.13\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1445.23\" cy=\"351.628\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1775.85\" cy=\"514.39\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1592.2\" cy=\"1302.94\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1396.51\" cy=\"911.485\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"937.741\" cy=\"477.929\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1883.42\" cy=\"875.409\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1942.03\" cy=\"986.421\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1296.78\" cy=\"871.865\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"728.972\" cy=\"745.752\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1830.96\" cy=\"583.235\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1976.28\" cy=\"1074.41\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1358.59\" cy=\"1230.09\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1399.59\" cy=\"1251.95\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1401.67\" cy=\"1199.27\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1626.33\" cy=\"686.42\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"517.159\" cy=\"830.599\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"500.824\" cy=\"827.578\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1639.44\" cy=\"1266.45\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"900.431\" cy=\"1131.6\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1879.97\" cy=\"837.913\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"253.053\" cy=\"922.307\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1447.04\" cy=\"1338.66\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1247.37\" cy=\"1378.7\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2068.39\" cy=\"787.911\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1735.94\" cy=\"1058.22\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"972.13\" cy=\"1098.29\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1239.24\" cy=\"659.727\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"432.71\" cy=\"848.713\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2206.74\" cy=\"928.301\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1350.31\" cy=\"586.367\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1731.3\" cy=\"970.505\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1503.59\" cy=\"1202.26\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1455.32\" cy=\"630.915\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1149.78\" cy=\"696.476\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"988.255\" cy=\"1258.4\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1341.93\" cy=\"769.212\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1377.61\" cy=\"831.294\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1155.92\" cy=\"166.908\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1025.17\" cy=\"650.148\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1233.82\" cy=\"514.93\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2260.51\" cy=\"845.737\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"657.804\" cy=\"593.629\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1589.67\" cy=\"686.626\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1313.94\" cy=\"1002.45\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1910.77\" cy=\"872.552\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"974.498\" cy=\"644.22\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1077\" cy=\"263.75\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1037.37\" cy=\"808.276\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"852.535\" cy=\"1097.65\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1956.1\" cy=\"862.817\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1167.53\" cy=\"705.919\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"745.955\" cy=\"744.769\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"914.621\" cy=\"637.85\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1491.91\" cy=\"467.741\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1183.05\" cy=\"1336.01\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"967.761\" cy=\"262.018\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1189.35\" cy=\"1198.39\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1502.43\" cy=\"815.777\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"996.073\" cy=\"793.22\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1131.32\" cy=\"955.956\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1907.97\" cy=\"853.948\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1854.4\" cy=\"1050.98\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"914.558\" cy=\"1237.39\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1867.02\" cy=\"733.319\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1218.79\" cy=\"196.031\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"898.043\" cy=\"1050.74\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"760.768\" cy=\"672.848\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"898.278\" cy=\"710.14\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"976.26\" cy=\"740.137\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1533.95\" cy=\"1161.2\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"791.493\" cy=\"811.893\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1518.66\" cy=\"417.24\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1398.85\" cy=\"651.231\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1327.97\" cy=\"648.452\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"564.42\" cy=\"929.197\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1126.45\" cy=\"939.323\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1458.31\" cy=\"633.53\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1190.12\" cy=\"240.043\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1917.41\" cy=\"1087.67\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"987.43\" cy=\"364.866\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1463.85\" cy=\"1375.05\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"901.199\" cy=\"797.839\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2100.62\" cy=\"805.353\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1399.97\" cy=\"580.351\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1770.14\" cy=\"605.131\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2033.92\" cy=\"788.928\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1405.79\" cy=\"981.145\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1486.96\" cy=\"923.053\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1808.54\" cy=\"946.679\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"912.87\" cy=\"962.512\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1059.84\" cy=\"690.951\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"972.628\" cy=\"1054.25\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1109.79\" cy=\"916.582\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1246.5\" cy=\"1109.89\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1712.89\" cy=\"939.287\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1000.88\" cy=\"231.365\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1730.02\" cy=\"1058\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1594.83\" cy=\"428.052\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"814.745\" cy=\"553.357\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2247.71\" cy=\"847.997\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1153.53\" cy=\"309.672\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"885.049\" cy=\"690.228\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"944.041\" cy=\"730.395\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"623.373\" cy=\"618.97\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1381.2\" cy=\"1067.14\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2104.95\" cy=\"977.945\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1912.91\" cy=\"907.753\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1693.07\" cy=\"655.52\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1775.92\" cy=\"581.401\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1873.44\" cy=\"837.228\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"646.191\" cy=\"636.833\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1654.22\" cy=\"1249.43\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"639.808\" cy=\"764.585\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1176.29\" cy=\"373.643\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1475\" cy=\"985.861\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1953.71\" cy=\"1033.62\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1583.57\" cy=\"1083.35\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1835.54\" cy=\"1127.23\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"941.049\" cy=\"787.455\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"802.62\" cy=\"632.586\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"827.102\" cy=\"867.907\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1910.45\" cy=\"1034.49\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2051.76\" cy=\"779.636\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1091.85\" cy=\"556.257\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2120.46\" cy=\"934.504\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1440.39\" cy=\"935.308\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1060.1\" cy=\"1140.43\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1362.29\" cy=\"452.094\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1723.6\" cy=\"1150.95\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1394.1\" cy=\"307.089\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1422.59\" cy=\"1198.63\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1138.59\" cy=\"237.618\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1805.29\" cy=\"1110.65\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"699.732\" cy=\"802.9\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1804.81\" cy=\"975.149\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1616.94\" cy=\"1217.6\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1148.65\" cy=\"528.122\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1633.12\" cy=\"893.08\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1662.84\" cy=\"1129.83\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1509.62\" cy=\"655.517\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1064.25\" cy=\"496.025\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1110.53\" cy=\"335.246\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1096.2\" cy=\"266.59\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1264.83\" cy=\"821.795\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1818.55\" cy=\"1012.1\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1411.42\" cy=\"1329.4\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1949.84\" cy=\"832.925\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1806.35\" cy=\"720.8\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"688.444\" cy=\"939.416\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1350.26\" cy=\"1016.11\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"939.603\" cy=\"728.82\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1242.1\" cy=\"542.519\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"917.315\" cy=\"1249.94\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"936.703\" cy=\"503.899\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"948.833\" cy=\"496.492\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"461.765\" cy=\"860.887\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1718.44\" cy=\"800.347\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"888.776\" cy=\"670.092\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"854.857\" cy=\"430.996\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1798.36\" cy=\"932.966\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1171.47\" cy=\"676.82\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1299.77\" cy=\"810.025\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1029.31\" cy=\"675.671\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1713.74\" cy=\"962.22\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1030.58\" cy=\"782.563\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"522.119\" cy=\"985.337\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1292.83\" cy=\"591.75\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"974.737\" cy=\"454.801\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1709.65\" cy=\"611.045\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"357.546\" cy=\"873.296\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"289.459\" cy=\"973.912\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"976.588\" cy=\"487.164\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1084.3\" cy=\"850.796\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1599.03\" cy=\"1298.15\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1155.38\" cy=\"1187.32\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1052.96\" cy=\"1110.4\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1029.44\" cy=\"1273.11\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1422.18\" cy=\"641.31\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1735.67\" cy=\"1176.16\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1597.11\" cy=\"744.552\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"676.937\" cy=\"1081.15\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1163.75\" cy=\"1052.42\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"572.041\" cy=\"974.531\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1312.34\" cy=\"1189.01\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1135.18\" cy=\"827.398\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"707.364\" cy=\"812.555\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"456.374\" cy=\"952.126\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"573.561\" cy=\"681.123\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1120.58\" cy=\"599.543\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1340.92\" cy=\"630.213\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1544.82\" cy=\"1291.89\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"974.388\" cy=\"464.705\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"867.479\" cy=\"788.923\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"851.458\" cy=\"643.39\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1900.21\" cy=\"816.079\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1378.14\" cy=\"559.02\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"440.32\" cy=\"823.958\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1485.31\" cy=\"478.586\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"586.576\" cy=\"813.493\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1024.65\" cy=\"731.77\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"419.732\" cy=\"843.462\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1190.93\" cy=\"541.318\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"528.604\" cy=\"826.286\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2250.44\" cy=\"881.68\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1129.15\" cy=\"247.825\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"831.359\" cy=\"838.235\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1063.98\" cy=\"767.169\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1653.78\" cy=\"776.148\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1043.83\" cy=\"1293.3\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"910.462\" cy=\"1089.33\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"973.108\" cy=\"305.306\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2052.67\" cy=\"893.488\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2117.02\" cy=\"814.609\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1330.61\" cy=\"872.815\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1147.47\" cy=\"546.354\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"746.27\" cy=\"925.798\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1244.72\" cy=\"574.254\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"610.078\" cy=\"898.278\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1135.33\" cy=\"292.05\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1089.36\" cy=\"343.257\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"401.572\" cy=\"1028.88\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1378.01\" cy=\"505.45\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"389.295\" cy=\"846.071\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2100.36\" cy=\"750.175\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2004.65\" cy=\"837.707\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1561.53\" cy=\"383.518\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2118.15\" cy=\"856.364\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2090.33\" cy=\"1014.41\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1391.38\" cy=\"691.282\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1339.86\" cy=\"913.723\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2161.58\" cy=\"924.307\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1304.37\" cy=\"319.952\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1067.67\" cy=\"345.418\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1124.35\" cy=\"331.411\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1362.48\" cy=\"1153.6\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1254.77\" cy=\"1082.73\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1178.99\" cy=\"389.35\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"535.033\" cy=\"687.242\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1151.44\" cy=\"1305.09\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"469.866\" cy=\"749.717\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1216.82\" cy=\"1335.48\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1525.52\" cy=\"1010.12\" r=\"9\"/>\n",
"</svg>\n"
]
},
"execution_count": 343,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# Let's sample 1000 points and check whether this looks reasonable\n",
"test_sample = [sampler() for _ in 1:1000]\n",
"plot(hexagon; fill=:transparent)\n",
"scatter!(first.(test_sample), last.(test_sample), color=:indianred, markersize=2.5, markerstrokewidth=0)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Computing things"
]
},
{
"cell_type": "code",
"execution_count": 317,
"metadata": {},
"outputs": [],
"source": [
"sample_coords = [sampler() for _ in 1:200]\n",
"sample_points = [vertices[1] + B * v for v in sample_coords];"
]
},
{
"cell_type": "code",
"execution_count": 318,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"2-element Array{Float64,1}:\n",
" -0.46615495777161764 \n",
" 0.008157264312942164"
]
},
"execution_count": 318,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"c₀ = B \\ (p₀ - vertices[1])"
]
},
{
"cell_type": "code",
"execution_count": 342,
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<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\">\n",
"<defs>\n",
" <clipPath id=\"clip8800\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip8800)\" points=\"\n",
"0,1600 2400,1600 2400,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip8801\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip8800)\" points=\"\n",
"182.008,1487.47 2352.76,1487.47 2352.76,47.2441 182.008,47.2441 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip8802\">\n",
" <rect x=\"182\" y=\"47\" width=\"2172\" height=\"1441\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 555.658,1487.47 555.658,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 984.328,1487.47 984.328,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1413,1487.47 1413,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1841.67,1487.47 1841.67,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2270.34,1487.47 2270.34,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 182.008,1209.04 2352.76,1209.04 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 182.008,926.294 2352.76,926.294 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 182.008,643.552 2352.76,643.552 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 182.008,360.81 2352.76,360.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 182.008,78.0675 2352.76,78.0675 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 182.008,1487.47 2352.76,1487.47 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 182.008,1487.47 182.008,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 555.658,1487.47 555.658,1465.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 984.328,1487.47 984.328,1465.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1413,1487.47 1413,1465.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1841.67,1487.47 1841.67,1465.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2270.34,1487.47 2270.34,1465.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 182.008,1209.04 214.569,1209.04 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 182.008,926.294 214.569,926.294 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 182.008,643.552 214.569,643.552 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 182.008,360.81 214.569,360.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 182.008,78.0675 214.569,78.0675 \n",
" \"/>\n",
"<g clip-path=\"url(#clip8800)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 555.658, 1541.47)\" x=\"555.658\" y=\"1541.47\">-0.8</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip8800)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 984.328, 1541.47)\" x=\"984.328\" y=\"1541.47\">-0.6</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip8800)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1413, 1541.47)\" x=\"1413\" y=\"1541.47\">-0.4</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip8800)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1841.67, 1541.47)\" x=\"1841.67\" y=\"1541.47\">-0.2</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip8800)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 2270.34, 1541.47)\" x=\"2270.34\" y=\"1541.47\">0.0</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip8800)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 1226.54)\" x=\"158.008\" y=\"1226.54\">-0.1</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip8800)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 943.794)\" x=\"158.008\" y=\"943.794\">0.0</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip8800)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 661.052)\" x=\"158.008\" y=\"661.052\">0.1</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip8800)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 378.31)\" x=\"158.008\" y=\"378.31\">0.2</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip8800)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 95.5675)\" x=\"158.008\" y=\"95.5675\">0.3</text>\n",
"</g>\n",
"<polygon clip-path=\"url(#clip8802)\" points=\"\n",
"243.444,926.294 1114.5,88.0053 2291.32,840.399 2270.34,926.294 1375.68,1446.71 296.85,1009.07 243.444,926.294 243.444,926.294 \n",
" \" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0\"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 243.444,926.294 1114.5,88.0053 2291.32,840.399 2270.34,926.294 1375.68,1446.71 296.85,1009.07 243.444,926.294 \n",
" \"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1274.89\" cy=\"901.695\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1728.79\" cy=\"879.153\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1684.24\" cy=\"745.251\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"929.659\" cy=\"1191.11\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"954.622\" cy=\"389.384\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1388.63\" cy=\"762.166\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1328.94\" cy=\"1215.31\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"985.22\" cy=\"979.095\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1690.84\" cy=\"1253.72\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1022.35\" cy=\"1264.25\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1538.54\" cy=\"579.652\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1416\" cy=\"867.158\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1406.52\" cy=\"1199.35\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2221.36\" cy=\"872.549\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1378.99\" cy=\"1285.45\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1046.68\" cy=\"698.331\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1598.82\" cy=\"1006.66\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1279.25\" cy=\"1026.19\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1047.95\" cy=\"1277.73\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"911.385\" cy=\"580.844\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"902.518\" cy=\"343.213\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1085.19\" cy=\"1247.11\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1254.93\" cy=\"695.258\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1210.67\" cy=\"1028.47\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1141.62\" cy=\"120.37\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1425.14\" cy=\"393.274\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1465.76\" cy=\"432.2\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1529.6\" cy=\"799.111\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1393.85\" cy=\"741.581\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1469.66\" cy=\"581.628\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"884.347\" cy=\"344.563\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"543.395\" cy=\"826.081\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1460.87\" cy=\"332.709\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1346.49\" cy=\"289.004\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1724.79\" cy=\"583.149\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1738.55\" cy=\"1136.27\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1496.75\" cy=\"988.437\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"937.762\" cy=\"1096.95\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1491.16\" cy=\"348.105\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1234.2\" cy=\"573.969\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1106.33\" cy=\"810.793\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1502.66\" cy=\"629.848\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"979.8\" cy=\"483.854\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1962.01\" cy=\"683.532\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1007.66\" cy=\"195.862\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1177.44\" cy=\"1326.67\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1040.79\" cy=\"608.138\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2076.95\" cy=\"778.889\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1247.15\" cy=\"939.291\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1409.48\" cy=\"498.525\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1619.41\" cy=\"1059.68\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1844.77\" cy=\"892.328\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"918.773\" cy=\"295.886\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"292.723\" cy=\"937.835\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1423.97\" cy=\"672.03\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"752.196\" cy=\"497.288\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1231.22\" cy=\"318.477\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1047.88\" cy=\"543.139\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1449.72\" cy=\"1397.49\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1519.11\" cy=\"1291.48\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"735.723\" cy=\"1051.3\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1308.77\" cy=\"526.039\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1048.92\" cy=\"166.042\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"923.879\" cy=\"650.964\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1958.2\" cy=\"936.289\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1815.3\" cy=\"601.49\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"951.494\" cy=\"989.734\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2021.19\" cy=\"1068.53\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1385.21\" cy=\"294.083\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1625.44\" cy=\"656.567\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"582.855\" cy=\"849.093\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1209.69\" cy=\"194.531\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1487.2\" cy=\"565.838\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1434.89\" cy=\"901.173\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1333.06\" cy=\"832.035\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1845.48\" cy=\"961.292\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1333.15\" cy=\"1062.02\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1607.42\" cy=\"835.083\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1142.28\" cy=\"1157.13\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1294.84\" cy=\"613.09\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1253.31\" cy=\"1167.06\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"796.088\" cy=\"1030.42\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"912.471\" cy=\"1110\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1749.12\" cy=\"622.337\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1390.34\" cy=\"310.799\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1293.08\" cy=\"252.088\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1904.72\" cy=\"891.97\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1380.86\" cy=\"1094.17\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"491.759\" cy=\"1078.18\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"612.213\" cy=\"620.927\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2113.21\" cy=\"808.418\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1614.89\" cy=\"473.793\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1460.41\" cy=\"823.468\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1837.41\" cy=\"963.055\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"555.121\" cy=\"724.764\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1631.74\" cy=\"461.382\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"828.197\" cy=\"923.75\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1099.05\" cy=\"846.201\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1073.05\" cy=\"574.402\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1117.56\" cy=\"440.704\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1195.36\" cy=\"1050.54\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1544.61\" cy=\"472.057\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"595.134\" cy=\"770.052\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"675.447\" cy=\"742.757\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2205.31\" cy=\"906.136\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"699.058\" cy=\"950.574\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1521.12\" cy=\"870.234\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1973.59\" cy=\"981.192\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1457.95\" cy=\"994.447\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"866.935\" cy=\"755.469\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"667.765\" cy=\"623.187\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1038.68\" cy=\"1154.4\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1231.71\" cy=\"910.891\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1331.08\" cy=\"437.906\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1244.03\" cy=\"1047.09\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1964.33\" cy=\"826.001\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1317.97\" cy=\"1060.08\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1355.93\" cy=\"328.469\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1042.1\" cy=\"609.987\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1280.68\" cy=\"870.647\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1365.08\" cy=\"1000.8\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1667.79\" cy=\"1086.44\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1123.78\" cy=\"236.031\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"599.526\" cy=\"962.354\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1275.08\" cy=\"236.139\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1333.34\" cy=\"1012.98\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1471.96\" cy=\"794.673\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1231.58\" cy=\"734.89\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"929.458\" cy=\"422.267\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1889.68\" cy=\"995.711\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1012.07\" cy=\"331.088\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1728.78\" cy=\"508.952\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1186.83\" cy=\"1110.6\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1084.98\" cy=\"1324.57\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"941.184\" cy=\"759.728\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"481.293\" cy=\"952.815\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2041.41\" cy=\"785.324\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"545.711\" cy=\"650.388\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"766.712\" cy=\"461.443\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1329.3\" cy=\"1331.19\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"278.747\" cy=\"937.362\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"620.321\" cy=\"1059.93\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1755.06\" cy=\"566.002\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1101.61\" cy=\"1284.58\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"487.803\" cy=\"888.199\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1410.34\" cy=\"448.051\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"735.239\" cy=\"896.393\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1413.95\" cy=\"1285.04\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1827.29\" cy=\"1079.96\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"833.666\" cy=\"579.213\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"873.314\" cy=\"696.909\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1356.14\" cy=\"514.975\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1788.17\" cy=\"539.044\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"949.732\" cy=\"481.91\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1809.41\" cy=\"941.729\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1942.95\" cy=\"892.251\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1681.63\" cy=\"1222.14\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"606.393\" cy=\"1027.81\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"711.442\" cy=\"746.928\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"604.38\" cy=\"682.079\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1643.7\" cy=\"1005.22\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1894.44\" cy=\"1049.83\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"777.464\" cy=\"1107.51\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1802.28\" cy=\"596.596\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"360.494\" cy=\"884.364\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1616.32\" cy=\"1177.24\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2174.24\" cy=\"809.66\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"454.88\" cy=\"869.498\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"877.99\" cy=\"433.668\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2125.54\" cy=\"867.621\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1824.21\" cy=\"1141.44\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"626.613\" cy=\"600.516\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1553.55\" cy=\"643.184\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"976.356\" cy=\"391.576\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1575.93\" cy=\"947.765\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"502.618\" cy=\"698.96\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"829.878\" cy=\"1103.87\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"779.814\" cy=\"864.29\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1003.11\" cy=\"904.282\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1183.66\" cy=\"193.737\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1586.19\" cy=\"767.783\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1190.34\" cy=\"694.234\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2147.51\" cy=\"808.369\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1185.29\" cy=\"242.408\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1298.89\" cy=\"1385.4\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1169.05\" cy=\"276.959\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"624.395\" cy=\"620.365\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"870.56\" cy=\"1079\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1414.59\" cy=\"967.434\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"783.541\" cy=\"464.547\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1360.16\" cy=\"707.229\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2146.64\" cy=\"931.53\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"957.161\" cy=\"1166.46\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"554.298\" cy=\"640.808\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1136.08\" cy=\"132.152\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1471.38\" cy=\"1181.99\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"294.61\" cy=\"990.073\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1547.71\" cy=\"533.918\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1819.29\" cy=\"678.853\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1481.64\" cy=\"776.343\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#20b2aa; stroke:none; fill-opacity:1\" cx=\"1271.2\" cy=\"903.23\" r=\"18\"/>\n",
"</svg>\n"
]
},
"execution_count": 342,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"plot(hexagon; fill=:transparent)\n",
"scatter!(first.(sample_coords), last.(sample_coords), color=:indianred, markersize=2.5, markerstrokewidth=0)\n",
"scatter!(c₀[1:1], c₀[2:2], color=:lightseagreen, markersize=5., markerstrokewidth=0)"
]
},
{
"cell_type": "code",
"execution_count": 320,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"PathTracker"
]
},
"execution_count": 320,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"S = solutions(res_generic)\n",
"tracker = pathtracker(G, S; parameters=[u...], start_parameters=u₀, target_parameters=sample_points[1])"
]
},
{
"cell_type": "code",
"execution_count": 347,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"best_result (generic function with 1 method)"
]
},
"execution_count": 347,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"function best_result(result, p)\n",
" argmax = nothing\n",
" max_mle = -Inf\n",
" for r in result\n",
" x = r.solution\n",
" is_real_solution = all(i -> abs(imag(x[i])) < 1e-8, 1:6)\n",
" is_real_solution || continue\n",
" \n",
" pos_solution = all(i -> real(x[i]) ≥ -1e-8, 1:6)\n",
" pos_solution || continue\n",
" \n",
" mle = sum(i -> p[i]*log(real(x[i])), 1:6)\n",
" if mle > max_mle\n",
" max_mle = mle\n",
" argmax = [real(x[i]) for i in 1:6]\n",
" end\n",
" end\n",
" argmax\n",
"end"
]
},
{
"cell_type": "code",
"execution_count": 348,
"metadata": {},
"outputs": [],
"source": [
"distances = map(sample_points) do p\n",
" set_parameters!(tracker; target_parameters=p)\n",
" argmax = best_result(solve(tracker, S, threading=false), p)\n",
" norm(argmax - p₀)\n",
"end;"
]
},
{
"cell_type": "code",
"execution_count": 349,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"8-element Array{Array{Float64,1},1}:\n",
" [-0.464435, 0.0087003] \n",
" [-0.4624, -0.0353325] \n",
" [-0.477379, -0.00459659]\n",
" [-0.484581, 0.00544768] \n",
" [-0.478832, -0.0427221] \n",
" [-0.444336, -0.0473178] \n",
" [-0.461735, 0.0196813] \n",
" [-0.437166, -0.0306598] "
]
},
"execution_count": 349,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"green = sample_coords[distances .< 1e-8]"
]
},
{
"cell_type": "code",
"execution_count": 350,
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<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\">\n",
"<defs>\n",
" <clipPath id=\"clip0000\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip0000)\" points=\"\n",
"0,1600 2400,1600 2400,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip0001\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip0000)\" points=\"\n",
"182.008,1487.47 2352.76,1487.47 2352.76,47.2441 182.008,47.2441 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip0002\">\n",
" <rect x=\"182\" y=\"47\" width=\"2172\" height=\"1441\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip0002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 555.658,1487.47 555.658,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 984.328,1487.47 984.328,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1413,1487.47 1413,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1841.67,1487.47 1841.67,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2270.34,1487.47 2270.34,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 182.008,1209.04 2352.76,1209.04 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 182.008,926.294 2352.76,926.294 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 182.008,643.552 2352.76,643.552 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 182.008,360.81 2352.76,360.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 182.008,78.0675 2352.76,78.0675 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 182.008,1487.47 2352.76,1487.47 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 182.008,1487.47 182.008,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 555.658,1487.47 555.658,1465.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 984.328,1487.47 984.328,1465.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1413,1487.47 1413,1465.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1841.67,1487.47 1841.67,1465.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2270.34,1487.47 2270.34,1465.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 182.008,1209.04 214.569,1209.04 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 182.008,926.294 214.569,926.294 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 182.008,643.552 214.569,643.552 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 182.008,360.81 214.569,360.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 182.008,78.0675 214.569,78.0675 \n",
" \"/>\n",
"<g clip-path=\"url(#clip0000)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 555.658, 1541.47)\" x=\"555.658\" y=\"1541.47\">-0.8</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip0000)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 984.328, 1541.47)\" x=\"984.328\" y=\"1541.47\">-0.6</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip0000)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1413, 1541.47)\" x=\"1413\" y=\"1541.47\">-0.4</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip0000)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1841.67, 1541.47)\" x=\"1841.67\" y=\"1541.47\">-0.2</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip0000)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 2270.34, 1541.47)\" x=\"2270.34\" y=\"1541.47\">0.0</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip0000)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 1226.54)\" x=\"158.008\" y=\"1226.54\">-0.1</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip0000)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 943.794)\" x=\"158.008\" y=\"943.794\">0.0</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip0000)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 661.052)\" x=\"158.008\" y=\"661.052\">0.1</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip0000)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 378.31)\" x=\"158.008\" y=\"378.31\">0.2</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip0000)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 95.5675)\" x=\"158.008\" y=\"95.5675\">0.3</text>\n",
"</g>\n",
"<polygon clip-path=\"url(#clip0002)\" points=\"\n",
"243.444,926.294 1114.5,88.0053 2291.32,840.399 2270.34,926.294 1375.68,1446.71 296.85,1009.07 243.444,926.294 243.444,926.294 \n",
" \" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0\"/>\n",
"<polyline clip-path=\"url(#clip0002)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 243.444,926.294 1114.5,88.0053 2291.32,840.399 2270.34,926.294 1375.68,1446.71 296.85,1009.07 243.444,926.294 \n",
" \"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1274.89\" cy=\"901.695\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1728.79\" cy=\"879.153\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1684.24\" cy=\"745.251\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"929.659\" cy=\"1191.11\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"954.622\" cy=\"389.384\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1388.63\" cy=\"762.166\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1328.94\" cy=\"1215.31\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"985.22\" cy=\"979.095\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1690.84\" cy=\"1253.72\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1022.35\" cy=\"1264.25\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1538.54\" cy=\"579.652\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1416\" cy=\"867.158\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1406.52\" cy=\"1199.35\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2221.36\" cy=\"872.549\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1378.99\" cy=\"1285.45\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1046.68\" cy=\"698.331\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1598.82\" cy=\"1006.66\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1279.25\" cy=\"1026.19\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1047.95\" cy=\"1277.73\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"911.385\" cy=\"580.844\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"902.518\" cy=\"343.213\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1085.19\" cy=\"1247.11\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1254.93\" cy=\"695.258\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1210.67\" cy=\"1028.47\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1141.62\" cy=\"120.37\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1425.14\" cy=\"393.274\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1465.76\" cy=\"432.2\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1529.6\" cy=\"799.111\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1393.85\" cy=\"741.581\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1469.66\" cy=\"581.628\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"884.347\" cy=\"344.563\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"543.395\" cy=\"826.081\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1460.87\" cy=\"332.709\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1346.49\" cy=\"289.004\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1724.79\" cy=\"583.149\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1738.55\" cy=\"1136.27\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1496.75\" cy=\"988.437\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"937.762\" cy=\"1096.95\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1491.16\" cy=\"348.105\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1234.2\" cy=\"573.969\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1106.33\" cy=\"810.793\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1502.66\" cy=\"629.848\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"979.8\" cy=\"483.854\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1962.01\" cy=\"683.532\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1007.66\" cy=\"195.862\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1177.44\" cy=\"1326.67\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1040.79\" cy=\"608.138\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2076.95\" cy=\"778.889\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1247.15\" cy=\"939.291\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1409.48\" cy=\"498.525\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1619.41\" cy=\"1059.68\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1844.77\" cy=\"892.328\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"918.773\" cy=\"295.886\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"292.723\" cy=\"937.835\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1423.97\" cy=\"672.03\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"752.196\" cy=\"497.288\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1231.22\" cy=\"318.477\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1047.88\" cy=\"543.139\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1449.72\" cy=\"1397.49\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1519.11\" cy=\"1291.48\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"735.723\" cy=\"1051.3\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1308.77\" cy=\"526.039\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1048.92\" cy=\"166.042\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"923.879\" cy=\"650.964\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1958.2\" cy=\"936.289\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1815.3\" cy=\"601.49\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"951.494\" cy=\"989.734\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2021.19\" cy=\"1068.53\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1385.21\" cy=\"294.083\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1625.44\" cy=\"656.567\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"582.855\" cy=\"849.093\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1209.69\" cy=\"194.531\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1487.2\" cy=\"565.838\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1434.89\" cy=\"901.173\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1333.06\" cy=\"832.035\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1845.48\" cy=\"961.292\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1333.15\" cy=\"1062.02\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1607.42\" cy=\"835.083\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1142.28\" cy=\"1157.13\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1294.84\" cy=\"613.09\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1253.31\" cy=\"1167.06\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"796.088\" cy=\"1030.42\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"912.471\" cy=\"1110\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1749.12\" cy=\"622.337\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1390.34\" cy=\"310.799\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1293.08\" cy=\"252.088\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1904.72\" cy=\"891.97\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1380.86\" cy=\"1094.17\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"491.759\" cy=\"1078.18\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"612.213\" cy=\"620.927\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2113.21\" cy=\"808.418\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1614.89\" cy=\"473.793\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1460.41\" cy=\"823.468\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1837.41\" cy=\"963.055\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"555.121\" cy=\"724.764\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1631.74\" cy=\"461.382\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"828.197\" cy=\"923.75\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1099.05\" cy=\"846.201\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1073.05\" cy=\"574.402\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1117.56\" cy=\"440.704\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1195.36\" cy=\"1050.54\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1544.61\" cy=\"472.057\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"595.134\" cy=\"770.052\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"675.447\" cy=\"742.757\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2205.31\" cy=\"906.136\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"699.058\" cy=\"950.574\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1521.12\" cy=\"870.234\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1973.59\" cy=\"981.192\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1457.95\" cy=\"994.447\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"866.935\" cy=\"755.469\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"667.765\" cy=\"623.187\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1038.68\" cy=\"1154.4\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1231.71\" cy=\"910.891\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1331.08\" cy=\"437.906\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1244.03\" cy=\"1047.09\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1964.33\" cy=\"826.001\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1317.97\" cy=\"1060.08\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1355.93\" cy=\"328.469\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1042.1\" cy=\"609.987\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1280.68\" cy=\"870.647\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1365.08\" cy=\"1000.8\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1667.79\" cy=\"1086.44\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1123.78\" cy=\"236.031\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"599.526\" cy=\"962.354\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1275.08\" cy=\"236.139\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1333.34\" cy=\"1012.98\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1471.96\" cy=\"794.673\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1231.58\" cy=\"734.89\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"929.458\" cy=\"422.267\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1889.68\" cy=\"995.711\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1012.07\" cy=\"331.088\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1728.78\" cy=\"508.952\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1186.83\" cy=\"1110.6\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1084.98\" cy=\"1324.57\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"941.184\" cy=\"759.728\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"481.293\" cy=\"952.815\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2041.41\" cy=\"785.324\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"545.711\" cy=\"650.388\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"766.712\" cy=\"461.443\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1329.3\" cy=\"1331.19\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"278.747\" cy=\"937.362\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"620.321\" cy=\"1059.93\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1755.06\" cy=\"566.002\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1101.61\" cy=\"1284.58\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"487.803\" cy=\"888.199\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1410.34\" cy=\"448.051\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"735.239\" cy=\"896.393\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1413.95\" cy=\"1285.04\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1827.29\" cy=\"1079.96\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"833.666\" cy=\"579.213\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"873.314\" cy=\"696.909\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1356.14\" cy=\"514.975\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1788.17\" cy=\"539.044\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"949.732\" cy=\"481.91\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1809.41\" cy=\"941.729\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1942.95\" cy=\"892.251\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1681.63\" cy=\"1222.14\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"606.393\" cy=\"1027.81\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"711.442\" cy=\"746.928\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"604.38\" cy=\"682.079\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1643.7\" cy=\"1005.22\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1894.44\" cy=\"1049.83\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"777.464\" cy=\"1107.51\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1802.28\" cy=\"596.596\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"360.494\" cy=\"884.364\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1616.32\" cy=\"1177.24\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2174.24\" cy=\"809.66\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"454.88\" cy=\"869.498\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"877.99\" cy=\"433.668\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2125.54\" cy=\"867.621\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1824.21\" cy=\"1141.44\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"626.613\" cy=\"600.516\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1553.55\" cy=\"643.184\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"976.356\" cy=\"391.576\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1575.93\" cy=\"947.765\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"502.618\" cy=\"698.96\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"829.878\" cy=\"1103.87\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"779.814\" cy=\"864.29\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1003.11\" cy=\"904.282\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1183.66\" cy=\"193.737\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1586.19\" cy=\"767.783\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1190.34\" cy=\"694.234\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2147.51\" cy=\"808.369\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1185.29\" cy=\"242.408\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1298.89\" cy=\"1385.4\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1169.05\" cy=\"276.959\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"624.395\" cy=\"620.365\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"870.56\" cy=\"1079\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1414.59\" cy=\"967.434\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"783.541\" cy=\"464.547\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1360.16\" cy=\"707.229\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"2146.64\" cy=\"931.53\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"957.161\" cy=\"1166.46\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"554.298\" cy=\"640.808\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1136.08\" cy=\"132.152\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1471.38\" cy=\"1181.99\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"294.61\" cy=\"990.073\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1547.71\" cy=\"533.918\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1819.29\" cy=\"678.853\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#cd5c5c; stroke:none; fill-opacity:1\" cx=\"1481.64\" cy=\"776.343\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#9370db; stroke:none; fill-opacity:1\" cx=\"1274.89\" cy=\"901.695\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#9370db; stroke:none; fill-opacity:1\" cx=\"1279.25\" cy=\"1026.19\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#9370db; stroke:none; fill-opacity:1\" cx=\"1247.15\" cy=\"939.291\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#9370db; stroke:none; fill-opacity:1\" cx=\"1231.71\" cy=\"910.891\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#9370db; stroke:none; fill-opacity:1\" cx=\"1244.03\" cy=\"1047.09\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#9370db; stroke:none; fill-opacity:1\" cx=\"1317.97\" cy=\"1060.08\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#9370db; stroke:none; fill-opacity:1\" cx=\"1280.68\" cy=\"870.647\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#9370db; stroke:none; fill-opacity:1\" cx=\"1333.34\" cy=\"1012.98\" r=\"9\"/>\n",
"<circle clip-path=\"url(#clip0002)\" style=\"fill:#20b2aa; stroke:none; fill-opacity:1\" cx=\"1271.2\" cy=\"903.23\" r=\"18\"/>\n",
"</svg>\n"
]
},
"execution_count": 350,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"plot(hexagon; fill=:transparent)\n",
"scatter!(first.(sample_coords), last.(sample_coords), color=:indianred, markersize=2.5, markerstrokewidth=0)\n",
"scatter!(first.(green), last.(green), color=:MEDIUMPURPLE, markersize=2.5, markerstrokewidth=0)\n",
"scatter!(c₀[1:1], c₀[2:2], color=:lightseagreen, markersize=5, markerstrokewidth=0)"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Julia 1.1.0",
"language": "julia",
"name": "julia-1.1"
},
"language_info": {
"file_extension": ".jl",
"mimetype": "application/julia",
"name": "julia",
"version": "1.1.0"
}
},
"nbformat": 4,
"nbformat_minor": 1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment