2023-12-18 14:31:52 +01:00
|
|
|
{
|
|
|
|
"cells": [
|
|
|
|
{
|
|
|
|
"cell_type": "code",
|
2024-03-06 23:44:47 +01:00
|
|
|
"execution_count": 1,
|
2023-12-18 14:31:52 +01:00
|
|
|
"metadata": {},
|
2024-03-06 23:44:47 +01:00
|
|
|
"outputs": [
|
|
|
|
{
|
|
|
|
"name": "stdout",
|
|
|
|
"output_type": "stream",
|
|
|
|
"text": [
|
|
|
|
"Threads: 12\n"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
2023-12-18 14:31:52 +01:00
|
|
|
"source": [
|
|
|
|
"#using Pkg\n",
|
|
|
|
"#Pkg.add(url=\"https://github.com/QEDjl-project/QEDprocesses.jl/\")\n",
|
|
|
|
"\n",
|
|
|
|
"using MetagraphOptimization\n",
|
|
|
|
"using CUDA\n",
|
|
|
|
"using UUIDs\n",
|
|
|
|
"using BenchmarkTools\n",
|
|
|
|
"\n",
|
|
|
|
"println(\"Threads: $(Threads.nthreads())\")"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"cell_type": "code",
|
2024-03-06 23:44:47 +01:00
|
|
|
"execution_count": 2,
|
2023-12-18 14:31:52 +01:00
|
|
|
"metadata": {},
|
2024-03-06 23:44:47 +01:00
|
|
|
"outputs": [
|
|
|
|
{
|
|
|
|
"data": {
|
|
|
|
"text/plain": [
|
|
|
|
"compute__63d68c26_dbf6_11ee_28bb_113216b1f5be (generic function with 1 method)"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"metadata": {},
|
|
|
|
"output_type": "display_data"
|
|
|
|
}
|
|
|
|
],
|
2023-12-18 14:31:52 +01:00
|
|
|
"source": [
|
|
|
|
"# preparation of graph\n",
|
|
|
|
"machine = Machine([MetagraphOptimization.NumaNode(0, 1, MetagraphOptimization.default_strategy(MetagraphOptimization.NumaNode), -1.0, UUIDs.uuid1())], [-1.0;;])\n",
|
|
|
|
"model = QEDModel()\n",
|
2024-03-06 23:44:47 +01:00
|
|
|
"process = parse_process(\"ke->kkke\", model)\n",
|
2023-12-18 14:31:52 +01:00
|
|
|
"graph = gen_graph(process)\n",
|
|
|
|
"n_inputs = 10_000\n",
|
|
|
|
"inputs = [gen_process_input(process) for _ in 1:n_inputs]\n",
|
2024-02-20 21:18:19 +01:00
|
|
|
"cu_inputs = Vector()#CuArray(inputs)\n",
|
2024-03-06 23:44:47 +01:00
|
|
|
"optimizer = GreedyOptimizer(GlobalMetricEstimator())\n",
|
2023-12-18 14:31:52 +01:00
|
|
|
"\n",
|
|
|
|
"get_compute_function(graph, process, machine) # run once for compilation"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"cell_type": "code",
|
2024-03-06 23:44:47 +01:00
|
|
|
"execution_count": 3,
|
2023-12-18 14:31:52 +01:00
|
|
|
"metadata": {},
|
2024-03-06 23:44:47 +01:00
|
|
|
"outputs": [
|
|
|
|
{
|
|
|
|
"data": {
|
|
|
|
"text/plain": [
|
|
|
|
"bench (generic function with 1 method)"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"metadata": {},
|
|
|
|
"output_type": "display_data"
|
|
|
|
}
|
|
|
|
],
|
2023-12-18 14:31:52 +01:00
|
|
|
"source": [
|
|
|
|
"function bench(func, inputs, cu_inputs)\n",
|
|
|
|
" compile_time = @elapsed func(inputs[1])\n",
|
|
|
|
"\n",
|
2024-03-06 23:44:47 +01:00
|
|
|
" b = @benchmark func.(inputs) samples=10 evals=1\n",
|
|
|
|
" single_thread = median(b.times)\n",
|
|
|
|
"\n",
|
|
|
|
" b = @benchmark begin \n",
|
|
|
|
" Threads.@threads for i in eachindex(inputs)\n",
|
|
|
|
" func(inputs[i]) \n",
|
|
|
|
" end \n",
|
|
|
|
" end samples = 10 evals=1\n",
|
|
|
|
" multi_threaded = median(b.times)\n",
|
2023-12-18 14:31:52 +01:00
|
|
|
" \n",
|
|
|
|
" gpu_compile = 0 #@elapsed CUDA.@sync func.(cu_inputs[1:2])\n",
|
|
|
|
" gpu = 0 #@elapsed CUDA.@sync func.(cu_inputs)\n",
|
|
|
|
" return (cpu_compile_time = compile_time, gpu_compile_time = gpu_compile, cpu_single_thread_time = single_thread, cpu_multi_thread_time = multi_threaded, gpu_time = gpu)\n",
|
|
|
|
"end"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"cell_type": "code",
|
2024-03-06 23:44:47 +01:00
|
|
|
"execution_count": 4,
|
2023-12-18 14:31:52 +01:00
|
|
|
"metadata": {},
|
|
|
|
"outputs": [],
|
|
|
|
"source": [
|
|
|
|
"# bench and produce data\n",
|
|
|
|
"using DataFrames\n",
|
|
|
|
"\n",
|
2024-03-06 23:44:47 +01:00
|
|
|
"STEPSIZE = 1\n",
|
2023-12-18 14:31:52 +01:00
|
|
|
"n = 0\n",
|
|
|
|
"\n",
|
|
|
|
"df = DataFrame(operations=Int[], graph_nodes=Int[], graph_edges=Int[], graph_ce=Float64[], graph_dt=Float64[], graph_ci=Float64[], gen_func_t=Float64[], cpu_compile_t=Float64[], cpu_st_t=Float64[], cpu_mt_t=Float64[], gpu_compile_t=Float64[], gpu_t=Float64[])\n",
|
|
|
|
"\n",
|
|
|
|
"while true\n",
|
|
|
|
" func_gen_time = @elapsed func = get_compute_function(graph, process, machine)\n",
|
|
|
|
" res = bench(func, inputs, cu_inputs)\n",
|
|
|
|
"\n",
|
|
|
|
" graph_properties = get_properties(graph)\n",
|
|
|
|
" push!(df, (\n",
|
|
|
|
" n,\n",
|
|
|
|
" graph_properties.noNodes,\n",
|
|
|
|
" graph_properties.noEdges,\n",
|
|
|
|
" graph_properties.computeEffort,\n",
|
|
|
|
" graph_properties.data,\n",
|
|
|
|
" graph_properties.computeIntensity,\n",
|
|
|
|
" func_gen_time,\n",
|
|
|
|
" res.cpu_compile_time,\n",
|
|
|
|
" res.cpu_single_thread_time,\n",
|
|
|
|
" res.cpu_multi_thread_time,\n",
|
|
|
|
" res.gpu_compile_time,\n",
|
|
|
|
" res.gpu_time\n",
|
|
|
|
" ))\n",
|
|
|
|
"\n",
|
|
|
|
" if fixpoint_reached(optimizer, graph)\n",
|
|
|
|
" break\n",
|
|
|
|
" end\n",
|
|
|
|
"\n",
|
|
|
|
" optimize!(optimizer, graph, STEPSIZE)\n",
|
|
|
|
" n += STEPSIZE\n",
|
|
|
|
"end\n",
|
|
|
|
";"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"cell_type": "code",
|
2024-03-06 23:44:47 +01:00
|
|
|
"execution_count": 14,
|
2023-12-18 14:31:52 +01:00
|
|
|
"metadata": {},
|
2024-03-06 23:44:47 +01:00
|
|
|
"outputs": [
|
|
|
|
{
|
|
|
|
"data": {
|
|
|
|
"text/plain": [
|
|
|
|
"beautify_title (generic function with 1 method)"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"metadata": {},
|
|
|
|
"output_type": "display_data"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"source": [
|
|
|
|
"using LaTeXStrings\n",
|
|
|
|
"\n",
|
|
|
|
"function beautify_title(str::AbstractString)\n",
|
|
|
|
" parts = split(str, \"'\")\n",
|
|
|
|
"\n",
|
|
|
|
" preprefix = parts[1]\n",
|
|
|
|
" infix = parts[2]\n",
|
|
|
|
" sufsuffix = parts[3]\n",
|
|
|
|
"\n",
|
|
|
|
" parts = split(infix, \"->\")\n",
|
|
|
|
"\n",
|
|
|
|
" prefix = parts[1]\n",
|
|
|
|
" suffix = parts[2]\n",
|
|
|
|
"\n",
|
|
|
|
" k_count = count(c -> c == 'k', suffix)\n",
|
|
|
|
" B_count = count(c -> c == 'B', suffix)\n",
|
|
|
|
"\n",
|
|
|
|
" if k_count == 1 || B_count == 1\n",
|
|
|
|
" new_suffix = suffix\n",
|
|
|
|
" elseif k_count >= 1\n",
|
|
|
|
" new_suffix = replace(suffix, r\"k+\" => \"k^$k_count\")\n",
|
|
|
|
" elseif B_count >= 1\n",
|
|
|
|
" new_suffix = replace(suffix, r\"B+\" => \"B^$B_count\")\n",
|
|
|
|
" end\n",
|
|
|
|
"\n",
|
|
|
|
" return preprefix * L\"%$prefix \\rightarrow %$new_suffix\" * sufsuffix\n",
|
|
|
|
"end"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"cell_type": "code",
|
|
|
|
"execution_count": 5,
|
|
|
|
"metadata": {},
|
|
|
|
"outputs": [
|
|
|
|
{
|
|
|
|
"data": {
|
|
|
|
"image/png": "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
|
|
|
|
"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=\"800\" height=\"600\" viewBox=\"0 0 3200 2400\">\n",
|
|
|
|
"<defs>\n",
|
|
|
|
" <clipPath id=\"clip100\">\n",
|
|
|
|
" <rect x=\"0\" y=\"0\" width=\"3200\" height=\"2400\"/>\n",
|
|
|
|
" </clipPath>\n",
|
|
|
|
"</defs>\n",
|
|
|
|
"<path clip-path=\"url(#clip100)\" d=\"M0 2400 L3200 2400 L3200 0 L0 0 Z\" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
|
|
|
|
"<defs>\n",
|
|
|
|
" <clipPath id=\"clip101\">\n",
|
|
|
|
" <rect x=\"640\" y=\"0\" width=\"2241\" height=\"2241\"/>\n",
|
|
|
|
" </clipPath>\n",
|
|
|
|
"</defs>\n",
|
|
|
|
"<path clip-path=\"url(#clip100)\" d=\"M303.059 1818.27 L3152.76 1818.27 L3152.76 131.032 L303.059 131.032 Z\" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
|
|
|
|
"<defs>\n",
|
|
|
|
" <clipPath id=\"clip102\">\n",
|
|
|
|
" <rect x=\"303\" y=\"131\" width=\"2851\" height=\"1688\"/>\n",
|
|
|
|
" </clipPath>\n",
|
|
|
|
"</defs>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip102)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"383.711,1818.27 383.711,131.032 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip102)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"1279.84,1818.27 1279.84,131.032 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip102)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"2175.97,1818.27 2175.97,131.032 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip102)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"3072.1,1818.27 3072.1,131.032 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip102)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"562.937,1818.27 562.937,131.032 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip102)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"742.164,1818.27 742.164,131.032 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip102)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"921.39,1818.27 921.39,131.032 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip102)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"1100.62,1818.27 1100.62,131.032 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip102)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"1459.07,1818.27 1459.07,131.032 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip102)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"1638.29,1818.27 1638.29,131.032 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip102)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"1817.52,1818.27 1817.52,131.032 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip102)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"1996.75,1818.27 1996.75,131.032 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip102)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"2355.2,1818.27 2355.2,131.032 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip102)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"2534.43,1818.27 2534.43,131.032 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip102)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"2713.65,1818.27 2713.65,131.032 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip102)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"2892.88,1818.27 2892.88,131.032 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip100)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"303.059,1818.27 3152.76,1818.27 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip100)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"383.711,1818.27 383.711,1802.9 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip100)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"1279.84,1818.27 1279.84,1802.9 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip100)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"2175.97,1818.27 2175.97,1802.9 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip100)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"3072.1,1818.27 3072.1,1802.9 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip100)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"562.937,1818.27 562.937,1810.58 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip100)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"742.164,1818.27 742.164,1810.58 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip100)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"921.39,1818.27 921.39,1810.58 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip100)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"1100.62,1818.27 1100.62,1810.58 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip100)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"1459.07,1818.27 1459.07,1810.58 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip100)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"1638.29,1818.27 1638.29,1810.58 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip100)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"1817.52,1818.27 1817.52,1810.58 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip100)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"1996.75,1818.27 1996.75,1810.58 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip100)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"2355.2,1818.27 2355.2,1810.58 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip100)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"2534.43,1818.27 2534.43,1810.58 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip100)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"2713.65,1818.27 2713.65,1810.58 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip100)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"2892.88,1818.27 2892.88,1810.58 \"/>\n",
|
|
|
|
"<path clip-path=\"url(#clip100)\" d=\"M383.711 1855.59 Q380.1 1855.59 378.271 1859.15 Q376.466 1862.7 376.466 1869.82 Q376.466 1876.93 378.271 1880.5 Q380.1 1884.04 383.711 1884.04 Q387.345 1884.04 389.151 1880.5 Q390.98 1876.93 390.98 1869.82 Q390.98 1862.7 389.151 1859.15 Q387.345 1855.59 383.711 1855.59 M383.711 1851.89 Q389.521 1851.89 392.577 1856.49 Q395.656 1861.08 395.656 1869.82 Q395.656 1878.55 392.577 1883.16 Q389.521 1887.74 383.711 1887.74 Q377.901 1887.74 374.822 1883.16 Q371.767 1878.55 371.767 1869.82 Q371.767 1861.08 374.822 1856.49 Q377.901 1851.89 383.711 1851.89 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M1254.54 1852.51 L1272.9 1852.51 L1272.9 1856.45 L1258.82 1856.45 L1258.82 1864.92 Q1259.84 1864.57 1260.86 1864.41 Q1261.88 1864.22 1262.9 1864.22 Q1268.68 1864.22 1272.06 1867.39 Q1275.44 1870.57 1275.44 1875.98 Q1275.44 1881.56 1271.97 1884.66 Q1268.5 1887.74 1262.18 1887.74 Q1260 1887.74 1257.74 1887.37 Q1255.49 1887 1253.08 1886.26 L1253.08 1881.56 Q1255.17 1882.7 1257.39 1883.25 Q1259.61 1883.81 1262.09 1883.81 Q1266.09 1883.81 1268.43 1881.7 Q1270.77 1879.59 1270.77 1875.98 Q1270.77 1872.37 1268.43 1870.26 Q1266.09 1868.16 1262.09 1868.16 Q1260.21 1868.16 1258.34 1868.57 Q1256.49 1868.99 1254.54 1869.87 L1254.54 1852.51 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M1294.66 1855.59 Q1291.05 1855.59 1289.22 1859.15 Q1287.41 1862.7 1287.41 1869.82 Q1287.41 1876.93 1289.22 1880.5 Q1291.05 1884.04 1294.66 1884.04 Q1298.29 1884.04 1300.1 1880.5 Q1301.93 1876.93 1301.93 1869.82 Q1301.93 1862.7 1300.1 1859.15 Q1298.29 1855.59 1294.66 1855.59 M1294.66 1851.89 Q1300.47 1851.89 1303.52 1856.49 Q1306.6 1861.08 1306.6 1869.82 Q1306.6 1878.55 1303.52 1883.16 Q1300.47 1887.74 1294.66 1887.74 Q1288.85 1887.74 1285.77 1883.16 Q1282.71 1878.55 1282.71 1869.82 Q1282.71 1861.08 1285.77 1856.49 Q1288.85 1851.89 1294.66 1851.89 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M2135.58 1883.14 L2143.22 1883.14 L2143.22 1856.77 L2134.91 1858.44 L2134.91 1854.18 L2143.17 1852.51 L2147.85 1852.51 L2147.85 1883.14 L2155.49 1883.14 L2155.49 1887.07 L2135.58 1887.07 L2135.58 1883.14 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M2174.93 1855.59 Q2171.32 1855.59 2169.49 1859.15 Q2167.69 1862.7 2167.69 1869.82 Q2167.69 1876.93 2169.49 1880.5 Q2171.32 1884.04 2174.93 1884.04 Q2178.57 1884.04 2180.37 1880.5 Q2182.2 1876.93 2182.2 1869.82 Q2182.2 1862.7 2180.37 1859.15 Q2178.57 1855.59 2174.93 1855.59 M2174.93 1851.89 Q2180.74 1851.89 2183.8 1856.49 Q2186.88 1861.08 2186.88 1869.82 Q2186.88 1878.55 2183.8 1883.16 Q2180.74 1887.74 2174.93 1887.74 Q2169.12 1887.74 2166.04 1883.16 Q2162.99 1878.55 2162.99 1869.82 Q2162.99 1861.08 2166.04 1856.49 Q2169.12 1851.89 2174.93 1851.89 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M2205.09 1855.59 Q2201.48 1855.59 2199.65 1859.15 Q2197.85 1862.7 2197.85 1869.82 Q2197.85 1876.93 2199.65 1880.5 Q2201.48 1884.04 2205.09 1884.04 Q2208.73 1884.04 2210.53 1880.5 Q2212.36 1876.93 2212.36 1869.82 Q2212.36 1862.7 2210.53 1859.15 Q2208.73 1855.59 2205.09 1855.59 M2205.09 1851.89 Q2210.9 1851.89 2213.96 1856.49 Q2217.04 1861.08 2217.04 1869.82 Q2217.04 1878.55 2213.96 1883.16 Q2210.9 1887.74 2205.09 1887.74 Q2199.28 1887.74 2196.2 1883.16 Q2193.15 1878.55 2193.15 1869.82 Q2193.15 1861.08 2196.2 1856.49 Q2199.28 1851.89 2205.09 1851.89 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M3031.71 1883.14 L3039.35 1883.14 L3039.35 1856.77 L3031.04 1858.44 L3031.04 1854.18 L3039.3 1852.51 L3043.98 1852.51 L3043.98 1883.14 L3051.62 1883.14 L3051.62 1887.07 L3031.71 1887.07 L3031.71 1883.14 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M3061.11 1852.51 L3079.47 1852.51 L3079.47 1856.45 L3065.39 1856.45 L3065.39 1864.
|
|
|
|
"<polyline clip-path=\"url(#clip102)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"303.059,833.976 3152.76,833.976 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip102)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"303.059,321.814 3152.76,321.814 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip100)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"303.059,1818.27 303.059,131.032 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip100)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"303.059,1346.14 321.957,1346.14 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip100)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"303.059,833.976 321.957,833.976 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip100)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"303.059,321.814 321.957,321.814 \"/>\n",
|
|
|
|
"<path clip-path=\"url(#clip100)\" d=\"M117.68 1365.93 L125.319 1365.93 L125.319 1339.57 L117.009 1341.23 L117.009 1336.97 L125.273 1335.31 L129.949 1335.31 L129.949 1365.93 L137.587 1365.93 L137.587 1369.87 L117.68 1369.87 L117.68 1365.93 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M157.032 1338.38 Q153.421 1338.38 151.592 1341.95 Q149.786 1345.49 149.786 1352.62 Q149.786 1359.73 151.592 1363.29 Q153.421 1366.83 157.032 1366.83 Q160.666 1366.83 162.472 1363.29 Q164.3 1359.73 164.3 1352.62 Q164.3 1345.49 162.472 1341.95 Q160.666 1338.38 157.032 1338.38 M157.032 1334.68 Q162.842 1334.68 165.898 1339.29 Q168.976 1343.87 168.976 1352.62 Q168.976 1361.35 165.898 1365.95 Q162.842 1370.54 157.032 1370.54 Q151.222 1370.54 148.143 1365.95 Q145.087 1361.35 145.087 1352.62 Q145.087 1343.87 148.143 1339.29 Q151.222 1334.68 157.032 1334.68 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M168.976 1328.78 L193.088 1328.78 L193.088 1331.98 L168.976 1331.98 L168.976 1328.78 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M201.946 1339.26 L208.153 1339.26 L208.153 1317.84 L201.401 1319.19 L201.401 1315.73 L208.115 1314.38 L211.914 1314.38 L211.914 1339.26 L218.121 1339.26 L218.121 1342.46 L201.946 1342.46 L201.946 1339.26 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M225.794 1337.68 L229.763 1337.68 L229.763 1342.46 L225.794 1342.46 L225.794 1337.68 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M238.076 1314.38 L252.991 1314.38 L252.991 1317.57 L241.555 1317.57 L241.555 1324.46 Q242.383 1324.17 243.21 1324.04 Q244.038 1323.89 244.866 1323.89 Q249.567 1323.89 252.313 1326.47 Q255.059 1329.05 255.059 1333.45 Q255.059 1337.98 252.238 1340.5 Q249.417 1343 244.283 1343 Q242.515 1343 240.671 1342.7 Q238.847 1342.4 236.891 1341.8 L236.891 1337.98 Q238.584 1338.9 240.389 1339.35 Q242.195 1339.8 244.207 1339.8 Q247.461 1339.8 249.361 1338.09 Q251.26 1336.38 251.26 1333.45 Q251.26 1330.51 249.361 1328.8 Q247.461 1327.09 244.207 1327.09 Q242.684 1327.09 241.16 1327.43 Q239.656 1327.77 238.076 1328.48 L238.076 1314.38 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M116.871 853.769 L124.51 853.769 L124.51 827.403 L116.2 829.07 L116.2 824.81 L124.464 823.144 L129.14 823.144 L129.14 853.769 L136.779 853.769 L136.779 857.704 L116.871 857.704 L116.871 853.769 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M156.223 826.222 Q152.612 826.222 150.783 829.787 Q148.978 833.329 148.978 840.459 Q148.978 847.565 150.783 851.13 Q152.612 854.671 156.223 854.671 Q159.857 854.671 161.663 851.13 Q163.492 847.565 163.492 840.459 Q163.492 833.329 161.663 829.787 Q159.857 826.222 156.223 826.222 M156.223 822.519 Q162.033 822.519 165.089 827.125 Q168.167 831.709 168.167 840.459 Q168.167 849.185 165.089 853.792 Q162.033 858.375 156.223 858.375 Q150.413 858.375 147.334 853.792 Q144.279 849.185 144.279 840.459 Q144.279 831.709 147.334 827.125 Q150.413 822.519 156.223 822.519 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M168.167 816.62 L192.279 816.62 L192.279 819.817 L168.167 819.817 L168.167 816.62 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M201.137 827.096 L207.344 827.096 L207.344 805.674 L200.592 807.028 L200.592 803.568 L207.306 802.213 L211.106 802.213 L211.106 827.096 L217.312 827.096 L217.312 830.293 L201.137 830.293 L201.137 827.096 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M224.986 825.516 L228.954 825.516 L228.954 830.293 L224.986 830.293 L224.986 825.516 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M245.355 804.715 Q242.421 804.715 240.935 807.6
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"401.634\" cy=\"178.784\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"419.556\" cy=\"1167.26\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"437.479\" cy=\"1401.98\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"455.402\" cy=\"1426.99\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"473.324\" cy=\"1430.26\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"491.247\" cy=\"1445.74\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"509.169\" cy=\"1437.17\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"527.092\" cy=\"1459.54\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"545.015\" cy=\"674.813\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"562.937\" cy=\"1048.85\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"580.86\" cy=\"836.366\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"598.783\" cy=\"1493.86\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"616.705\" cy=\"1073.27\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"634.628\" cy=\"1492.06\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"652.55\" cy=\"1487.28\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"670.473\" cy=\"1493.88\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"688.396\" cy=\"1497.82\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"706.318\" cy=\"1511.56\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"724.241\" cy=\"1514.69\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"742.164\" cy=\"1516.24\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"760.086\" cy=\"1518.84\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"778.009\" cy=\"1526.02\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"795.931\" cy=\"1528.24\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"813.854\" cy=\"1535.17\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"831.777\" cy=\"1397.69\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"849.699\" cy=\"1545.69\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"867.622\" cy=\"1540.03\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"885.545\" cy=\"1551.33\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"903.467\" cy=\"1557.97\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"921.39\" cy=\"1561.71\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"939.312\" cy=\"1569.39\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"957.235\" cy=\"1584.27\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"975.158\" cy=\"1577.91\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"993.08\" cy=\"1589.77\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1011\" cy=\"1589.88\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1028.93\" cy=\"1590.94\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1046.85\" cy=\"370.469\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1064.77\" cy=\"572.005\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1082.69\" cy=\"1605.35\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1100.62\" cy=\"1035.49\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1118.54\" cy=\"1597.32\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1136.46\" cy=\"1602.22\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1154.38\" cy=\"1606.06\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1172.31\" cy=\"512.195\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1190.23\" cy=\"1085.63\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1208.15\" cy=\"819.841\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1226.07\" cy=\"980.896\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1244\" cy=\"1093.15\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1261.92\" cy=\"1377.43\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1279.84\" cy=\"1370.12\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1297.76\" cy=\"941.608\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1315.69\" cy=\"940.268\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1333.61\" cy=\"1333.17\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1351.53\" cy=\"1374.21\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1369.46\" cy=\"1165.17\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1387.38\" cy=\"1252.15\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1405.3\" cy=\"1368.98\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1423.22\" cy=\"1371.92\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1441.15\" cy=\"1082.02\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1459.07\" cy=\"1370.25\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1476.99\" cy=\"1627.94\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1494.91\" cy=\"893.292\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1512.84\" cy=\"1634.81\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1530.76\" cy=\"1646.97\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1548.68\" cy=\"1040.52\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1566.6\" cy=\"1374\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1584.53\" cy=\"1377.25\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1602.45\" cy=\"1384.2\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1620.37\" cy=\"1373.56\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1638.29\" cy=\"1150.82\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1656.22\" cy=\"1381.93\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1674.14\" cy=\"1381.13\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1692.06\" cy=\"1393.58\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1709.99\" cy=\"1363.16\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1727.91\" cy=\"1389.97\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1745.83\" cy=\"1398.37\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1763.75\" cy=\"1397.76\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1781.68\" cy=\"1397.08\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1799.6\" cy=\"1395.81\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1817.52\" cy=\"1390.9\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1835.44\" cy=\"1670.07\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1853.37\" cy=\"1391.66\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1871.29\" cy=\"1399.02\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1889.21\" cy=\"1396.63\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1907.13\" cy=\"1394.18\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1925.06\" cy=\"1395.34\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1942.98\" cy=\"1226.61\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1960.9\" cy=\"1405.32\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1978.82\" cy=\"1680.19\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1996.75\" cy=\"1682.7\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2014.67\" cy=\"1685.9\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2032.59\" cy=\"1693.78\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2050.51\" cy=\"1389.11\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2068.44\" cy=\"1260.51\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2086.36\" cy=\"1427.27\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2104.28\" cy=\"1431.17\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2122.21\" cy=\"1262.59\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2140.13\" cy=\"1420.79\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2158.05\" cy=\"1434.02\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2175.97\" cy=\"1422.99\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2193.9\" cy=\"1436\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2211.82\" cy=\"1415.66\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2229.74\" cy=\"1412.99\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2247.66\" cy=\"1410.15\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2265.59\" cy=\"1431.83\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2283.51\" cy=\"1433.48\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2301.43\" cy=\"1432.02\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2319.35\" cy=\"1438.4\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2337.28\" cy=\"1429.12\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2355.2\" cy=\"1433.69\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2373.12\" cy=\"1736.31\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2391.04\" cy=\"1428.39\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2408.97\" cy=\"1738.78\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2426.89\" cy=\"1764.48\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2444.81\" cy=\"1184.81\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2462.74\" cy=\"733.877\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2480.66\" cy=\"1390.67\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2498.58\" cy=\"817.789\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2516.5\" cy=\"1283.87\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2534.43\" cy=\"1770.52\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2552.35\" cy=\"1442.37\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2570.27\" cy=\"1759.29\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2588.19\" cy=\"1453.43\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2606.12\" cy=\"1615.39\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2624.04\" cy=\"1448.85\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2641.96\" cy=\"1235.92\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2659.88\" cy=\"1459.49\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2677.81\" cy=\"1391.33\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2695.73\" cy=\"1235.71\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2713.65\" cy=\"1382.92\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2731.57\" cy=\"1238.85\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2749.5\" cy=\"1216.18\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2767.42\" cy=\"1232.45\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2785.34\" cy=\"1413.4\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2803.26\" cy=\"1400.15\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2821.19\" cy=\"1243.36\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2839.11\" cy=\"1248.41\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2857.03\" cy=\"1248.51\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2874.96\" cy=\"1243.66\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2892.88\" cy=\"1457.44\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2910.8\" cy=\"1266.15\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2928.72\" cy=\"1247.46\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2946.65\" cy=\"1245.86\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2964.57\" cy=\"1306.03\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2982.49\" cy=\"1430.7\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"3000.41\" cy=\"1238.99\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"3018.34\" cy=\"1246.04\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"3036.26\" cy=\"1474.74\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"3054.18\" cy=\"1486.26\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"3072.1\" cy=\"1300.82\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"383.711\" cy=\"814.413\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"401.634\" cy=\"813.706\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"419.556\" cy=\"840.817\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"437.479\" cy=\"857.062\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"455.402\" cy=\"856.593\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"473.324\" cy=\"866.9\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"491.247\" cy=\"891.807\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"509.169\" cy=\"936.835\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"527.092\" cy=\"966.167\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"545.015\" cy=\"980.843\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"562.937\" cy=\"979.941\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"580.86\" cy=\"976.902\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"598.783\" cy=\"980.129\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"616.705\" cy=\"991.581\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"634.628\" cy=\"986.131\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"652.55\" cy=\"972.944\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"670.473\" cy=\"978.793\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"688.396\" cy=\"978.835\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"706.318\" cy=\"998.17\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"724.241\" cy=\"1017.32\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"742.164\" cy=\"1018.36\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"760.086\" cy=\"1027.74\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"778.009\" cy=\"1033.34\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"795.931\" cy=\"1037.61\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"813.854\" cy=\"1006.1\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"831.777\" cy=\"1013.47\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"849.699\" cy=\"1035.61\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"867.622\" cy=\"1043.39\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"885.545\" cy=\"1050\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"903.467\" cy=\"1050.55\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"921.39\" cy=\"1042.84\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"939.312\" cy=\"1033.12\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"957.235\" cy=\"1023.77\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"975.158\" cy=\"1045.74\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"993.08\" cy=\"1061.74\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1011\" cy=\"1079.96\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1028.93\" cy=\"1072.52\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1046.85\" cy=\"1073.21\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1064.77\" cy=\"1082.8\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1082.69\" cy=\"1080.02\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1100.62\" cy=\"1083.26\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1118.54\" cy=\"1080.08\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1136.46\" cy=\"1086.51\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1154.38\" cy=\"1079.81\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1172.31\" cy=\"1076.18\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1190.23\" cy=\"1081.81\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1208.15\" cy=\"1082.92\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1226.07\" cy=\"1084.24\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1244\" cy=\"1083.4\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1261.92\" cy=\"1068.04\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1279.84\" cy=\"1085.02\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1297.76\" cy=\"1083.35\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1315.69\" cy=\"1087.52\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1333.61\" cy=\"1088.95\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1351.53\" cy=\"1080.45\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1369.46\" cy=\"1082.33\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1387.38\" cy=\"1084.61\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1405.3\" cy=\"1082.51\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1423.22\" cy=\"1079.78\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1441.15\" cy=\"1094.64\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1459.07\" cy=\"1088.96\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1476.99\" cy=\"1094.58\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1494.91\" cy=\"1088.94\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1512.84\" cy=\"1092.26\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1530.76\" cy=\"1094.35\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1548.68\" cy=\"1097.04\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1566.6\" cy=\"1092.75\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1584.53\" cy=\"1092.48\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1602.45\" cy=\"1092.4\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1620.37\" cy=\"1091.39\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1638.29\" cy=\"1096.82\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1656.22\" cy=\"1093.15\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1674.14\" cy=\"1074.87\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1692.06\" cy=\"1088.28\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1709.99\" cy=\"1083.69\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1727.91\" cy=\"1084.38\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1745.83\" cy=\"1088.57\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1763.75\" cy=\"1083.78\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1781.68\" cy=\"1093.44\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1799.6\" cy=\"1082.33\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1817.52\" cy=\"1080.29\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1835.44\" cy=\"1086.34\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1853.37\" cy=\"1088.01\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1871.29\" cy=\"1091.47\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1889.21\" cy=\"1054.99\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1907.13\" cy=\"1071.02\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1925.06\" cy=\"1076.87\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1942.98\" cy=\"1077.07\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1960.9\" cy=\"1073.43\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1978.82\" cy=\"1080.36\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1996.75\" cy=\"1083.48\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2014.67\" cy=\"1087.68\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2032.59\" cy=\"1092.59\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2050.51\" cy=\"1081.26\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2068.44\" cy=\"1088.2\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2086.36\" cy=\"1087.45\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2104.28\" cy=\"1086.33\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2122.21\" cy=\"1082.92\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2140.13\" cy=\"1089.41\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2158.05\" cy=\"1085.37\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2175.97\" cy=\"1088.8\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2193.9\" cy=\"1078.83\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2211.82\" cy=\"1089.76\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2229.74\" cy=\"1088.36\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2247.66\" cy=\"1076.43\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2265.59\" cy=\"1086.22\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2283.51\" cy=\"1086.28\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2301.43\" cy=\"1080.37\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2319.35\" cy=\"1088.38\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2337.28\" cy=\"1078.44\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2355.2\" cy=\"1082.59\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2373.12\" cy=\"1080.95\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2391.04\" cy=\"1085.56\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2408.97\" cy=\"1083.3\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2426.89\" cy=\"1082.45\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2444.81\" cy=\"1084.49\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2462.74\" cy=\"1074.82\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2480.66\" cy=\"1075.92\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2498.58\" cy=\"1081.95\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2516.5\" cy=\"1090.56\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2534.43\" cy=\"1088.1\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2552.35\" cy=\"1078.82\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2570.27\" cy=\"1082.59\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2588.19\" cy=\"1085.3\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2606.12\" cy=\"1083.6\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2624.04\" cy=\"1087.28\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2641.96\" cy=\"1087.31\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2659.88\" cy=\"1088.05\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2677.81\" cy=\"1091.09\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2695.73\" cy=\"1093.31\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2713.65\" cy=\"1087.94\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2731.57\" cy=\"1083.91\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2749.5\" cy=\"1083.59\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2767.42\" cy=\"1074.32\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2785.34\" cy=\"1084.6\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2803.26\" cy=\"1083.72\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2821.19\" cy=\"1085\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2839.11\" cy=\"1087.48\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2857.03\" cy=\"1078.3\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2874.96\" cy=\"1075.34\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2892.88\" cy=\"1087.05\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2910.8\" cy=\"1076.27\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2928.72\" cy=\"1081\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2946.65\" cy=\"1087.05\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2964.57\" cy=\"1082.43\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2982.49\" cy=\"1079.51\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"3000.41\" cy=\"1083.83\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"3018.34\" cy=\"1086.41\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"3036.26\" cy=\"1093.26\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"3054.18\" cy=\"1095.34\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"3072.1\" cy=\"1096.85\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"383.711\" cy=\"1392.35\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"401.634\" cy=\"1349.78\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"419.556\" cy=\"1361.06\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"437.479\" cy=\"1412.85\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"455.402\" cy=\"1416.63\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"473.324\" cy=\"1397.41\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"491.247\" cy=\"1426.63\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"509.169\" cy=\"1489.43\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"527.092\" cy=\"1507.49\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"545.015\" cy=\"1496.45\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"562.937\" cy=\"1501.46\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"580.86\" cy=\"1512.39\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"598.783\" cy=\"1514.7\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"616.705\" cy=\"1517.23\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"634.628\" cy=\"1520.35\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"652.55\" cy=\"1476.69\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"670.473\" cy=\"1486.68\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"688.396\" cy=\"1489.11\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"706.318\" cy=\"1448.03\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"724.241\" cy=\"1487.79\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"742.164\" cy=\"1486.57\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"760.086\" cy=\"1516.77\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"778.009\" cy=\"1489.48\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"795.931\" cy=\"1497.63\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"813.854\" cy=\"1499.97\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"831.777\" cy=\"1487.69\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"849.699\" cy=\"1505.63\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"867.622\" cy=\"1509.95\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"885.545\" cy=\"1511.27\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"903.467\" cy=\"1517.69\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"921.39\" cy=\"1519.37\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"939.312\" cy=\"1558.84\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"957.235\" cy=\"1554.51\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"975.158\" cy=\"1556.54\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"993.08\" cy=\"1536.26\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1011\" cy=\"1568.22\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1028.93\" cy=\"1565.45\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1046.85\" cy=\"1528.42\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1064.77\" cy=\"1562.22\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1082.69\" cy=\"1551.55\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1100.62\" cy=\"1568.04\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1118.54\" cy=\"1566.42\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1136.46\" cy=\"1559.63\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1154.38\" cy=\"1571.25\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1172.31\" cy=\"1560.62\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1190.23\" cy=\"1566.6\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1208.15\" cy=\"1566.56\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1226.07\" cy=\"1561.45\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1244\" cy=\"1564.83\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1261.92\" cy=\"1567.96\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1279.84\" cy=\"1540.08\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1297.76\" cy=\"1567.54\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1315.69\" cy=\"1542.14\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1333.61\" cy=\"1565.86\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1351.53\" cy=\"1573.42\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1369.46\" cy=\"1538.55\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1387.38\" cy=\"1568.84\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1405.3\" cy=\"1576.72\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1423.22\" cy=\"1561.36\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1441.15\" cy=\"1554.7\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1459.07\" cy=\"1551.65\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1476.99\" cy=\"1564.73\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1494.91\" cy=\"1564.16\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1512.84\" cy=\"1563.27\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1530.76\" cy=\"1536.94\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1548.68\" cy=\"1554.6\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1566.6\" cy=\"1535.76\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1584.53\" cy=\"1563.42\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1602.45\" cy=\"1558.25\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1620.37\" cy=\"1561.25\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1638.29\" cy=\"1556.3\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1656.22\" cy=\"1571.49\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1674.14\" cy=\"1561.68\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1692.06\" cy=\"1537.33\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1709.99\" cy=\"1556.17\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1727.91\" cy=\"1566.95\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1745.83\" cy=\"1577.47\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1763.75\" cy=\"1570.85\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1781.68\" cy=\"1564.13\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1799.6\" cy=\"1573.59\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1817.52\" cy=\"1564.06\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1835.44\" cy=\"1567.19\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1853.37\" cy=\"1573.17\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1871.29\" cy=\"1563.87\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1889.21\" cy=\"1552.34\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1907.13\" cy=\"1561.09\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1925.06\" cy=\"1539.89\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1942.98\" cy=\"1564.56\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1960.9\" cy=\"1539.05\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1978.82\" cy=\"1543.08\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"1996.75\" cy=\"1530.35\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2014.67\" cy=\"1535.25\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2032.59\" cy=\"1533.31\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2050.51\" cy=\"1533.13\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2068.44\" cy=\"1530.85\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2086.36\" cy=\"1529.51\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2104.28\" cy=\"1536.25\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2122.21\" cy=\"1536.23\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2140.13\" cy=\"1543.74\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2158.05\" cy=\"1564.6\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2175.97\" cy=\"1569.8\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2193.9\" cy=\"1574.93\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2211.82\" cy=\"1570.92\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2229.74\" cy=\"1517.8\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2247.66\" cy=\"1545.66\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2265.59\" cy=\"1506.11\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2283.51\" cy=\"1482.12\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2301.43\" cy=\"1545.7\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2319.35\" cy=\"1542.72\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2337.28\" cy=\"1542.78\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2355.2\" cy=\"1517.68\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2373.12\" cy=\"1525.24\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2391.04\" cy=\"1504.9\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2408.97\" cy=\"1539.34\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2426.89\" cy=\"1529.84\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2444.81\" cy=\"1551.38\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2462.74\" cy=\"1523.28\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2480.66\" cy=\"1520.27\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2498.58\" cy=\"1529.94\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2516.5\" cy=\"1533.57\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2534.43\" cy=\"1561.97\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2552.35\" cy=\"1559.73\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2570.27\" cy=\"1558.53\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2588.19\" cy=\"1537.98\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2606.12\" cy=\"1540.36\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2624.04\" cy=\"1528.2\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2641.96\" cy=\"1542.43\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2659.88\" cy=\"1538.01\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2677.81\" cy=\"1536.88\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2695.73\" cy=\"1538.49\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2713.65\" cy=\"1502.66\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2731.57\" cy=\"1497.5\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2749.5\" cy=\"1542.68\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2767.42\" cy=\"1494.94\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2785.34\" cy=\"1554.85\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2803.26\" cy=\"1479.16\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2821.19\" cy=\"1547.55\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2839.11\" cy=\"1549.5\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2857.03\" cy=\"1545.04\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2874.96\" cy=\"1472.43\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2892.88\" cy=\"1510.96\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2910.8\" cy=\"1534.63\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2928.72\" cy=\"1468.21\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2946.65\" cy=\"1525.91\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2964.57\" cy=\"1514.91\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"2982.49\" cy=\"1500.66\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"3000.41\" cy=\"1491.16\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"3018.34\" cy=\"1566.64\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"3036.26\" cy=\"1564.32\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"3054.18\" cy=\"1568.82\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip102)\" cx=\"3072.1\" cy=\"1562.58\" r=\"14.4\" fill=\"#3da44d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<path clip-path=\"url(#clip100)\" d=\"M594.885 2204.92 L2860.93 2204.92 L2860.93 2010.52 L594.885 2010.52 Z\" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip100)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"594.885,2204.92 2860.93,2204.92 2860.93,2010.52 594.885,2010.52 594.885,2204.92 \"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip100)\" cx=\"721.539\" cy=\"2075.32\" r=\"25.6\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"8.53333\"/>\n",
|
|
|
|
"<path clip-path=\"url(#clip100)\" d=\"M848.192 2053.72 L873.018 2053.72 L873.018 2058.64 L854.037 2058.64 L854.037 2071.37 L871.166 2071.37 L871.166 2076.29 L854.037 2076.29 L854.037 2096.92 L848.192 2096.92 L848.192 2053.72 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M878.255 2084.13 L878.255 2064.51 L883.579 2064.51 L883.579 2083.93 Q883.579 2088.53 885.373 2090.84 Q887.167 2093.13 890.755 2093.13 Q895.066 2093.13 897.555 2090.38 Q900.072 2087.63 900.072 2082.89 L900.072 2064.51 L905.396 2064.51 L905.396 2096.92 L900.072 2096.92 L900.072 2091.94 Q898.134 2094.89 895.558 2096.34 Q893.012 2097.76 889.627 2097.76 Q884.042 2097.76 881.149 2094.29 Q878.255 2090.81 878.255 2084.13 M891.652 2063.73 L891.652 2063.73 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M943.301 2077.36 L943.301 2096.92 L937.977 2096.92 L937.977 2077.53 Q937.977 2072.93 936.183 2070.65 Q934.389 2068.36 930.801 2068.36 Q926.49 2068.36 924.002 2071.11 Q921.513 2073.86 921.513 2078.6 L921.513 2096.92 L916.16 2096.92 L916.16 2064.51 L921.513 2064.51 L921.513 2069.55 Q923.423 2066.62 925.998 2065.18 Q928.602 2063.73 931.988 2063.73 Q937.572 2063.73 940.437 2067.2 Q943.301 2070.65 943.301 2077.36 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M977.242 2065.76 L977.242 2070.73 Q974.985 2069.49 972.699 2068.88 Q970.442 2068.25 968.127 2068.25 Q962.948 2068.25 960.083 2071.54 Q957.219 2074.81 957.219 2080.75 Q957.219 2086.68 960.083 2089.98 Q962.948 2093.25 968.127 2093.25 Q970.442 2093.25 972.699 2092.64 Q974.985 2092 977.242 2090.76 L977.242 2095.68 Q975.014 2096.72 972.612 2097.24 Q970.24 2097.76 967.549 2097.76 Q960.228 2097.76 955.917 2093.16 Q951.606 2088.56 951.606 2080.75 Q951.606 2072.82 955.946 2068.27 Q960.315 2063.73 967.896 2063.73 Q970.355 2063.73 972.699 2064.25 Q975.043 2064.74 977.242 2065.76 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M991.767 2055.31 L991.767 2064.51 L1002.73 2064.51 L1002.73 2068.65 L991.767 2068.65 L991.767 2086.24 Q991.767 2090.21 992.838 2091.34 Q993.937 2092.46 997.265 2092.46 L1002.73 2092.46 L1002.73 2096.92 L997.265 2096.92 Q991.102 2096.92 988.758 2094.63 Q986.414 2092.32 986.414 2086.24 L986.414 2068.65 L982.508 2068.65 L982.508 2064.51 L986.414 2064.51 L986.414 2055.31 L991.767 2055.31 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M1009.74 2064.51 L1015.06 2064.51 L1015.06 2096.92 L1009.74 2096.92 L1009.74 2064.51 M1009.74 2051.9 L1015.06 2051.9 L1015.06 2058.64 L1009.74 2058.64 L1009.74 2051.9 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M1038.76 2068.25 Q1034.48 2068.25 1031.99 2071.6 Q1029.5 2074.93 1029.5 2080.75 Q1029.5 2086.56 1031.96 2089.92 Q1034.45 2093.25 1038.76 2093.25 Q1043.01 2093.25 1045.5 2089.89 Q1047.99 2086.53 1047.99 2080.75 Q1047.99 2074.99 1045.5 2071.63 Q1043.01 2068.25 1038.76 2068.25 M1038.76 2063.73 Q1045.7 2063.73 1049.67 2068.25 Q1053.63 2072.76 1053.63 2080.75 Q1053.63 2088.7 1049.67 2093.25 Q1045.7 2097.76 1038.76 2097.76 Q1031.78 2097.76 1027.82 2093.25 Q1023.89 2088.7 1023.89 2080.75 Q1023.89 2072.76 1027.82 2068.25 Q1031.78 2063.73 1038.76 2063.73 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M1089.39 2077.36 L1089.39 2096.92 L1084.07 2096.92 L1084.07 2077.53 Q1084.07 2072.93 1082.28 2070.65 Q1080.48 2068.36 1076.89 2068.36 Q1072.58 2068.36 1070.09 2071.11 Q1067.61 2073.86 1067.61 2078.6 L1067.61 2096.92 L1062.25 2096.92 L1062.25 2064.51 L1067.61 2064.51 L1067.61 2069.55 Q1069.52 2066.62 1072.09 2065.18 Q1074.7 2063.73 1078.08 2063.73 Q1083.67 2063.73 1086.53 2067.2 Q1089.39 2070.65 1089.39 2077.36 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M1140.18 2080.34 Q1140.18 2074.55 1137.77 2071.37 Q1135.4 2068.19 1131.09 2068.19 Q1126.
|
|
|
|
"<path clip-path=\"url(#clip100)\" d=\"M1993.19 2055.14 L1993.19 2060.84 Q1989.86 2059.25 1986.91 2058.47 Q1983.96 2057.68 1981.21 2057.68 Q1976.44 2057.68 1973.83 2059.54 Q1971.26 2061.39 1971.26 2064.8 Q1971.26 2067.67 1972.96 2069.14 Q1974.7 2070.59 1979.5 2071.49 L1983.03 2072.21 Q1989.57 2073.45 1992.67 2076.61 Q1995.79 2079.73 1995.79 2085 Q1995.79 2091.28 1991.57 2094.52 Q1987.37 2097.76 1979.24 2097.76 Q1976.18 2097.76 1972.7 2097.06 Q1969.26 2096.37 1965.56 2095.01 L1965.56 2088.99 Q1969.11 2090.99 1972.53 2092 Q1975.94 2093.01 1979.24 2093.01 Q1984.25 2093.01 1986.97 2091.05 Q1989.69 2089.08 1989.69 2085.43 Q1989.69 2082.25 1987.72 2080.46 Q1985.78 2078.66 1981.33 2077.76 L1977.77 2077.07 Q1971.23 2075.77 1968.3 2072.99 Q1965.38 2070.21 1965.38 2065.26 Q1965.38 2059.54 1969.4 2056.24 Q1973.46 2052.94 1980.54 2052.94 Q1983.58 2052.94 1986.74 2053.49 Q1989.89 2054.04 1993.19 2055.14 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M2004.68 2064.51 L2010 2064.51 L2010 2096.92 L2004.68 2096.92 L2004.68 2064.51 M2004.68 2051.9 L2010 2051.9 L2010 2058.64 L2004.68 2058.64 L2004.68 2051.9 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M2048.08 2077.36 L2048.08 2096.92 L2042.75 2096.92 L2042.75 2077.53 Q2042.75 2072.93 2040.96 2070.65 Q2039.17 2068.36 2035.58 2068.36 Q2031.27 2068.36 2028.78 2071.11 Q2026.29 2073.86 2026.29 2078.6 L2026.29 2096.92 L2020.94 2096.92 L2020.94 2064.51 L2026.29 2064.51 L2026.29 2069.55 Q2028.2 2066.62 2030.78 2065.18 Q2033.38 2063.73 2036.77 2063.73 Q2042.35 2063.73 2045.21 2067.2 Q2048.08 2070.65 2048.08 2077.36 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M2080.02 2080.34 Q2080.02 2074.55 2077.62 2071.37 Q2075.25 2068.19 2070.94 2068.19 Q2066.65 2068.19 2064.25 2071.37 Q2061.88 2074.55 2061.88 2080.34 Q2061.88 2086.1 2064.25 2089.28 Q2066.65 2092.46 2070.94 2092.46 Q2075.25 2092.46 2077.62 2089.28 Q2080.02 2086.1 2080.02 2080.34 M2085.35 2092.9 Q2085.35 2101.17 2081.67 2105.2 Q2078 2109.25 2070.42 2109.25 Q2067.61 2109.25 2065.12 2108.81 Q2062.63 2108.41 2060.29 2107.54 L2060.29 2102.36 Q2062.63 2103.63 2064.92 2104.24 Q2067.2 2104.85 2069.58 2104.85 Q2074.81 2104.85 2077.42 2102.1 Q2080.02 2099.38 2080.02 2093.85 L2080.02 2091.22 Q2078.37 2094.08 2075.8 2095.5 Q2073.22 2096.92 2069.64 2096.92 Q2063.67 2096.92 2060.03 2092.38 Q2056.38 2087.83 2056.38 2080.34 Q2056.38 2072.82 2060.03 2068.27 Q2063.67 2063.73 2069.64 2063.73 Q2073.22 2063.73 2075.8 2065.15 Q2078.37 2066.57 2080.02 2069.43 L2080.02 2064.51 L2085.35 2064.51 L2085.35 2092.9 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M2096.31 2051.9 L2101.64 2051.9 L2101.64 2096.92 L2096.31 2096.92 L2096.31 2051.9 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M2140.5 2079.39 L2140.5 2081.99 L2116.02 2081.99 Q2116.37 2087.49 2119.32 2090.38 Q2122.3 2093.25 2127.59 2093.25 Q2130.66 2093.25 2133.52 2092.49 Q2136.42 2091.74 2139.25 2090.24 L2139.25 2095.27 Q2136.39 2096.49 2133.38 2097.12 Q2130.37 2097.76 2127.27 2097.76 Q2119.52 2097.76 2114.98 2093.25 Q2110.46 2088.73 2110.46 2081.03 Q2110.46 2073.08 2114.74 2068.42 Q2119.06 2063.73 2126.35 2063.73 Q2132.89 2063.73 2136.68 2067.96 Q2140.5 2072.15 2140.5 2079.39 M2135.17 2077.82 Q2135.12 2073.45 2132.71 2070.85 Q2130.34 2068.25 2126.41 2068.25 Q2121.95 2068.25 2119.26 2070.76 Q2116.6 2073.28 2116.19 2077.85 L2135.17 2077.82 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M2173.34 2055.31 L2173.34 2064.51 L2184.3 2064.51 L2184.3 2068.65 L2173.34 2068.65 L2173.34 2086.24 Q2173.34 2090.21 2174.41 2091.34 Q2175.51 2092.46 2178.84 2092.46 L2184.3 2092.46 L2184.3 2096.92 L2178.84 2096.92 Q2172.67 2096.92 2170.33 2094.63 Q2167.99 2092.32 2167.99 2086.24 L2167.99 2068.65 L2164.08 2068.65 L2164.08 2064.51 L2167.99 2064.51 L2167.99 2055.31 L2173.34 2055.31 Z\" fill=\"#0000
|
|
|
|
"<path clip-path=\"url(#clip100)\" d=\"M849.031 2156.8 L858.579 2156.8 L858.579 2123.84 L848.192 2125.93 L848.192 2120.6 L858.522 2118.52 L864.366 2118.52 L864.366 2156.8 L873.915 2156.8 L873.915 2161.72 L849.031 2161.72 L849.031 2156.8 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M890.755 2156.8 L911.154 2156.8 L911.154 2161.72 L883.724 2161.72 L883.724 2156.8 Q887.051 2153.36 892.781 2147.57 Q898.539 2141.75 900.014 2140.08 Q902.821 2136.92 903.921 2134.75 Q905.049 2132.55 905.049 2130.44 Q905.049 2127 902.619 2124.83 Q900.217 2122.66 896.34 2122.66 Q893.591 2122.66 890.524 2123.61 Q887.485 2124.57 884.013 2126.51 L884.013 2120.6 Q887.543 2119.19 890.61 2118.46 Q893.678 2117.74 896.224 2117.74 Q902.937 2117.74 906.93 2121.1 Q910.923 2124.45 910.923 2130.06 Q910.923 2132.73 909.91 2135.13 Q908.926 2137.5 906.293 2140.74 Q905.57 2141.58 901.693 2145.6 Q897.815 2149.6 890.755 2156.8 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M919.98 2143.11 L935.576 2143.11 L935.576 2147.86 L919.98 2147.86 L919.98 2143.11 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M949.32 2120.11 L949.32 2129.31 L960.286 2129.31 L960.286 2133.45 L949.32 2133.45 L949.32 2151.04 Q949.32 2155.01 950.39 2156.14 Q951.49 2157.26 954.817 2157.26 L960.286 2157.26 L960.286 2161.72 L954.817 2161.72 Q948.654 2161.72 946.31 2159.43 Q943.967 2157.12 943.967 2151.04 L943.967 2133.45 L940.06 2133.45 L940.06 2129.31 L943.967 2129.31 L943.967 2120.11 L949.32 2120.11 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M994.227 2142.16 L994.227 2161.72 L988.903 2161.72 L988.903 2142.33 Q988.903 2137.73 987.109 2135.45 Q985.315 2133.16 981.727 2133.16 Q977.416 2133.16 974.927 2135.91 Q972.439 2138.66 972.439 2143.4 L972.439 2161.72 L967.086 2161.72 L967.086 2116.7 L972.439 2116.7 L972.439 2134.35 Q974.348 2131.42 976.924 2129.98 Q979.528 2128.53 982.913 2128.53 Q988.498 2128.53 991.362 2132 Q994.227 2135.45 994.227 2142.16 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M1023.62 2134.29 Q1022.73 2133.77 1021.66 2133.54 Q1020.62 2133.28 1019.34 2133.28 Q1014.83 2133.28 1012.4 2136.23 Q1010 2139.15 1010 2144.65 L1010 2161.72 L1004.64 2161.72 L1004.64 2129.31 L1010 2129.31 L1010 2134.35 Q1011.67 2131.4 1014.37 2129.98 Q1017.06 2128.53 1020.9 2128.53 Q1021.45 2128.53 1022.12 2128.62 Q1022.79 2128.68 1023.6 2128.82 L1023.62 2134.29 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M1055.63 2144.19 L1055.63 2146.79 L1031.15 2146.79 Q1031.5 2152.29 1034.45 2155.18 Q1037.43 2158.05 1042.72 2158.05 Q1045.79 2158.05 1048.65 2157.29 Q1051.55 2156.54 1054.38 2155.04 L1054.38 2160.07 Q1051.52 2161.29 1048.51 2161.92 Q1045.5 2162.56 1042.4 2162.56 Q1034.65 2162.56 1030.11 2158.05 Q1025.59 2153.53 1025.59 2145.83 Q1025.59 2137.88 1029.87 2133.22 Q1034.19 2128.53 1041.48 2128.53 Q1048.02 2128.53 1051.81 2132.76 Q1055.63 2136.95 1055.63 2144.19 M1050.3 2142.62 Q1050.25 2138.25 1047.84 2135.65 Q1045.47 2133.05 1041.54 2133.05 Q1037.08 2133.05 1034.39 2135.56 Q1031.73 2138.08 1031.32 2142.65 L1050.3 2142.62 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip100)\" d=\"M1079.09 2145.43 Q1072.64 2145.43 1070.15 2146.91 Q1067.66 2148.38 1067.66 2151.94 Q1067.66 2154.78 1069.52 2156.45 Q1071.4 2158.1 1074.61 2158.1 Q1079.04 2158.1 1081.7 2154.98 Q1084.39 2151.82 1084.39 2146.62 L1084.39 2145.43 L1079.09 2145.43 M1089.71 2143.23 L1089.71 2161.72 L1084.39 2161.72 L1084.39 2156.8 Q1082.57 2159.75 1079.85 2161.17 Q1077.13 2162.56 1073.19 2162.56 Q1068.21 2162.56 1065.26 2159.78 Q1062.34 2156.97 1062.34 2152.29 Q1062.34 2146.82 1065.99 2144.04 Q1069.66 2141.26 1076.92 2141.26 L1084.39 2141.26 L1084.39 2140.74 Q1084.39 2137.07 1081.96 2135.07 Q1079.56 2133.05 1075.19 2133.05 Q1072.41 2133.05 1069.78 2133.71 Q1067.14 2134.38 1064.71
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"metadata": {},
|
|
|
|
"output_type": "display_data"
|
|
|
|
}
|
|
|
|
],
|
2023-12-18 14:31:52 +01:00
|
|
|
"source": [
|
|
|
|
"# plot data\n",
|
|
|
|
"using Plots\n",
|
|
|
|
"using StatsPlots\n",
|
|
|
|
"\n",
|
|
|
|
"img = @df df scatter(\n",
|
|
|
|
" :operations, \n",
|
|
|
|
" [:gen_func_t, :cpu_st_t, :cpu_mt_t], \n",
|
|
|
|
" label=[\"Function generation (s)\" \"Single threaded execution (s)\" \"$(Threads.nthreads())-threaded execution (s)\"], \n",
|
2024-03-06 23:44:47 +01:00
|
|
|
" title=\"$(beautify_title(string(process))) using $optimizer ($(n_inputs) inputs)\",\n",
|
2023-12-18 14:31:52 +01:00
|
|
|
" linewidth=2,\n",
|
|
|
|
" xlabel=\"optimizer steps\",\n",
|
|
|
|
" ylabel=\"time (s)\",\n",
|
|
|
|
" yscale=:log10,\n",
|
2024-03-06 23:44:47 +01:00
|
|
|
" legend=:outerbottom,\n",
|
|
|
|
" legendcolumns=2,\n",
|
|
|
|
" legend_font_pointsize=10,\n",
|
2023-12-18 14:31:52 +01:00
|
|
|
" minorgrid=true,\n",
|
|
|
|
" size=(800, 600),\n",
|
|
|
|
" fmt=:pdf\n",
|
|
|
|
")\n",
|
|
|
|
"\n",
|
|
|
|
"img"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"cell_type": "code",
|
2024-03-06 23:44:47 +01:00
|
|
|
"execution_count": 6,
|
2023-12-18 14:31:52 +01:00
|
|
|
"metadata": {},
|
2024-03-06 23:44:47 +01:00
|
|
|
"outputs": [
|
|
|
|
{
|
|
|
|
"data": {
|
|
|
|
"image/png": "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
|
|
|
|
"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=\"800\" height=\"600\" viewBox=\"0 0 3200 2400\">\n",
|
|
|
|
"<defs>\n",
|
|
|
|
" <clipPath id=\"clip150\">\n",
|
|
|
|
" <rect x=\"0\" y=\"0\" width=\"3200\" height=\"2400\"/>\n",
|
|
|
|
" </clipPath>\n",
|
|
|
|
"</defs>\n",
|
|
|
|
"<path clip-path=\"url(#clip150)\" d=\"M0 2400 L3200 2400 L3200 0 L0 0 Z\" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
|
|
|
|
"<defs>\n",
|
|
|
|
" <clipPath id=\"clip151\">\n",
|
|
|
|
" <rect x=\"640\" y=\"0\" width=\"2241\" height=\"2241\"/>\n",
|
|
|
|
" </clipPath>\n",
|
|
|
|
"</defs>\n",
|
|
|
|
"<path clip-path=\"url(#clip150)\" d=\"M180.015 1883.07 L3152.76 1883.07 L3152.76 131.032 L180.015 131.032 Z\" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
|
|
|
|
"<defs>\n",
|
|
|
|
" <clipPath id=\"clip152\">\n",
|
|
|
|
" <rect x=\"180\" y=\"131\" width=\"2974\" height=\"1753\"/>\n",
|
|
|
|
" </clipPath>\n",
|
|
|
|
"</defs>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip152)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"264.149,1883.07 264.149,131.032 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip152)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"1198.97,1883.07 1198.97,131.032 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip152)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"2133.8,1883.07 2133.8,131.032 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip152)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"3068.62,1883.07 3068.62,131.032 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"180.015,1883.07 3152.76,1883.07 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"264.149,1883.07 264.149,1867.11 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"1198.97,1883.07 1198.97,1867.11 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"2133.8,1883.07 2133.8,1867.11 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"3068.62,1883.07 3068.62,1867.11 \"/>\n",
|
|
|
|
"<path clip-path=\"url(#clip150)\" d=\"M264.149 1920.39 Q260.538 1920.39 258.709 1923.95 Q256.904 1927.5 256.904 1934.62 Q256.904 1941.73 258.709 1945.3 Q260.538 1948.84 264.149 1948.84 Q267.783 1948.84 269.589 1945.3 Q271.417 1941.73 271.417 1934.62 Q271.417 1927.5 269.589 1923.95 Q267.783 1920.39 264.149 1920.39 M264.149 1916.69 Q269.959 1916.69 273.015 1921.29 Q276.093 1925.88 276.093 1934.62 Q276.093 1943.35 273.015 1947.96 Q269.959 1952.54 264.149 1952.54 Q258.339 1952.54 255.26 1947.96 Q252.205 1943.35 252.205 1934.62 Q252.205 1925.88 255.26 1921.29 Q258.339 1916.69 264.149 1916.69 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M1173.67 1917.31 L1192.03 1917.31 L1192.03 1921.25 L1177.95 1921.25 L1177.95 1929.72 Q1178.97 1929.37 1179.99 1929.21 Q1181.01 1929.02 1182.03 1929.02 Q1187.82 1929.02 1191.2 1932.19 Q1194.58 1935.37 1194.58 1940.78 Q1194.58 1946.36 1191.1 1949.46 Q1187.63 1952.54 1181.31 1952.54 Q1179.14 1952.54 1176.87 1952.17 Q1174.62 1951.8 1172.21 1951.06 L1172.21 1946.36 Q1174.3 1947.5 1176.52 1948.05 Q1178.74 1948.61 1181.22 1948.61 Q1185.22 1948.61 1187.56 1946.5 Q1189.9 1944.39 1189.9 1940.78 Q1189.9 1937.17 1187.56 1935.06 Q1185.22 1932.96 1181.22 1932.96 Q1179.34 1932.96 1177.47 1933.37 Q1175.62 1933.79 1173.67 1934.67 L1173.67 1917.31 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M1213.79 1920.39 Q1210.18 1920.39 1208.35 1923.95 Q1206.54 1927.5 1206.54 1934.62 Q1206.54 1941.73 1208.35 1945.3 Q1210.18 1948.84 1213.79 1948.84 Q1217.42 1948.84 1219.23 1945.3 Q1221.06 1941.73 1221.06 1934.62 Q1221.06 1927.5 1219.23 1923.95 Q1217.42 1920.39 1213.79 1920.39 M1213.79 1916.69 Q1219.6 1916.69 1222.65 1921.29 Q1225.73 1925.88 1225.73 1934.62 Q1225.73 1943.35 1222.65 1947.96 Q1219.6 1952.54 1213.79 1952.54 Q1207.98 1952.54 1204.9 1947.96 Q1201.84 1943.35 1201.84 1934.62 Q1201.84 1925.88 1204.9 1921.29 Q1207.98 1916.69 1213.79 1916.69 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2093.4 1947.94 L2101.04 1947.94 L2101.04 1921.57 L2092.73 1923.24 L2092.73 1918.98 L2101 1917.31 L2105.67 1917.31 L2105.67 1947.94 L2113.31 1947.94 L2113.31 1951.87 L2093.4 1951.87 L2093.4 1947.94 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2132.76 1920.39 Q2129.14 1920.39 2127.32 1923.95 Q2125.51 1927.5 2125.51 1934.62 Q2125.51 1941.73 2127.32 1945.3 Q2129.14 1948.84 2132.76 1948.84 Q2136.39 1948.84 2138.2 1945.3 Q2140.02 1941.73 2140.02 1934.62 Q2140.02 1927.5 2138.2 1923.95 Q2136.39 1920.39 2132.76 1920.39 M2132.76 1916.69 Q2138.57 1916.69 2141.62 1921.29 Q2144.7 1925.88 2144.7 1934.62 Q2144.7 1943.35 2141.62 1947.96 Q2138.57 1952.54 2132.76 1952.54 Q2126.95 1952.54 2123.87 1947.96 Q2120.81 1943.35 2120.81 1934.62 Q2120.81 1925.88 2123.87 1921.29 Q2126.95 1916.69 2132.76 1916.69 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2162.92 1920.39 Q2159.31 1920.39 2157.48 1923.95 Q2155.67 1927.5 2155.67 1934.62 Q2155.67 1941.73 2157.48 1945.3 Q2159.31 1948.84 2162.92 1948.84 Q2166.55 1948.84 2168.36 1945.3 Q2170.19 1941.73 2170.19 1934.62 Q2170.19 1927.5 2168.36 1923.95 Q2166.55 1920.39 2162.92 1920.39 M2162.92 1916.69 Q2168.73 1916.69 2171.78 1921.29 Q2174.86 1925.88 2174.86 1934.62 Q2174.86 1943.35 2171.78 1947.96 Q2168.73 1952.54 2162.92 1952.54 Q2157.11 1952.54 2154.03 1947.96 Q2150.97 1943.35 2150.97 1934.62 Q2150.97 1925.88 2154.03 1921.29 Q2157.11 1916.69 2162.92 1916.69 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M3028.23 1947.94 L3035.87 1947.94 L3035.87 1921.57 L3027.56 1923.24 L3027.56 1918.98 L3035.82 1917.31 L3040.5 1917.31 L3040.5 1947.94 L3048.14 1947.94 L3048.14 1951.87 L3028.23 1951.87 L3028.23 1947.94 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M3057.63 1917.31 L3075.98 1917.31 L3075.98 1921.25 L3061.91 1921.25 L3061.91
|
|
|
|
"<polyline clip-path=\"url(#clip152)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"180.015,1544.61 3152.76,1544.61 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip152)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"180.015,1206.15 3152.76,1206.15 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip152)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"180.015,867.69 3152.76,867.69 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip152)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"180.015,529.23 3152.76,529.23 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip152)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"180.015,190.77 3152.76,190.77 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"180.015,1883.07 180.015,131.032 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"180.015,1883.07 198.912,1883.07 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"180.015,1544.61 198.912,1544.61 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"180.015,1206.15 198.912,1206.15 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"180.015,867.69 198.912,867.69 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"180.015,529.23 198.912,529.23 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"180.015,190.77 198.912,190.77 \"/>\n",
|
|
|
|
"<path clip-path=\"url(#clip150)\" d=\"M120.07 1868.87 Q116.459 1868.87 114.631 1872.43 Q112.825 1875.98 112.825 1883.1 Q112.825 1890.21 114.631 1893.78 Q116.459 1897.32 120.07 1897.32 Q123.705 1897.32 125.51 1893.78 Q127.339 1890.21 127.339 1883.1 Q127.339 1875.98 125.51 1872.43 Q123.705 1868.87 120.07 1868.87 M120.07 1865.17 Q125.881 1865.17 128.936 1869.77 Q132.015 1874.36 132.015 1883.1 Q132.015 1891.83 128.936 1896.44 Q125.881 1901.02 120.07 1901.02 Q114.26 1901.02 111.182 1896.44 Q108.126 1891.83 108.126 1883.1 Q108.126 1874.36 111.182 1869.77 Q114.26 1865.17 120.07 1865.17 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M50.5569 1557.96 L58.1958 1557.96 L58.1958 1531.59 L49.8856 1533.26 L49.8856 1529 L58.1495 1527.33 L62.8254 1527.33 L62.8254 1557.96 L70.4642 1557.96 L70.4642 1561.89 L50.5569 1561.89 L50.5569 1557.96 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M89.9086 1530.41 Q86.2975 1530.41 84.4688 1533.97 Q82.6632 1537.52 82.6632 1544.64 Q82.6632 1551.75 84.4688 1555.32 Q86.2975 1558.86 89.9086 1558.86 Q93.5428 1558.86 95.3483 1555.32 Q97.177 1551.75 97.177 1544.64 Q97.177 1537.52 95.3483 1533.97 Q93.5428 1530.41 89.9086 1530.41 M89.9086 1526.71 Q95.7187 1526.71 98.7743 1531.31 Q101.853 1535.9 101.853 1544.64 Q101.853 1553.37 98.7743 1557.98 Q95.7187 1562.56 89.9086 1562.56 Q84.0984 1562.56 81.0197 1557.98 Q77.9642 1553.37 77.9642 1544.64 Q77.9642 1535.9 81.0197 1531.31 Q84.0984 1526.71 89.9086 1526.71 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M120.07 1530.41 Q116.459 1530.41 114.631 1533.97 Q112.825 1537.52 112.825 1544.64 Q112.825 1551.75 114.631 1555.32 Q116.459 1558.86 120.07 1558.86 Q123.705 1558.86 125.51 1555.32 Q127.339 1551.75 127.339 1544.64 Q127.339 1537.52 125.51 1533.97 Q123.705 1530.41 120.07 1530.41 M120.07 1526.71 Q125.881 1526.71 128.936 1531.31 Q132.015 1535.9 132.015 1544.64 Q132.015 1553.37 128.936 1557.98 Q125.881 1562.56 120.07 1562.56 Q114.26 1562.56 111.182 1557.98 Q108.126 1553.37 108.126 1544.64 Q108.126 1535.9 111.182 1531.31 Q114.26 1526.71 120.07 1526.71 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M53.7745 1219.5 L70.0939 1219.5 L70.0939 1223.43 L48.1495 1223.43 L48.1495 1219.5 Q50.8115 1216.74 55.3949 1212.11 Q60.0013 1207.46 61.1819 1206.12 Q63.4272 1203.59 64.3068 1201.86 Q65.2096 1200.1 65.2096 1198.41 Q65.2096 1195.65 63.2652 1193.92 Q61.3439 1192.18 58.2421 1192.18 Q56.043 1192.18 53.5893 1192.94 Q51.1588 1193.71 48.381 1195.26 L48.381 1190.54 Q51.2051 1189.4 53.6588 1188.82 Q56.1124 1188.25 58.1495 1188.25 Q63.5198 1188.25 66.7142 1190.93 Q69.9087 1193.62 69.9087 1198.11 Q69.9087 1200.24 69.0985 1202.16 Q68.3115 1204.06 66.205 1206.65 Q65.6263 1207.32 62.5245 1210.54 Q59.4226 1213.73 53.7745 1219.5 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M89.9086 1191.95 Q86.2975 1191.95 84.4688 1195.51 Q82.6632 1199.06 82.6632 1206.18 Q82.6632 1213.29 84.4688 1216.86 Q86.2975 1220.4 89.9086 1220.4 Q93.5428 1220.4 95.3483 1216.86 Q97.177 1213.29 97.177 1206.18 Q97.177 1199.06 95.3483 1195.51 Q93.5428 1191.95 89.9086 1191.95 M89.9086 1188.25 Q95.7187 1188.25 98.7743 1192.85 Q101.853 1197.44 101.853 1206.18 Q101.853 1214.91 98.7743 1219.52 Q95.7187 1224.1 89.9086 1224.1 Q84.0984 1224.1 81.0197 1219.52 Q77.9642 1214.91 77.9642 1206.18 Q77.9642 1197.44 81.0197 1192.85 Q84.0984 1188.25 89.9086 1188.25 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M120.07 1191.95 Q116.459 1191.95 114.631 1195.51 Q112.825 1199.06 112.825 1206.18 Q112.825 1213.29 114.631 1216.86 Q116.459 1220.4 120.07 1220.4 Q123.705 1220.4 125.51 1216.86 Q127.339 1213.29 127.339 1206.18 Q127.339 1199.06 125.51 1195.51 Q123.705 1191.95 120.07 1191.95 M120.07 1188.25 Q125.881 1188.25 128.936 1192.85 Q132.015 1197.44 132.015 1206.18 Q132.015 1214.91 128.936 1219.52 Q125.881 1224.1 120.
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"282.845\" cy=\"695.076\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"301.542\" cy=\"711.999\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"320.238\" cy=\"728.922\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"338.935\" cy=\"745.845\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"357.631\" cy=\"762.768\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"376.328\" cy=\"779.691\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"395.024\" cy=\"796.614\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"413.721\" cy=\"813.537\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"432.417\" cy=\"830.46\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"451.114\" cy=\"847.383\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"469.81\" cy=\"864.306\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"488.507\" cy=\"881.229\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"507.203\" cy=\"898.152\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"525.9\" cy=\"901.536\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"544.596\" cy=\"904.921\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"563.293\" cy=\"908.305\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"581.989\" cy=\"925.228\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"600.686\" cy=\"942.151\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"619.382\" cy=\"959.074\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"638.079\" cy=\"962.459\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"656.775\" cy=\"965.844\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"675.472\" cy=\"969.228\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"694.168\" cy=\"986.151\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"712.865\" cy=\"1003.07\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"731.561\" cy=\"1020\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"750.258\" cy=\"1023.38\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"768.954\" cy=\"1026.77\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"787.651\" cy=\"1030.15\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"806.347\" cy=\"1047.07\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"825.044\" cy=\"1064\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"843.74\" cy=\"1080.92\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"862.437\" cy=\"1097.84\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"881.133\" cy=\"1101.23\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"899.829\" cy=\"1104.61\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"918.526\" cy=\"1108\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"937.222\" cy=\"1124.92\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"955.919\" cy=\"1131.69\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"974.615\" cy=\"1138.46\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"993.312\" cy=\"1145.23\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1012.01\" cy=\"1152\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1030.7\" cy=\"1158.77\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1049.4\" cy=\"1165.54\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1068.1\" cy=\"1172.3\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1086.79\" cy=\"1179.07\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1105.49\" cy=\"1185.84\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1124.19\" cy=\"1192.61\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1142.88\" cy=\"1199.38\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1161.58\" cy=\"1206.15\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1180.28\" cy=\"1212.92\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1198.97\" cy=\"1219.69\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1217.67\" cy=\"1226.46\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1236.37\" cy=\"1233.23\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1255.06\" cy=\"1240\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1273.76\" cy=\"1246.77\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1292.46\" cy=\"1253.53\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1311.15\" cy=\"1260.3\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1329.85\" cy=\"1267.07\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1348.55\" cy=\"1273.84\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1367.24\" cy=\"1280.61\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1385.94\" cy=\"1287.38\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1404.63\" cy=\"1294.15\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1423.33\" cy=\"1300.92\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1442.03\" cy=\"1307.69\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1460.72\" cy=\"1314.46\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1479.42\" cy=\"1321.23\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1498.12\" cy=\"1328\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1516.81\" cy=\"1334.77\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1535.51\" cy=\"1341.53\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1554.21\" cy=\"1348.3\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1572.9\" cy=\"1355.07\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1591.6\" cy=\"1361.84\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1610.3\" cy=\"1368.61\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1628.99\" cy=\"1375.38\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1647.69\" cy=\"1382.15\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1666.39\" cy=\"1388.92\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1685.08\" cy=\"1395.69\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1703.78\" cy=\"1402.46\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1722.47\" cy=\"1409.23\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1741.17\" cy=\"1416\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1759.87\" cy=\"1422.76\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1778.56\" cy=\"1429.53\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1797.26\" cy=\"1436.3\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1815.96\" cy=\"1443.07\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1834.65\" cy=\"1449.84\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1853.35\" cy=\"1456.61\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1872.05\" cy=\"1463.38\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1890.74\" cy=\"1470.15\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1909.44\" cy=\"1476.92\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1928.14\" cy=\"1483.69\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1946.83\" cy=\"1490.46\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1965.53\" cy=\"1497.23\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1984.23\" cy=\"1504\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2002.92\" cy=\"1510.76\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2021.62\" cy=\"1517.53\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2040.32\" cy=\"1524.3\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2059.01\" cy=\"1531.07\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2077.71\" cy=\"1537.84\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2096.4\" cy=\"1544.61\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2115.1\" cy=\"1551.38\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2133.8\" cy=\"1558.15\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2152.49\" cy=\"1564.92\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2171.19\" cy=\"1571.69\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2189.89\" cy=\"1578.46\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2208.58\" cy=\"1585.23\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2227.28\" cy=\"1591.99\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2245.98\" cy=\"1598.76\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2264.67\" cy=\"1605.53\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2283.37\" cy=\"1612.3\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2302.07\" cy=\"1619.07\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2320.76\" cy=\"1625.84\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2339.46\" cy=\"1632.61\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2358.16\" cy=\"1639.38\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2376.85\" cy=\"1646.15\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2395.55\" cy=\"1652.92\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2414.24\" cy=\"1659.69\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2432.94\" cy=\"1666.46\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2451.64\" cy=\"1673.23\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2470.33\" cy=\"1676.61\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2489.03\" cy=\"1683.38\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2507.73\" cy=\"1686.76\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2526.42\" cy=\"1693.53\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2545.12\" cy=\"1696.92\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2563.82\" cy=\"1703.69\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2582.51\" cy=\"1707.07\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2601.21\" cy=\"1713.84\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2619.91\" cy=\"1717.22\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2638.6\" cy=\"1723.99\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2657.3\" cy=\"1727.38\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2676\" cy=\"1734.15\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2694.69\" cy=\"1737.53\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2713.39\" cy=\"1744.3\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2732.08\" cy=\"1747.69\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2750.78\" cy=\"1754.46\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2769.48\" cy=\"1761.22\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2788.17\" cy=\"1764.61\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2806.87\" cy=\"1771.38\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2825.57\" cy=\"1778.15\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2844.26\" cy=\"1781.53\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2862.96\" cy=\"1788.3\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2881.66\" cy=\"1795.07\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2900.35\" cy=\"1798.46\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2919.05\" cy=\"1805.22\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2937.75\" cy=\"1811.99\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2956.44\" cy=\"1818.76\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2975.14\" cy=\"1822.15\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2993.84\" cy=\"1828.92\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"3012.53\" cy=\"1835.69\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"3031.23\" cy=\"1842.46\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"3049.93\" cy=\"1849.22\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"3068.62\" cy=\"1855.99\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"264.149\" cy=\"214.463\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"282.845\" cy=\"248.309\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"301.542\" cy=\"282.155\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"320.238\" cy=\"316.001\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"338.935\" cy=\"349.847\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"357.631\" cy=\"383.693\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"376.328\" cy=\"417.539\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"395.024\" cy=\"451.385\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"413.721\" cy=\"485.231\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"432.417\" cy=\"502.154\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"451.114\" cy=\"519.077\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"469.81\" cy=\"536\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"488.507\" cy=\"552.923\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"507.203\" cy=\"569.845\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"525.9\" cy=\"576.615\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"544.596\" cy=\"583.384\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"563.293\" cy=\"590.153\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"581.989\" cy=\"607.076\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"600.686\" cy=\"623.999\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"619.382\" cy=\"640.922\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"638.079\" cy=\"647.691\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"656.775\" cy=\"654.46\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"675.472\" cy=\"661.23\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"694.168\" cy=\"678.153\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"712.865\" cy=\"695.076\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"731.561\" cy=\"711.999\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"750.258\" cy=\"718.768\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"768.954\" cy=\"725.537\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"787.651\" cy=\"732.306\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"806.347\" cy=\"749.229\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"825.044\" cy=\"766.152\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"843.74\" cy=\"783.075\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"862.437\" cy=\"799.998\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"881.133\" cy=\"806.767\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"899.829\" cy=\"813.537\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"918.526\" cy=\"820.306\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"937.222\" cy=\"837.229\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"955.919\" cy=\"843.998\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"974.615\" cy=\"850.767\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"993.312\" cy=\"857.536\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1012.01\" cy=\"864.306\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1030.7\" cy=\"871.075\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1049.4\" cy=\"877.844\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1068.1\" cy=\"884.613\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1086.79\" cy=\"891.382\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1105.49\" cy=\"901.536\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1124.19\" cy=\"908.305\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1142.88\" cy=\"915.075\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1161.58\" cy=\"921.844\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1180.28\" cy=\"931.998\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1198.97\" cy=\"942.151\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1217.67\" cy=\"952.305\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1236.37\" cy=\"959.074\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1255.06\" cy=\"969.228\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1273.76\" cy=\"979.382\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1292.46\" cy=\"986.151\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1311.15\" cy=\"996.305\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1329.85\" cy=\"1006.46\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1348.55\" cy=\"1016.61\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1367.24\" cy=\"1023.38\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1385.94\" cy=\"1033.54\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1404.63\" cy=\"1040.3\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1423.33\" cy=\"1047.07\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1442.03\" cy=\"1053.84\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1460.72\" cy=\"1060.61\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1479.42\" cy=\"1067.38\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1498.12\" cy=\"1077.54\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1516.81\" cy=\"1087.69\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1535.51\" cy=\"1097.84\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1554.21\" cy=\"1108\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1572.9\" cy=\"1118.15\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1591.6\" cy=\"1128.3\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1610.3\" cy=\"1138.46\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1628.99\" cy=\"1148.61\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1647.69\" cy=\"1162.15\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1666.39\" cy=\"1168.92\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1685.08\" cy=\"1175.69\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1703.78\" cy=\"1185.84\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1722.47\" cy=\"1196\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1741.17\" cy=\"1206.15\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1759.87\" cy=\"1216.3\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1778.56\" cy=\"1223.07\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1797.26\" cy=\"1236.61\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1815.96\" cy=\"1246.77\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1834.65\" cy=\"1260.3\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1853.35\" cy=\"1267.07\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1872.05\" cy=\"1273.84\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1890.74\" cy=\"1284\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1909.44\" cy=\"1290.77\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1928.14\" cy=\"1297.53\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1946.83\" cy=\"1304.3\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1965.53\" cy=\"1311.07\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"1984.23\" cy=\"1317.84\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2002.92\" cy=\"1328\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2021.62\" cy=\"1338.15\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2040.32\" cy=\"1344.92\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2059.01\" cy=\"1351.69\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2077.71\" cy=\"1361.84\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2096.4\" cy=\"1372\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2115.1\" cy=\"1382.15\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2133.8\" cy=\"1388.92\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2152.49\" cy=\"1399.07\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2171.19\" cy=\"1412.61\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2189.89\" cy=\"1422.76\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2208.58\" cy=\"1432.92\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2227.28\" cy=\"1443.07\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2245.98\" cy=\"1456.61\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2264.67\" cy=\"1463.38\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2283.37\" cy=\"1470.15\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2302.07\" cy=\"1480.3\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2320.76\" cy=\"1487.07\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2339.46\" cy=\"1493.84\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2358.16\" cy=\"1507.38\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2376.85\" cy=\"1514.15\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2395.55\" cy=\"1520.92\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2414.24\" cy=\"1527.69\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2432.94\" cy=\"1534.46\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2451.64\" cy=\"1544.61\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2470.33\" cy=\"1551.38\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2489.03\" cy=\"1561.53\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2507.73\" cy=\"1568.3\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2526.42\" cy=\"1578.46\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2545.12\" cy=\"1585.23\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2563.82\" cy=\"1598.76\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2582.51\" cy=\"1605.53\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2601.21\" cy=\"1615.69\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2619.91\" cy=\"1622.46\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2638.6\" cy=\"1632.61\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2657.3\" cy=\"1639.38\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2676\" cy=\"1652.92\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2694.69\" cy=\"1659.69\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2713.39\" cy=\"1673.23\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2732.08\" cy=\"1679.99\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2750.78\" cy=\"1693.53\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2769.48\" cy=\"1703.69\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2788.17\" cy=\"1710.46\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2806.87\" cy=\"1723.99\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2825.57\" cy=\"1737.53\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2844.26\" cy=\"1744.3\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2862.96\" cy=\"1757.84\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2881.66\" cy=\"1764.61\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2900.35\" cy=\"1771.38\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2919.05\" cy=\"1784.92\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2937.75\" cy=\"1798.46\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2956.44\" cy=\"1805.22\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2975.14\" cy=\"1811.99\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"2993.84\" cy=\"1825.53\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"3012.53\" cy=\"1839.07\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"3031.23\" cy=\"1845.84\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"3049.93\" cy=\"1852.61\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip152)\" cx=\"3068.62\" cy=\"1859.38\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<path clip-path=\"url(#clip150)\" d=\"M893.181 2204.92 L2439.59 2204.92 L2439.59 2075.32 L893.181 2075.32 Z\" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"893.181,2204.92 2439.59,2204.92 2439.59,2075.32 893.181,2075.32 893.181,2204.92 \"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip150)\" cx=\"1025.3\" cy=\"2140.12\" r=\"25.6\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"8.53333\"/>\n",
|
|
|
|
"<path clip-path=\"url(#clip150)\" d=\"M1189.37 2155.56 L1189.37 2143.95 L1179.82 2143.95 L1179.82 2139.15 L1195.16 2139.15 L1195.16 2157.7 Q1191.77 2160.1 1187.69 2161.34 Q1183.61 2162.56 1178.98 2162.56 Q1168.85 2162.56 1163.13 2156.66 Q1157.42 2150.72 1157.42 2140.16 Q1157.42 2129.57 1163.13 2123.67 Q1168.85 2117.74 1178.98 2117.74 Q1183.21 2117.74 1187 2118.78 Q1190.82 2119.82 1194.03 2121.85 L1194.03 2128.07 Q1190.79 2125.32 1187.14 2123.93 Q1183.5 2122.54 1179.47 2122.54 Q1171.55 2122.54 1167.55 2126.97 Q1163.59 2131.4 1163.59 2140.16 Q1163.59 2148.9 1167.55 2153.33 Q1171.55 2157.76 1179.47 2157.76 Q1182.57 2157.76 1185 2157.23 Q1187.43 2156.69 1189.37 2155.56 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M1224.38 2134.29 Q1223.48 2133.77 1222.41 2133.54 Q1221.37 2133.28 1220.1 2133.28 Q1215.58 2133.28 1213.15 2136.23 Q1210.75 2139.15 1210.75 2144.65 L1210.75 2161.72 L1205.4 2161.72 L1205.4 2129.31 L1210.75 2129.31 L1210.75 2134.35 Q1212.43 2131.4 1215.12 2129.98 Q1217.81 2128.53 1221.66 2128.53 Q1222.21 2128.53 1222.88 2128.62 Q1223.54 2128.68 1224.35 2128.82 L1224.38 2134.29 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M1244.69 2145.43 Q1238.24 2145.43 1235.75 2146.91 Q1233.26 2148.38 1233.26 2151.94 Q1233.26 2154.78 1235.12 2156.45 Q1237 2158.1 1240.21 2158.1 Q1244.64 2158.1 1247.3 2154.98 Q1249.99 2151.82 1249.99 2146.62 L1249.99 2145.43 L1244.69 2145.43 M1255.31 2143.23 L1255.31 2161.72 L1249.99 2161.72 L1249.99 2156.8 Q1248.17 2159.75 1245.45 2161.17 Q1242.73 2162.56 1238.79 2162.56 Q1233.81 2162.56 1230.86 2159.78 Q1227.94 2156.97 1227.94 2152.29 Q1227.94 2146.82 1231.59 2144.04 Q1235.26 2141.26 1242.52 2141.26 L1249.99 2141.26 L1249.99 2140.74 Q1249.99 2137.07 1247.56 2135.07 Q1245.16 2133.05 1240.79 2133.05 Q1238.01 2133.05 1235.38 2133.71 Q1232.74 2134.38 1230.31 2135.71 L1230.31 2130.79 Q1233.23 2129.66 1235.98 2129.11 Q1238.73 2128.53 1241.34 2128.53 Q1248.37 2128.53 1251.84 2132.18 Q1255.31 2135.82 1255.31 2143.23 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M1271.43 2156.86 L1271.43 2174.05 L1266.08 2174.05 L1266.08 2129.31 L1271.43 2129.31 L1271.43 2134.23 Q1273.11 2131.34 1275.65 2129.95 Q1278.23 2128.53 1281.79 2128.53 Q1287.69 2128.53 1291.37 2133.22 Q1295.07 2137.91 1295.07 2145.55 Q1295.07 2153.18 1291.37 2157.87 Q1287.69 2162.56 1281.79 2162.56 Q1278.23 2162.56 1275.65 2161.17 Q1273.11 2159.75 1271.43 2156.86 M1289.54 2145.55 Q1289.54 2139.67 1287.11 2136.34 Q1284.71 2132.99 1280.49 2132.99 Q1276.26 2132.99 1273.83 2136.34 Q1271.43 2139.67 1271.43 2145.55 Q1271.43 2151.42 1273.83 2154.78 Q1276.26 2158.1 1280.49 2158.1 Q1284.71 2158.1 1287.11 2154.78 Q1289.54 2151.42 1289.54 2145.55 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M1330.83 2142.16 L1330.83 2161.72 L1325.51 2161.72 L1325.51 2142.33 Q1325.51 2137.73 1323.71 2135.45 Q1321.92 2133.16 1318.33 2133.16 Q1314.02 2133.16 1311.53 2135.91 Q1309.04 2138.66 1309.04 2143.4 L1309.04 2161.72 L1303.69 2161.72 L1303.69 2116.7 L1309.04 2116.7 L1309.04 2134.35 Q1310.95 2131.42 1313.53 2129.98 Q1316.13 2128.53 1319.52 2128.53 Q1325.1 2128.53 1327.97 2132 Q1330.83 2135.45 1330.83 2142.16 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M1360.52 2118.52 L1368.39 2118.52 L1387.55 2154.66 L1387.55 2118.52 L1393.22 2118.52 L1393.22 2161.72 L1385.35 2161.72 L1366.19 2125.58 L1366.19 2161.72 L1360.52 2161.72 L1360.52 2118.52 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M1417.17 2133.05 Q1412.89 2133.05 1410.4 2136.4 Q1407.92 2139.73 1407.92 2145.55 Q1407.92 2151.36 1410.37 2154.72 Q1412.86 2158.05 1417.17 2158.05 Q1421.43 2158.05 1423.92 2154.69 Q1426.4 2151.33 1426.4 2145.55 Q1426.4 2139.79 1423.92 2136.43 Q1421.43 2133.05 1417.17 2133.05 M1417.17 2128.53 Q1424.12 2128.53 1428.08 2133.05 Q1432.05 2137.56 1432.05 2145.55
|
|
|
|
"<path clip-path=\"url(#clip150)\" d=\"M1946.06 2155.56 L1946.06 2143.95 L1936.51 2143.95 L1936.51 2139.15 L1951.85 2139.15 L1951.85 2157.7 Q1948.46 2160.1 1944.38 2161.34 Q1940.3 2162.56 1935.67 2162.56 Q1925.54 2162.56 1919.81 2156.66 Q1914.11 2150.72 1914.11 2140.16 Q1914.11 2129.57 1919.81 2123.67 Q1925.54 2117.74 1935.67 2117.74 Q1939.89 2117.74 1943.69 2118.78 Q1947.5 2119.82 1950.72 2121.85 L1950.72 2128.07 Q1947.48 2125.32 1943.83 2123.93 Q1940.18 2122.54 1936.16 2122.54 Q1928.23 2122.54 1924.24 2126.97 Q1920.28 2131.4 1920.28 2140.16 Q1920.28 2148.9 1924.24 2153.33 Q1928.23 2157.76 1936.16 2157.76 Q1939.26 2157.76 1941.69 2157.23 Q1944.12 2156.69 1946.06 2155.56 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M1981.07 2134.29 Q1980.17 2133.77 1979.1 2133.54 Q1978.06 2133.28 1976.79 2133.28 Q1972.27 2133.28 1969.84 2136.23 Q1967.44 2139.15 1967.44 2144.65 L1967.44 2161.72 L1962.09 2161.72 L1962.09 2129.31 L1967.44 2129.31 L1967.44 2134.35 Q1969.12 2131.4 1971.81 2129.98 Q1974.5 2128.53 1978.35 2128.53 Q1978.9 2128.53 1979.56 2128.62 Q1980.23 2128.68 1981.04 2128.82 L1981.07 2134.29 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2001.38 2145.43 Q1994.93 2145.43 1992.44 2146.91 Q1989.95 2148.38 1989.95 2151.94 Q1989.95 2154.78 1991.8 2156.45 Q1993.69 2158.1 1996.9 2158.1 Q2001.32 2158.1 2003.99 2154.98 Q2006.68 2151.82 2006.68 2146.62 L2006.68 2145.43 L2001.38 2145.43 M2012 2143.23 L2012 2161.72 L2006.68 2161.72 L2006.68 2156.8 Q2004.85 2159.75 2002.13 2161.17 Q1999.41 2162.56 1995.48 2162.56 Q1990.5 2162.56 1987.55 2159.78 Q1984.63 2156.97 1984.63 2152.29 Q1984.63 2146.82 1988.27 2144.04 Q1991.95 2141.26 1999.21 2141.26 L2006.68 2141.26 L2006.68 2140.74 Q2006.68 2137.07 2004.25 2135.07 Q2001.84 2133.05 1997.48 2133.05 Q1994.7 2133.05 1992.06 2133.71 Q1989.43 2134.38 1987 2135.71 L1987 2130.79 Q1989.92 2129.66 1992.67 2129.11 Q1995.42 2128.53 1998.03 2128.53 Q2005.06 2128.53 2008.53 2132.18 Q2012 2135.82 2012 2143.23 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2028.12 2156.86 L2028.12 2174.05 L2022.76 2174.05 L2022.76 2129.31 L2028.12 2129.31 L2028.12 2134.23 Q2029.8 2131.34 2032.34 2129.95 Q2034.92 2128.53 2038.48 2128.53 Q2044.38 2128.53 2048.05 2133.22 Q2051.76 2137.91 2051.76 2145.55 Q2051.76 2153.18 2048.05 2157.87 Q2044.38 2162.56 2038.48 2162.56 Q2034.92 2162.56 2032.34 2161.17 Q2029.8 2159.75 2028.12 2156.86 M2046.23 2145.55 Q2046.23 2139.67 2043.8 2136.34 Q2041.4 2132.99 2037.17 2132.99 Q2032.95 2132.99 2030.52 2136.34 Q2028.12 2139.67 2028.12 2145.55 Q2028.12 2151.42 2030.52 2154.78 Q2032.95 2158.1 2037.17 2158.1 Q2041.4 2158.1 2043.8 2154.78 Q2046.23 2151.42 2046.23 2145.55 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2087.52 2142.16 L2087.52 2161.72 L2082.2 2161.72 L2082.2 2142.33 Q2082.2 2137.73 2080.4 2135.45 Q2078.61 2133.16 2075.02 2133.16 Q2070.71 2133.16 2068.22 2135.91 Q2065.73 2138.66 2065.73 2143.4 L2065.73 2161.72 L2060.38 2161.72 L2060.38 2116.7 L2065.73 2116.7 L2065.73 2134.35 Q2067.64 2131.42 2070.22 2129.98 Q2072.82 2128.53 2076.21 2128.53 Q2081.79 2128.53 2084.66 2132 Q2087.52 2135.45 2087.52 2142.16 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2117.21 2118.52 L2144.52 2118.52 L2144.52 2123.44 L2123.05 2123.44 L2123.05 2136.23 L2143.63 2136.23 L2143.63 2141.15 L2123.05 2141.15 L2123.05 2156.8 L2145.04 2156.8 L2145.04 2161.72 L2117.21 2161.72 L2117.21 2118.52 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2175.74 2134.23 L2175.74 2116.7 L2181.07 2116.7 L2181.07 2161.72 L2175.74 2161.72 L2175.74 2156.86 Q2174.07 2159.75 2171.49 2161.17 Q2168.94 2162.56 2165.36 2162.56 Q2159.48 2162.56 2155.78 2157.87 Q2152.1 2153.18 2152.1 2145.55 Q2152.1 2137.91 2155.78 2133.22 Q2159.48 2128.53 2165.36 2128.53 Q2168.94 2128.53 2171.49 2129.95 Q2174.07 2131.34 2175
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"metadata": {},
|
|
|
|
"output_type": "display_data"
|
|
|
|
}
|
|
|
|
],
|
2023-12-18 14:31:52 +01:00
|
|
|
"source": [
|
|
|
|
"img = @df df scatter(\n",
|
|
|
|
" :operations,\n",
|
|
|
|
" [:graph_nodes, :graph_edges],\n",
|
|
|
|
" label=[\"Graph Nodes (#)\" \"Graph Edges (#)\"],\n",
|
2024-03-06 23:44:47 +01:00
|
|
|
" title=\"$(beautify_title(string(process))) using $optimizer\",\n",
|
2023-12-18 14:31:52 +01:00
|
|
|
" linewidth=2,\n",
|
|
|
|
" xlabel=\"optimizer steps\",\n",
|
|
|
|
" ylims=(0.0, 1.05 * maximum(df.graph_edges)),\n",
|
2024-03-06 23:44:47 +01:00
|
|
|
" legend=:outerbottom,\n",
|
|
|
|
" legendcolumns=2,\n",
|
|
|
|
" legend_font_pointsize=10,\n",
|
2023-12-18 14:31:52 +01:00
|
|
|
" fmt=:pdf,\n",
|
|
|
|
" size=(800, 600)\n",
|
|
|
|
")\n",
|
|
|
|
"\n",
|
2024-03-06 23:44:47 +01:00
|
|
|
"img"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"cell_type": "code",
|
|
|
|
"execution_count": 8,
|
|
|
|
"metadata": {},
|
|
|
|
"outputs": [
|
|
|
|
{
|
|
|
|
"data": {
|
|
|
|
"image/png": "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
|
|
|
|
"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=\"800\" height=\"600\" viewBox=\"0 0 3200 2400\">\n",
|
|
|
|
"<defs>\n",
|
|
|
|
" <clipPath id=\"clip250\">\n",
|
|
|
|
" <rect x=\"0\" y=\"0\" width=\"3200\" height=\"2400\"/>\n",
|
|
|
|
" </clipPath>\n",
|
|
|
|
"</defs>\n",
|
|
|
|
"<path clip-path=\"url(#clip250)\" d=\"M0 2400 L3200 2400 L3200 0 L0 0 Z\" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
|
|
|
|
"<defs>\n",
|
|
|
|
" <clipPath id=\"clip251\">\n",
|
|
|
|
" <rect x=\"640\" y=\"0\" width=\"2241\" height=\"2241\"/>\n",
|
|
|
|
" </clipPath>\n",
|
|
|
|
"</defs>\n",
|
|
|
|
"<path clip-path=\"url(#clip250)\" d=\"M315.593 1883.07 L3152.76 1883.07 L3152.76 131.032 L315.593 131.032 Z\" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
|
|
|
|
"<defs>\n",
|
|
|
|
" <clipPath id=\"clip252\">\n",
|
|
|
|
" <rect x=\"315\" y=\"131\" width=\"2838\" height=\"1753\"/>\n",
|
|
|
|
" </clipPath>\n",
|
|
|
|
"</defs>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip252)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"395.89,1883.07 395.89,131.032 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip252)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"1288.08,1883.07 1288.08,131.032 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip252)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"2180.27,1883.07 2180.27,131.032 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip252)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"3072.46,1883.07 3072.46,131.032 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip250)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"315.593,1883.07 3152.76,1883.07 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip250)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"395.89,1883.07 395.89,1867.11 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip250)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"1288.08,1883.07 1288.08,1867.11 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip250)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"2180.27,1883.07 2180.27,1867.11 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip250)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"3072.46,1883.07 3072.46,1867.11 \"/>\n",
|
|
|
|
"<path clip-path=\"url(#clip250)\" d=\"M395.89 1920.39 Q392.279 1920.39 390.45 1923.95 Q388.645 1927.5 388.645 1934.62 Q388.645 1941.73 390.45 1945.3 Q392.279 1948.84 395.89 1948.84 Q399.524 1948.84 401.33 1945.3 Q403.158 1941.73 403.158 1934.62 Q403.158 1927.5 401.33 1923.95 Q399.524 1920.39 395.89 1920.39 M395.89 1916.69 Q401.7 1916.69 404.756 1921.29 Q407.834 1925.88 407.834 1934.62 Q407.834 1943.35 404.756 1947.96 Q401.7 1952.54 395.89 1952.54 Q390.08 1952.54 387.001 1947.96 Q383.945 1943.35 383.945 1934.62 Q383.945 1925.88 387.001 1921.29 Q390.08 1916.69 395.89 1916.69 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip250)\" d=\"M1262.78 1917.31 L1281.14 1917.31 L1281.14 1921.25 L1267.06 1921.25 L1267.06 1929.72 Q1268.08 1929.37 1269.1 1929.21 Q1270.12 1929.02 1271.14 1929.02 Q1276.92 1929.02 1280.3 1932.19 Q1283.68 1935.37 1283.68 1940.78 Q1283.68 1946.36 1280.21 1949.46 Q1276.74 1952.54 1270.42 1952.54 Q1268.24 1952.54 1265.97 1952.17 Q1263.73 1951.8 1261.32 1951.06 L1261.32 1946.36 Q1263.4 1947.5 1265.63 1948.05 Q1267.85 1948.61 1270.32 1948.61 Q1274.33 1948.61 1276.67 1946.5 Q1279.01 1944.39 1279.01 1940.78 Q1279.01 1937.17 1276.67 1935.06 Q1274.33 1932.96 1270.32 1932.96 Q1268.45 1932.96 1266.58 1933.37 Q1264.72 1933.79 1262.78 1934.67 L1262.78 1917.31 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip250)\" d=\"M1302.89 1920.39 Q1299.28 1920.39 1297.45 1923.95 Q1295.65 1927.5 1295.65 1934.62 Q1295.65 1941.73 1297.45 1945.3 Q1299.28 1948.84 1302.89 1948.84 Q1306.53 1948.84 1308.33 1945.3 Q1310.16 1941.73 1310.16 1934.62 Q1310.16 1927.5 1308.33 1923.95 Q1306.53 1920.39 1302.89 1920.39 M1302.89 1916.69 Q1308.7 1916.69 1311.76 1921.29 Q1314.84 1925.88 1314.84 1934.62 Q1314.84 1943.35 1311.76 1947.96 Q1308.7 1952.54 1302.89 1952.54 Q1297.08 1952.54 1294.01 1947.96 Q1290.95 1943.35 1290.95 1934.62 Q1290.95 1925.88 1294.01 1921.29 Q1297.08 1916.69 1302.89 1916.69 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip250)\" d=\"M2139.88 1947.94 L2147.51 1947.94 L2147.51 1921.57 L2139.2 1923.24 L2139.2 1918.98 L2147.47 1917.31 L2152.14 1917.31 L2152.14 1947.94 L2159.78 1947.94 L2159.78 1951.87 L2139.88 1951.87 L2139.88 1947.94 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip250)\" d=\"M2179.23 1920.39 Q2175.62 1920.39 2173.79 1923.95 Q2171.98 1927.5 2171.98 1934.62 Q2171.98 1941.73 2173.79 1945.3 Q2175.62 1948.84 2179.23 1948.84 Q2182.86 1948.84 2184.67 1945.3 Q2186.5 1941.73 2186.5 1934.62 Q2186.5 1927.5 2184.67 1923.95 Q2182.86 1920.39 2179.23 1920.39 M2179.23 1916.69 Q2185.04 1916.69 2188.09 1921.29 Q2191.17 1925.88 2191.17 1934.62 Q2191.17 1943.35 2188.09 1947.96 Q2185.04 1952.54 2179.23 1952.54 Q2173.42 1952.54 2170.34 1947.96 Q2167.28 1943.35 2167.28 1934.62 Q2167.28 1925.88 2170.34 1921.29 Q2173.42 1916.69 2179.23 1916.69 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip250)\" d=\"M2209.39 1920.39 Q2205.78 1920.39 2203.95 1923.95 Q2202.14 1927.5 2202.14 1934.62 Q2202.14 1941.73 2203.95 1945.3 Q2205.78 1948.84 2209.39 1948.84 Q2213.02 1948.84 2214.83 1945.3 Q2216.66 1941.73 2216.66 1934.62 Q2216.66 1927.5 2214.83 1923.95 Q2213.02 1920.39 2209.39 1920.39 M2209.39 1916.69 Q2215.2 1916.69 2218.26 1921.29 Q2221.33 1925.88 2221.33 1934.62 Q2221.33 1943.35 2218.26 1947.96 Q2215.2 1952.54 2209.39 1952.54 Q2203.58 1952.54 2200.5 1947.96 Q2197.45 1943.35 2197.45 1934.62 Q2197.45 1925.88 2200.5 1921.29 Q2203.58 1916.69 2209.39 1916.69 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip250)\" d=\"M3032.07 1947.94 L3039.7 1947.94 L3039.7 1921.57 L3031.39 1923.24 L3031.39 1918.98 L3039.66 1917.31 L3044.33 1917.31 L3044.33 1947.94 L3051.97 1947.94 L3051.97 1951.87 L3032.07 1951.87 L3032.07 1947.94 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip250)\" d=\"M3061.46 1917.31 L3079.82 1917.31 L3079.82 1921.25 L3065.75 1921.25 L3065.75 1929.7
|
|
|
|
"<polyline clip-path=\"url(#clip252)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"315.593,1613.62 3152.76,1613.62 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip252)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"315.593,1344.16 3152.76,1344.16 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip252)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"315.593,1074.71 3152.76,1074.71 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip252)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"315.593,805.258 3152.76,805.258 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip252)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"315.593,535.805 3152.76,535.805 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip252)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"315.593,266.352 3152.76,266.352 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip250)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"315.593,1883.07 315.593,131.032 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip250)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"315.593,1883.07 334.49,1883.07 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip250)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"315.593,1613.62 334.49,1613.62 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip250)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"315.593,1344.16 334.49,1344.16 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip250)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"315.593,1074.71 334.49,1074.71 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip250)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"315.593,805.258 334.49,805.258 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip250)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"315.593,535.805 334.49,535.805 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip250)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"315.593,266.352 334.49,266.352 \"/>\n",
|
|
|
|
"<path clip-path=\"url(#clip250)\" d=\"M255.648 1868.87 Q252.037 1868.87 250.209 1872.43 Q248.403 1875.98 248.403 1883.1 Q248.403 1890.21 250.209 1893.78 Q252.037 1897.32 255.648 1897.32 Q259.283 1897.32 261.088 1893.78 Q262.917 1890.21 262.917 1883.1 Q262.917 1875.98 261.088 1872.43 Q259.283 1868.87 255.648 1868.87 M255.648 1865.17 Q261.459 1865.17 264.514 1869.77 Q267.593 1874.36 267.593 1883.1 Q267.593 1891.83 264.514 1896.44 Q261.459 1901.02 255.648 1901.02 Q249.838 1901.02 246.76 1896.44 Q243.704 1891.83 243.704 1883.1 Q243.704 1874.36 246.76 1869.77 Q249.838 1865.17 255.648 1865.17 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip250)\" d=\"M53.7745 1633.41 L70.0939 1633.41 L70.0939 1637.34 L48.1495 1637.34 L48.1495 1633.41 Q50.8115 1630.66 55.3949 1626.03 Q60.0013 1621.37 61.1819 1620.03 Q63.4272 1617.51 64.3068 1615.77 Q65.2096 1614.01 65.2096 1612.32 Q65.2096 1609.57 63.2652 1607.83 Q61.3439 1606.1 58.2421 1606.1 Q56.043 1606.1 53.5893 1606.86 Q51.1588 1607.62 48.381 1609.17 L48.381 1604.45 Q51.2051 1603.32 53.6588 1602.74 Q56.1124 1602.16 58.1495 1602.16 Q63.5198 1602.16 66.7142 1604.85 Q69.9087 1607.53 69.9087 1612.02 Q69.9087 1614.15 69.0985 1616.07 Q68.3115 1617.97 66.205 1620.56 Q65.6263 1621.23 62.5245 1624.45 Q59.4226 1627.65 53.7745 1633.41 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip250)\" d=\"M79.9086 1631.47 L84.7928 1631.47 L84.7928 1637.34 L79.9086 1637.34 L79.9086 1631.47 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip250)\" d=\"M104.978 1605.86 Q101.367 1605.86 99.5381 1609.43 Q97.7326 1612.97 97.7326 1620.1 Q97.7326 1627.21 99.5381 1630.77 Q101.367 1634.31 104.978 1634.31 Q108.612 1634.31 110.418 1630.77 Q112.246 1627.21 112.246 1620.1 Q112.246 1612.97 110.418 1609.43 Q108.612 1605.86 104.978 1605.86 M104.978 1602.16 Q110.788 1602.16 113.844 1606.77 Q116.922 1611.35 116.922 1620.1 Q116.922 1628.83 113.844 1633.43 Q110.788 1638.02 104.978 1638.02 Q99.1678 1638.02 96.0891 1633.43 Q93.0335 1628.83 93.0335 1620.1 Q93.0335 1611.35 96.0891 1606.77 Q99.1678 1602.16 104.978 1602.16 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip250)\" d=\"M135.14 1605.86 Q131.529 1605.86 129.7 1609.43 Q127.894 1612.97 127.894 1620.1 Q127.894 1627.21 129.7 1630.77 Q131.529 1634.31 135.14 1634.31 Q138.774 1634.31 140.58 1630.77 Q142.408 1627.21 142.408 1620.1 Q142.408 1612.97 140.58 1609.43 Q138.774 1605.86 135.14 1605.86 M135.14 1602.16 Q140.95 1602.16 144.005 1606.77 Q147.084 1611.35 147.084 1620.1 Q147.084 1628.83 144.005 1633.43 Q140.95 1638.02 135.14 1638.02 Q129.33 1638.02 126.251 1633.43 Q123.195 1628.83 123.195 1620.1 Q123.195 1611.35 126.251 1606.77 Q129.33 1602.16 135.14 1602.16 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip250)\" d=\"M183.473 1611.88 L172.894 1622.51 L183.473 1633.09 L180.718 1635.89 L170.093 1625.26 L159.468 1635.89 L156.737 1633.09 L167.292 1622.51 L156.737 1611.88 L159.468 1609.08 L170.093 1619.71 L180.718 1609.08 L183.473 1611.88 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip250)\" d=\"M195.834 1633.41 L203.473 1633.41 L203.473 1607.04 L195.163 1608.71 L195.163 1604.45 L203.426 1602.78 L208.102 1602.78 L208.102 1633.41 L215.741 1633.41 L215.741 1637.34 L195.834 1637.34 L195.834 1633.41 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip250)\" d=\"M235.186 1605.86 Q231.574 1605.86 229.746 1609.43 Q227.94 1612.97 227.94 1620.1 Q227.94 1627.21 229.746 1630.77 Q231.574 1634.31 235.186 1634.31 Q238.82 1634.31 240.625 1630.77 Q242.454 1627.21 242.454 1620.1 Q242.454 1612.97 240.625 1609.43 Q238.82 1605.86 235.186 1605.86 M235.186 1602.16 Q240.996 1602.16 244.051 1606.77 Q247.13 1611.35 247.13 1620.1 Q247.13 1628.83 244.051 1633.43 Q240.996 1638.02 235.186 1638.02 Q229.375 1638.02 226.297 1633.43 Q223.241 1628.83 223.241 1620.1 Q223.241 1611.35 226.297 1606.77 Q229.375 1602.16 235.186 1602
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"413.734\" cy=\"276.033\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"431.577\" cy=\"337.603\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"449.421\" cy=\"399.173\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"467.265\" cy=\"460.743\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"485.109\" cy=\"522.313\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"502.953\" cy=\"583.883\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"520.796\" cy=\"645.453\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"538.64\" cy=\"707.023\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"556.484\" cy=\"707.023\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"574.328\" cy=\"739.02\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"592.172\" cy=\"739.02\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"610.015\" cy=\"739.02\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"627.859\" cy=\"739.02\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"645.703\" cy=\"751.334\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"663.547\" cy=\"763.648\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"681.391\" cy=\"775.962\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"699.234\" cy=\"775.962\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"717.078\" cy=\"807.96\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"734.922\" cy=\"807.96\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"752.766\" cy=\"820.274\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"770.61\" cy=\"832.588\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"788.453\" cy=\"844.902\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"806.297\" cy=\"844.902\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"824.141\" cy=\"876.899\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"841.985\" cy=\"876.899\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"859.828\" cy=\"889.213\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"877.672\" cy=\"901.527\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"895.516\" cy=\"913.841\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"913.36\" cy=\"913.841\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"931.204\" cy=\"913.841\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"949.047\" cy=\"945.839\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"966.891\" cy=\"945.839\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"984.735\" cy=\"958.153\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1002.58\" cy=\"970.467\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1020.42\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1038.27\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1056.11\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1073.95\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1091.8\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1109.64\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1127.49\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1145.33\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1163.17\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1181.02\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1198.86\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1216.7\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1234.55\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1252.39\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1270.24\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1288.08\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1305.92\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1323.77\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1341.61\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1359.45\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1377.3\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1395.14\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1412.99\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1430.83\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1448.67\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1466.52\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1484.36\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1502.21\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1520.05\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1537.89\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1555.74\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1573.58\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1591.42\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1609.27\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1627.11\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1644.96\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1662.8\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1680.64\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1698.49\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1716.33\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1734.17\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1752.02\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1769.86\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1787.71\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1805.55\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1823.39\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1841.24\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1859.08\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1876.92\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1894.77\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1912.61\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1930.46\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1948.3\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1966.14\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1983.99\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2001.83\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2019.68\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2037.52\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2055.36\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2073.21\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2091.05\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2108.89\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2126.74\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2144.58\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2162.43\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2180.27\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2198.11\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2215.96\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2233.8\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2251.64\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2269.49\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2287.33\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2305.18\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2323.02\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2340.86\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2358.71\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2376.55\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2394.39\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2412.24\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2430.08\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2447.93\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2465.77\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2483.61\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2501.46\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2519.3\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2537.15\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2554.99\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2572.83\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2590.68\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2608.52\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2626.36\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2644.21\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2662.05\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2679.9\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2697.74\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2715.58\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2733.43\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2751.27\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2769.11\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2786.96\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2804.8\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2822.65\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2840.49\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2858.33\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2876.18\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2894.02\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2911.86\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2929.71\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2947.55\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2965.4\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2983.24\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"3001.08\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"3018.93\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"3036.77\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"3054.62\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"3072.46\" cy=\"982.781\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"395.89\" cy=\"1471.78\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"413.734\" cy=\"1471.78\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"431.577\" cy=\"1471.78\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"449.421\" cy=\"1471.78\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"467.265\" cy=\"1471.78\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"485.109\" cy=\"1471.78\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"502.953\" cy=\"1471.78\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"520.796\" cy=\"1471.78\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"538.64\" cy=\"1471.78\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"556.484\" cy=\"1478.24\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"574.328\" cy=\"1478.24\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"592.172\" cy=\"1484.71\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"610.015\" cy=\"1491.18\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"627.859\" cy=\"1497.64\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"645.703\" cy=\"1497.64\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"663.547\" cy=\"1497.64\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"681.391\" cy=\"1497.64\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"699.234\" cy=\"1504.11\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"717.078\" cy=\"1504.11\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"734.922\" cy=\"1510.58\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"752.766\" cy=\"1510.58\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"770.61\" cy=\"1510.58\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"788.453\" cy=\"1510.58\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"806.297\" cy=\"1517.05\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"824.141\" cy=\"1517.05\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"841.985\" cy=\"1523.51\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"859.828\" cy=\"1523.51\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"877.672\" cy=\"1523.51\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"895.516\" cy=\"1523.51\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"913.36\" cy=\"1529.98\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"931.204\" cy=\"1536.45\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"949.047\" cy=\"1536.45\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"966.891\" cy=\"1542.91\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"984.735\" cy=\"1542.91\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1002.58\" cy=\"1542.91\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1020.42\" cy=\"1542.91\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1038.27\" cy=\"1549.38\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1056.11\" cy=\"1550.67\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1073.95\" cy=\"1551.97\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1091.8\" cy=\"1553.26\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1109.64\" cy=\"1554.55\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1127.49\" cy=\"1555.85\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1145.33\" cy=\"1557.14\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1163.17\" cy=\"1558.43\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1181.02\" cy=\"1559.73\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1198.86\" cy=\"1561.02\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1216.7\" cy=\"1562.31\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1234.55\" cy=\"1563.61\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1252.39\" cy=\"1564.9\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1270.24\" cy=\"1566.19\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1288.08\" cy=\"1567.49\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1305.92\" cy=\"1568.78\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1323.77\" cy=\"1570.07\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1341.61\" cy=\"1571.37\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1359.45\" cy=\"1572.66\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1377.3\" cy=\"1573.95\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1395.14\" cy=\"1575.25\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1412.99\" cy=\"1576.54\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1430.83\" cy=\"1577.83\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1448.67\" cy=\"1579.13\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1466.52\" cy=\"1580.42\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1484.36\" cy=\"1581.71\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1502.21\" cy=\"1583.01\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1520.05\" cy=\"1584.3\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1537.89\" cy=\"1585.59\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1555.74\" cy=\"1586.89\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1573.58\" cy=\"1588.18\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1591.42\" cy=\"1589.47\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1609.27\" cy=\"1590.77\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1627.11\" cy=\"1592.06\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1644.96\" cy=\"1593.35\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1662.8\" cy=\"1594.65\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1680.64\" cy=\"1595.94\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1698.49\" cy=\"1597.23\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1716.33\" cy=\"1598.53\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1734.17\" cy=\"1599.82\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1752.02\" cy=\"1601.11\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1769.86\" cy=\"1602.41\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1787.71\" cy=\"1603.7\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1805.55\" cy=\"1604.99\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1823.39\" cy=\"1606.29\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1841.24\" cy=\"1607.58\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1859.08\" cy=\"1608.87\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1876.92\" cy=\"1610.17\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1894.77\" cy=\"1611.46\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1912.61\" cy=\"1612.76\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1930.46\" cy=\"1614.05\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1948.3\" cy=\"1615.34\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1966.14\" cy=\"1616.64\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"1983.99\" cy=\"1617.93\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2001.83\" cy=\"1619.22\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2019.68\" cy=\"1620.52\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2037.52\" cy=\"1621.81\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2055.36\" cy=\"1623.1\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2073.21\" cy=\"1624.4\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2091.05\" cy=\"1625.69\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2108.89\" cy=\"1626.98\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2126.74\" cy=\"1628.28\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2144.58\" cy=\"1629.57\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2162.43\" cy=\"1630.86\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2180.27\" cy=\"1632.16\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2198.11\" cy=\"1633.45\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2215.96\" cy=\"1634.74\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2233.8\" cy=\"1636.04\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2251.64\" cy=\"1637.33\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2269.49\" cy=\"1638.62\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2287.33\" cy=\"1639.92\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2305.18\" cy=\"1641.21\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2323.02\" cy=\"1642.5\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2340.86\" cy=\"1643.8\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2358.71\" cy=\"1645.09\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2376.55\" cy=\"1646.38\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2394.39\" cy=\"1647.68\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2412.24\" cy=\"1648.97\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2430.08\" cy=\"1650.26\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2447.93\" cy=\"1651.56\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2465.77\" cy=\"1652.85\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2483.61\" cy=\"1654.14\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2501.46\" cy=\"1655.44\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2519.3\" cy=\"1656.73\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2537.15\" cy=\"1658.02\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2554.99\" cy=\"1659.32\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2572.83\" cy=\"1660.61\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2590.68\" cy=\"1661.9\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2608.52\" cy=\"1663.2\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2626.36\" cy=\"1664.49\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2644.21\" cy=\"1665.78\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2662.05\" cy=\"1667.08\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2679.9\" cy=\"1668.37\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2697.74\" cy=\"1669.66\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2715.58\" cy=\"1670.96\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2733.43\" cy=\"1672.25\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2751.27\" cy=\"1673.54\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2769.11\" cy=\"1674.84\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2786.96\" cy=\"1676.13\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2804.8\" cy=\"1677.42\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2822.65\" cy=\"1678.72\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2840.49\" cy=\"1680.01\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2858.33\" cy=\"1681.3\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2876.18\" cy=\"1682.6\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2894.02\" cy=\"1683.89\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2911.86\" cy=\"1685.18\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2929.71\" cy=\"1686.48\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2947.55\" cy=\"1687.77\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2965.4\" cy=\"1689.06\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"2983.24\" cy=\"1690.36\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"3001.08\" cy=\"1691.65\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"3018.93\" cy=\"1692.94\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"3036.77\" cy=\"1694.24\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"3054.62\" cy=\"1695.53\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip252)\" cx=\"3072.46\" cy=\"1696.82\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
|
|
|
|
"<path clip-path=\"url(#clip250)\" d=\"M609.512 2204.92 L2858.84 2204.92 L2858.84 2075.32 L609.512 2075.32 Z\" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip250)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"609.512,2204.92 2858.84,2204.92 2858.84,2075.32 609.512,2075.32 609.512,2204.92 \"/>\n",
|
|
|
|
"<circle clip-path=\"url(#clip250)\" cx=\"735.608\" cy=\"2140.12\" r=\"25.6\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"8.53333\"/>\n",
|
|
|
|
"<path clip-path=\"url(#clip250)\" d=\"M893.648 2155.56 L893.648 2143.95 L884.1 2143.95 L884.1 2139.15 L899.435 2139.15 L899.435 2157.7 Q896.05 2160.1 891.97 2161.34 Q887.89 2162.56 883.261 2162.56 Q873.133 2162.56 867.404 2156.66 Q861.704 2150.72 861.704 2140.16 Q861.704 2129.57 867.404 2123.67 Q873.133 2117.74 883.261 2117.74 Q887.485 2117.74 891.276 2118.78 Q895.095 2119.82 898.307 2121.85 L898.307 2128.07 Q895.066 2125.32 891.42 2123.93 Q887.774 2122.54 883.752 2122.54 Q875.824 2122.54 871.831 2126.97 Q867.867 2131.4 867.867 2140.16 Q867.867 2148.9 871.831 2153.33 Q875.824 2157.76 883.752 2157.76 Q886.849 2157.76 889.279 2157.23 Q891.71 2156.69 893.648 2155.56 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip250)\" d=\"M928.66 2134.29 Q927.763 2133.77 926.692 2133.54 Q925.65 2133.28 924.377 2133.28 Q919.863 2133.28 917.433 2136.23 Q915.031 2139.15 915.031 2144.65 L915.031 2161.72 L909.678 2161.72 L909.678 2129.31 L915.031 2129.31 L915.031 2134.35 Q916.709 2131.4 919.4 2129.98 Q922.091 2128.53 925.94 2128.53 Q926.489 2128.53 927.155 2128.62 Q927.821 2128.68 928.631 2128.82 L928.66 2134.29 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip250)\" d=\"M948.972 2145.43 Q942.52 2145.43 940.031 2146.91 Q937.543 2148.38 937.543 2151.94 Q937.543 2154.78 939.395 2156.45 Q941.275 2158.1 944.487 2158.1 Q948.914 2158.1 951.576 2154.98 Q954.267 2151.82 954.267 2146.62 L954.267 2145.43 L948.972 2145.43 M959.591 2143.23 L959.591 2161.72 L954.267 2161.72 L954.267 2156.8 Q952.444 2159.75 949.724 2161.17 Q947.004 2162.56 943.069 2162.56 Q938.092 2162.56 935.141 2159.78 Q932.219 2156.97 932.219 2152.29 Q932.219 2146.82 935.864 2144.04 Q939.539 2141.26 946.802 2141.26 L954.267 2141.26 L954.267 2140.74 Q954.267 2137.07 951.837 2135.07 Q949.435 2133.05 945.066 2133.05 Q942.288 2133.05 939.655 2133.71 Q937.022 2134.38 934.591 2135.71 L934.591 2130.79 Q937.514 2129.66 940.263 2129.11 Q943.011 2128.53 945.616 2128.53 Q952.647 2128.53 956.119 2132.18 Q959.591 2135.82 959.591 2143.23 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip250)\" d=\"M975.708 2156.86 L975.708 2174.05 L970.355 2174.05 L970.355 2129.31 L975.708 2129.31 L975.708 2134.23 Q977.386 2131.34 979.932 2129.95 Q982.508 2128.53 986.067 2128.53 Q991.969 2128.53 995.644 2133.22 Q999.348 2137.91 999.348 2145.55 Q999.348 2153.18 995.644 2157.87 Q991.969 2162.56 986.067 2162.56 Q982.508 2162.56 979.932 2161.17 Q977.386 2159.75 975.708 2156.86 M993.821 2145.55 Q993.821 2139.67 991.391 2136.34 Q988.989 2132.99 984.765 2132.99 Q980.54 2132.99 978.11 2136.34 Q975.708 2139.67 975.708 2145.55 Q975.708 2151.42 978.11 2154.78 Q980.54 2158.1 984.765 2158.1 Q988.989 2158.1 991.391 2154.78 Q993.821 2151.42 993.821 2145.55 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip250)\" d=\"M1035.11 2142.16 L1035.11 2161.72 L1029.79 2161.72 L1029.79 2142.33 Q1029.79 2137.73 1027.99 2135.45 Q1026.2 2133.16 1022.61 2133.16 Q1018.3 2133.16 1015.81 2135.91 Q1013.32 2138.66 1013.32 2143.4 L1013.32 2161.72 L1007.97 2161.72 L1007.97 2116.7 L1013.32 2116.7 L1013.32 2134.35 Q1015.23 2131.42 1017.81 2129.98 Q1020.41 2128.53 1023.8 2128.53 Q1029.38 2128.53 1032.25 2132 Q1035.11 2135.45 1035.11 2142.16 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip250)\" d=\"M1097.15 2121.85 L1097.15 2128.01 Q1094.2 2125.26 1090.84 2123.9 Q1087.51 2122.54 1083.75 2122.54 Q1076.34 2122.54 1072.41 2127.08 Q1068.47 2131.6 1068.47 2140.16 Q1068.47 2148.7 1072.41 2153.24 Q1076.34 2157.76 1083.75 2157.76 Q1087.51 2157.76 1090.84 2156.4 Q1094.2 2155.04 1097.15 2152.29 L1097.15 2158.39 Q1094.08 2160.48 1090.64 2161.52 Q1087.22 2162.56 1083.4 2162.56 Q1073.6 2162.56 1067.95 2156.57 Q1062.31 2150.55 1062.31 2140.16 Q1062.31 2129.75 1067.95 2123.76 Q1073.6 2117.74 1083.4 2117.74 Q1087.28 2117.74 1090.7 2118.78 Q1094.14 2119.79 1097.15 2121.85 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#c
|
|
|
|
"<path clip-path=\"url(#clip250)\" d=\"M2002.55 2155.56 L2002.55 2143.95 L1993 2143.95 L1993 2139.15 L2008.34 2139.15 L2008.34 2157.7 Q2004.95 2160.1 2000.87 2161.34 Q1996.79 2162.56 1992.16 2162.56 Q1982.03 2162.56 1976.3 2156.66 Q1970.6 2150.72 1970.6 2140.16 Q1970.6 2129.57 1976.3 2123.67 Q1982.03 2117.74 1992.16 2117.74 Q1996.39 2117.74 2000.18 2118.78 Q2004 2119.82 2007.21 2121.85 L2007.21 2128.07 Q2003.97 2125.32 2000.32 2123.93 Q1996.68 2122.54 1992.65 2122.54 Q1984.72 2122.54 1980.73 2126.97 Q1976.77 2131.4 1976.77 2140.16 Q1976.77 2148.9 1980.73 2153.33 Q1984.72 2157.76 1992.65 2157.76 Q1995.75 2157.76 1998.18 2157.23 Q2000.61 2156.69 2002.55 2155.56 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip250)\" d=\"M2037.56 2134.29 Q2036.66 2133.77 2035.59 2133.54 Q2034.55 2133.28 2033.28 2133.28 Q2028.76 2133.28 2026.33 2136.23 Q2023.93 2139.15 2023.93 2144.65 L2023.93 2161.72 L2018.58 2161.72 L2018.58 2129.31 L2023.93 2129.31 L2023.93 2134.35 Q2025.61 2131.4 2028.3 2129.98 Q2030.99 2128.53 2034.84 2128.53 Q2035.39 2128.53 2036.06 2128.62 Q2036.72 2128.68 2037.53 2128.82 L2037.56 2134.29 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip250)\" d=\"M2057.87 2145.43 Q2051.42 2145.43 2048.93 2146.91 Q2046.44 2148.38 2046.44 2151.94 Q2046.44 2154.78 2048.3 2156.45 Q2050.18 2158.1 2053.39 2158.1 Q2057.81 2158.1 2060.48 2154.98 Q2063.17 2151.82 2063.17 2146.62 L2063.17 2145.43 L2057.87 2145.43 M2068.49 2143.23 L2068.49 2161.72 L2063.17 2161.72 L2063.17 2156.8 Q2061.34 2159.75 2058.62 2161.17 Q2055.91 2162.56 2051.97 2162.56 Q2046.99 2162.56 2044.04 2159.78 Q2041.12 2156.97 2041.12 2152.29 Q2041.12 2146.82 2044.77 2144.04 Q2048.44 2141.26 2055.7 2141.26 L2063.17 2141.26 L2063.17 2140.74 Q2063.17 2137.07 2060.74 2135.07 Q2058.34 2133.05 2053.97 2133.05 Q2051.19 2133.05 2048.56 2133.71 Q2045.92 2134.38 2043.49 2135.71 L2043.49 2130.79 Q2046.41 2129.66 2049.16 2129.11 Q2051.91 2128.53 2054.52 2128.53 Q2061.55 2128.53 2065.02 2132.18 Q2068.49 2135.82 2068.49 2143.23 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip250)\" d=\"M2084.61 2156.86 L2084.61 2174.05 L2079.26 2174.05 L2079.26 2129.31 L2084.61 2129.31 L2084.61 2134.23 Q2086.29 2131.34 2088.83 2129.95 Q2091.41 2128.53 2094.97 2128.53 Q2100.87 2128.53 2104.54 2133.22 Q2108.25 2137.91 2108.25 2145.55 Q2108.25 2153.18 2104.54 2157.87 Q2100.87 2162.56 2094.97 2162.56 Q2091.41 2162.56 2088.83 2161.17 Q2086.29 2159.75 2084.61 2156.86 M2102.72 2145.55 Q2102.72 2139.67 2100.29 2136.34 Q2097.89 2132.99 2093.67 2132.99 Q2089.44 2132.99 2087.01 2136.34 Q2084.61 2139.67 2084.61 2145.55 Q2084.61 2151.42 2087.01 2154.78 Q2089.44 2158.1 2093.67 2158.1 Q2097.89 2158.1 2100.29 2154.78 Q2102.72 2151.42 2102.72 2145.55 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip250)\" d=\"M2144.01 2142.16 L2144.01 2161.72 L2138.69 2161.72 L2138.69 2142.33 Q2138.69 2137.73 2136.89 2135.45 Q2135.1 2133.16 2131.51 2133.16 Q2127.2 2133.16 2124.71 2135.91 Q2122.22 2138.66 2122.22 2143.4 L2122.22 2161.72 L2116.87 2161.72 L2116.87 2116.7 L2122.22 2116.7 L2122.22 2134.35 Q2124.13 2131.42 2126.71 2129.98 Q2129.31 2128.53 2132.7 2128.53 Q2138.28 2128.53 2141.15 2132 Q2144.01 2135.45 2144.01 2142.16 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip250)\" d=\"M2179.54 2123.32 L2179.54 2156.92 L2186.6 2156.92 Q2195.55 2156.92 2199.68 2152.87 Q2203.85 2148.81 2203.85 2140.08 Q2203.85 2131.4 2199.68 2127.37 Q2195.55 2123.32 2186.6 2123.32 L2179.54 2123.32 M2173.7 2118.52 L2185.71 2118.52 Q2198.27 2118.52 2204.14 2123.76 Q2210.01 2128.97 2210.01 2140.08 Q2210.01 2151.25 2204.11 2156.48 Q2198.21 2161.72 2185.71 2161.72 L2173.7 2161.72 L2173.7 2118.52 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip250)\" d=\"M2233.83 2145.43 Q2227.37 2145.43 2224.89 2146.91 Q2222.4 2148.38 2222.4 2151.94 Q2222.4 2154.78 2224.25 2156.45 Q2226.13 2158.1 2229.34 2158.1 Q2233.77 2158
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"metadata": {},
|
|
|
|
"output_type": "display_data"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"source": [
|
|
|
|
"img = @df df scatter(\n",
|
|
|
|
" :operations,\n",
|
|
|
|
" [:graph_ce, :graph_dt],\n",
|
|
|
|
" label=[\"Graph Compute Effort (FLOP)\" \"Graph Data Transfer (B)\"],\n",
|
|
|
|
" title=\"$(beautify_title(string(process))) Using Greedy Optimizer\",\n",
|
|
|
|
" linewidth=2,\n",
|
|
|
|
" xlabel=\"optimizer steps\",\n",
|
|
|
|
" ylims=(0.0, 1.05 * maximum(df.graph_ce)),\n",
|
|
|
|
" legend=:outerbottom,\n",
|
|
|
|
" legendcolumns=2,\n",
|
|
|
|
" legend_font_pointsize=10,\n",
|
|
|
|
" fmt=:pdf,\n",
|
|
|
|
" size=(800, 600)\n",
|
|
|
|
")\n",
|
|
|
|
"\n",
|
|
|
|
"img"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"cell_type": "code",
|
|
|
|
"execution_count": 15,
|
|
|
|
"metadata": {},
|
|
|
|
"outputs": [
|
|
|
|
{
|
|
|
|
"data": {
|
|
|
|
"image/png": "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
|
|
|
|
"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=\"800\" height=\"600\" viewBox=\"0 0 3200 2400\">\n",
|
|
|
|
"<defs>\n",
|
|
|
|
" <clipPath id=\"clip450\">\n",
|
|
|
|
" <rect x=\"0\" y=\"0\" width=\"3200\" height=\"2400\"/>\n",
|
|
|
|
" </clipPath>\n",
|
|
|
|
"</defs>\n",
|
|
|
|
"<path clip-path=\"url(#clip450)\" d=\"M0 2400 L3200 2400 L3200 0 L0 0 Z\" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
|
|
|
|
"<defs>\n",
|
|
|
|
" <clipPath id=\"clip451\">\n",
|
|
|
|
" <rect x=\"640\" y=\"0\" width=\"2241\" height=\"2241\"/>\n",
|
|
|
|
" </clipPath>\n",
|
|
|
|
"</defs>\n",
|
|
|
|
"<path clip-path=\"url(#clip450)\" d=\"M384.801 1851.29 L3152.76 1851.29 L3152.76 131.032 L384.801 131.032 Z\" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
|
|
|
|
"<defs>\n",
|
|
|
|
" <clipPath id=\"clip452\">\n",
|
|
|
|
" <rect x=\"384\" y=\"131\" width=\"2769\" height=\"1721\"/>\n",
|
|
|
|
" </clipPath>\n",
|
|
|
|
"</defs>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip452)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"646.979,1851.29 646.979,131.032 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip452)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"1428.61,1851.29 1428.61,131.032 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip452)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"2210.24,1851.29 2210.24,131.032 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip452)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"2991.88,1851.29 2991.88,131.032 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip450)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"384.801,1851.29 3152.76,1851.29 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip450)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"646.979,1851.29 646.979,1835.51 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip450)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"1428.61,1851.29 1428.61,1835.51 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip450)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"2210.24,1851.29 2210.24,1835.51 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip450)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"2991.88,1851.29 2991.88,1835.51 \"/>\n",
|
|
|
|
"<path clip-path=\"url(#clip450)\" d=\"M538.797 1931.81 L546.436 1931.81 L546.436 1905.45 L538.126 1907.11 L538.126 1902.85 L546.389 1901.19 L551.065 1901.19 L551.065 1931.81 L558.704 1931.81 L558.704 1935.75 L538.797 1935.75 L538.797 1931.81 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M568.149 1929.87 L573.033 1929.87 L573.033 1935.75 L568.149 1935.75 L568.149 1929.87 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M583.264 1901.19 L601.621 1901.19 L601.621 1905.12 L587.547 1905.12 L587.547 1913.59 Q588.565 1913.25 589.584 1913.09 Q590.602 1912.9 591.621 1912.9 Q597.408 1912.9 600.787 1916.07 Q604.167 1919.24 604.167 1924.66 Q604.167 1930.24 600.695 1933.34 Q597.223 1936.42 590.903 1936.42 Q588.727 1936.42 586.459 1936.05 Q584.213 1935.68 581.806 1934.94 L581.806 1930.24 Q583.889 1931.37 586.111 1931.93 Q588.334 1932.48 590.81 1932.48 Q594.815 1932.48 597.153 1930.38 Q599.491 1928.27 599.491 1924.66 Q599.491 1921.05 597.153 1918.94 Q594.815 1916.84 590.81 1916.84 Q588.936 1916.84 587.061 1917.25 Q585.209 1917.67 583.264 1918.55 L583.264 1901.19 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M623.38 1904.27 Q619.769 1904.27 617.94 1907.83 Q616.134 1911.37 616.134 1918.5 Q616.134 1925.61 617.94 1929.17 Q619.769 1932.72 623.38 1932.72 Q627.014 1932.72 628.82 1929.17 Q630.648 1925.61 630.648 1918.5 Q630.648 1911.37 628.82 1907.83 Q627.014 1904.27 623.38 1904.27 M623.38 1900.56 Q629.19 1900.56 632.245 1905.17 Q635.324 1909.75 635.324 1918.5 Q635.324 1927.23 632.245 1931.84 Q629.19 1936.42 623.38 1936.42 Q617.57 1936.42 614.491 1931.84 Q611.435 1927.23 611.435 1918.5 Q611.435 1909.75 614.491 1905.17 Q617.57 1900.56 623.38 1900.56 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M671.713 1910.28 L661.134 1920.91 L671.713 1931.49 L668.958 1934.29 L658.333 1923.66 L647.708 1934.29 L644.977 1931.49 L655.532 1920.91 L644.977 1910.28 L647.708 1907.48 L658.333 1918.11 L668.958 1907.48 L671.713 1910.28 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M684.074 1931.81 L691.713 1931.81 L691.713 1905.45 L683.403 1907.11 L683.403 1902.85 L691.666 1901.19 L696.342 1901.19 L696.342 1931.81 L703.981 1931.81 L703.981 1935.75 L684.074 1935.75 L684.074 1931.81 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M723.426 1904.27 Q719.814 1904.27 717.986 1907.83 Q716.18 1911.37 716.18 1918.5 Q716.18 1925.61 717.986 1929.17 Q719.814 1932.72 723.426 1932.72 Q727.06 1932.72 728.865 1929.17 Q730.694 1925.61 730.694 1918.5 Q730.694 1911.37 728.865 1907.83 Q727.06 1904.27 723.426 1904.27 M723.426 1900.56 Q729.236 1900.56 732.291 1905.17 Q735.37 1909.75 735.37 1918.5 Q735.37 1927.23 732.291 1931.84 Q729.236 1936.42 723.426 1936.42 Q717.615 1936.42 714.537 1931.84 Q711.481 1927.23 711.481 1918.5 Q711.481 1909.75 714.537 1905.17 Q717.615 1900.56 723.426 1900.56 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M748.046 1883.57 L738.454 1898.56 L748.046 1898.56 L748.046 1883.57 M747.05 1880.26 L751.827 1880.26 L751.827 1898.56 L755.833 1898.56 L755.833 1901.72 L751.827 1901.72 L751.827 1908.34 L748.046 1908.34 L748.046 1901.72 L735.37 1901.72 L735.37 1898.05 L747.05 1880.26 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M1324.52 1931.81 L1340.83 1931.81 L1340.83 1935.75 L1318.89 1935.75 L1318.89 1931.81 Q1321.55 1929.06 1326.14 1924.43 Q1330.74 1919.78 1331.92 1918.43 Q1334.17 1915.91 1335.05 1914.17 Q1335.95 1912.41 1335.95 1910.72 Q1335.95 1907.97 1334.01 1906.23 Q1332.08 1904.5 1328.98 1904.5 Q1326.78 1904.5 1324.33 1905.26 Q1321.9 1906.03 1319.12 1907.58 L1319.12 1902.85 Q1321.95 1901.72 1324.4 1901.14 Q1326.85 1900.56 1328.89 1900.56 Q1334.26 1900.56 1337.45 1903.25 Q1340.65 1905.93 1340.65 1910.42 Q1340.65 1912.55 1339.
|
|
|
|
"<polyline clip-path=\"url(#clip452)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"384.801,1586.72 3152.76,1586.72 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip452)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"384.801,1322.16 3152.76,1322.16 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip452)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"384.801,1057.59 3152.76,1057.59 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip452)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"384.801,793.028 3152.76,793.028 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip452)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"384.801,528.463 3152.76,528.463 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip452)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"384.801,263.898 3152.76,263.898 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip450)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"384.801,1851.29 384.801,131.032 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip450)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"384.801,1851.29 403.698,1851.29 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip450)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"384.801,1586.72 403.698,1586.72 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip450)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"384.801,1322.16 403.698,1322.16 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip450)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"384.801,1057.59 403.698,1057.59 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip450)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"384.801,793.028 403.698,793.028 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip450)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"384.801,528.463 403.698,528.463 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip450)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"384.801,263.898 403.698,263.898 \"/>\n",
|
|
|
|
"<path clip-path=\"url(#clip450)\" d=\"M324.856 1837.09 Q321.245 1837.09 319.417 1840.65 Q317.611 1844.19 317.611 1851.32 Q317.611 1858.43 319.417 1861.99 Q321.245 1865.54 324.856 1865.54 Q328.491 1865.54 330.296 1861.99 Q332.125 1858.43 332.125 1851.32 Q332.125 1844.19 330.296 1840.65 Q328.491 1837.09 324.856 1837.09 M324.856 1833.38 Q330.667 1833.38 333.722 1837.99 Q336.801 1842.57 336.801 1851.32 Q336.801 1860.05 333.722 1864.66 Q330.667 1869.24 324.856 1869.24 Q319.046 1869.24 315.968 1864.66 Q312.912 1860.05 312.912 1851.32 Q312.912 1842.57 315.968 1837.99 Q319.046 1833.38 324.856 1833.38 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M122.983 1606.51 L139.302 1606.51 L139.302 1610.45 L117.358 1610.45 L117.358 1606.51 Q120.02 1603.76 124.603 1599.13 Q129.209 1594.48 130.39 1593.14 Q132.635 1590.61 133.515 1588.88 Q134.418 1587.12 134.418 1585.43 Q134.418 1582.67 132.473 1580.94 Q130.552 1579.2 127.45 1579.2 Q125.251 1579.2 122.797 1579.96 Q120.367 1580.73 117.589 1582.28 L117.589 1577.56 Q120.413 1576.42 122.867 1575.84 Q125.32 1575.27 127.358 1575.27 Q132.728 1575.27 135.922 1577.95 Q139.117 1580.64 139.117 1585.13 Q139.117 1587.26 138.307 1589.18 Q137.519 1591.08 135.413 1593.67 Q134.834 1594.34 131.732 1597.56 Q128.631 1600.75 122.983 1606.51 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M149.117 1604.57 L154.001 1604.57 L154.001 1610.45 L149.117 1610.45 L149.117 1604.57 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M174.186 1578.97 Q170.575 1578.97 168.746 1582.53 Q166.941 1586.08 166.941 1593.2 Q166.941 1600.31 168.746 1603.88 Q170.575 1607.42 174.186 1607.42 Q177.82 1607.42 179.626 1603.88 Q181.454 1600.31 181.454 1593.2 Q181.454 1586.08 179.626 1582.53 Q177.82 1578.97 174.186 1578.97 M174.186 1575.27 Q179.996 1575.27 183.052 1579.87 Q186.13 1584.45 186.13 1593.2 Q186.13 1601.93 183.052 1606.54 Q179.996 1611.12 174.186 1611.12 Q168.376 1611.12 165.297 1606.54 Q162.242 1601.93 162.242 1593.2 Q162.242 1584.45 165.297 1579.87 Q168.376 1575.27 174.186 1575.27 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M204.348 1578.97 Q200.737 1578.97 198.908 1582.53 Q197.103 1586.08 197.103 1593.2 Q197.103 1600.31 198.908 1603.88 Q200.737 1607.42 204.348 1607.42 Q207.982 1607.42 209.788 1603.88 Q211.616 1600.31 211.616 1593.2 Q211.616 1586.08 209.788 1582.53 Q207.982 1578.97 204.348 1578.97 M204.348 1575.27 Q210.158 1575.27 213.214 1579.87 Q216.292 1584.45 216.292 1593.2 Q216.292 1601.93 213.214 1606.54 Q210.158 1611.12 204.348 1611.12 Q198.538 1611.12 195.459 1606.54 Q192.403 1601.93 192.403 1593.2 Q192.403 1584.45 195.459 1579.87 Q198.538 1575.27 204.348 1575.27 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M252.681 1584.99 L242.102 1595.61 L252.681 1606.19 L249.926 1608.99 L239.301 1598.37 L228.676 1608.99 L225.945 1606.19 L236.5 1595.61 L225.945 1584.99 L228.676 1582.19 L239.301 1592.81 L249.926 1582.19 L252.681 1584.99 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M265.042 1606.51 L272.681 1606.51 L272.681 1580.15 L264.371 1581.82 L264.371 1577.56 L272.635 1575.89 L277.31 1575.89 L277.31 1606.51 L284.949 1606.51 L284.949 1610.45 L265.042 1610.45 L265.042 1606.51 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M304.394 1578.97 Q300.783 1578.97 298.954 1582.53 Q297.148 1586.08 297.148 1593.2 Q297.148 1600.31 298.954 1603.88 Q300.783 1607.42 304.394 1607.42 Q308.028 1607.42 309.833 1603.88 Q311.662 1600.31 311.662 1593.2 Q311.662 1586.08 309.833 1582.53 Q308.028 1578.97 304.394 1578.97 M304.394 1575.27 Q310.204 1575.27 313.259 1579.87 Q316.338 1584.45 316.338 1593.2 Q316.338 1601.93 313.259 1606.54 Q310.204 1611.12 304.394 1611.12 Q298.583 1611.12 295.505 1606.54 Q292.449 1601.93 292.449 1593.2 Q292.449 1584.45 295.505 1579.87 Q298.583
|
|
|
|
"<path clip-path=\"url(#clip450)\" d=\"M1259.13 2191.1 L2278.43 2191.1 L2278.43 2061.5 L1259.13 2061.5 Z\" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip450)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"1259.13,2191.1 2278.43,2191.1 2278.43,2061.5 1259.13,2061.5 1259.13,2191.1 \"/>\n",
|
|
|
|
"<polyline clip-path=\"url(#clip450)\" style=\"stroke:#009af9; stroke-linecap:round; stroke-linejoin:round; stroke-width:10; stroke-opacity:1; fill:none\" points=\"1289.88,2126.3 1474.42,2126.3 \"/>\n",
|
|
|
|
"<path clip-path=\"url(#clip450)\" d=\"M1537.11 2141.74 L1537.11 2130.14 L1527.57 2130.14 L1527.57 2125.33 L1542.9 2125.33 L1542.9 2143.88 Q1539.52 2146.28 1535.44 2147.53 Q1531.36 2148.74 1526.73 2148.74 Q1516.6 2148.74 1510.87 2142.84 Q1505.17 2136.91 1505.17 2126.34 Q1505.17 2115.75 1510.87 2109.85 Q1516.6 2103.92 1526.73 2103.92 Q1530.95 2103.92 1534.74 2104.96 Q1538.56 2106 1541.77 2108.03 L1541.77 2114.25 Q1538.53 2111.5 1534.89 2110.11 Q1531.24 2108.72 1527.22 2108.72 Q1519.29 2108.72 1515.3 2113.15 Q1511.33 2117.58 1511.33 2126.34 Q1511.33 2135.08 1515.3 2139.51 Q1519.29 2143.94 1527.22 2143.94 Q1530.31 2143.94 1532.75 2143.42 Q1535.18 2142.87 1537.11 2141.74 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M1572.13 2120.47 Q1571.23 2119.95 1570.16 2119.72 Q1569.12 2119.46 1567.84 2119.46 Q1563.33 2119.46 1560.9 2122.41 Q1558.5 2125.33 1558.5 2130.83 L1558.5 2147.9 L1553.14 2147.9 L1553.14 2115.49 L1558.5 2115.49 L1558.5 2120.53 Q1560.18 2117.58 1562.87 2116.16 Q1565.56 2114.71 1569.41 2114.71 Q1569.96 2114.71 1570.62 2114.8 Q1571.29 2114.86 1572.1 2115 L1572.13 2120.47 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M1592.44 2131.61 Q1585.99 2131.61 1583.5 2133.09 Q1581.01 2134.56 1581.01 2138.12 Q1581.01 2140.96 1582.86 2142.64 Q1584.74 2144.28 1587.95 2144.28 Q1592.38 2144.28 1595.04 2141.16 Q1597.73 2138.01 1597.73 2132.8 L1597.73 2131.61 L1592.44 2131.61 M1603.06 2129.41 L1603.06 2147.9 L1597.73 2147.9 L1597.73 2142.98 Q1595.91 2145.93 1593.19 2147.35 Q1590.47 2148.74 1586.54 2148.74 Q1581.56 2148.74 1578.61 2145.96 Q1575.68 2143.16 1575.68 2138.47 Q1575.68 2133 1579.33 2130.22 Q1583.01 2127.44 1590.27 2127.44 L1597.73 2127.44 L1597.73 2126.92 Q1597.73 2123.25 1595.3 2121.25 Q1592.9 2119.23 1588.53 2119.23 Q1585.75 2119.23 1583.12 2119.89 Q1580.49 2120.56 1578.06 2121.89 L1578.06 2116.97 Q1580.98 2115.84 1583.73 2115.29 Q1586.48 2114.71 1589.08 2114.71 Q1596.11 2114.71 1599.59 2118.36 Q1603.06 2122 1603.06 2129.41 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M1619.17 2143.04 L1619.17 2160.23 L1613.82 2160.23 L1613.82 2115.49 L1619.17 2115.49 L1619.17 2120.41 Q1620.85 2117.52 1623.4 2116.13 Q1625.97 2114.71 1629.53 2114.71 Q1635.44 2114.71 1639.11 2119.4 Q1642.81 2124.09 1642.81 2131.73 Q1642.81 2139.37 1639.11 2144.05 Q1635.44 2148.74 1629.53 2148.74 Q1625.97 2148.74 1623.4 2147.35 Q1620.85 2145.93 1619.17 2143.04 M1637.29 2131.73 Q1637.29 2125.85 1634.86 2122.53 Q1632.46 2119.17 1628.23 2119.17 Q1624.01 2119.17 1621.58 2122.53 Q1619.17 2125.85 1619.17 2131.73 Q1619.17 2137.6 1621.58 2140.96 Q1624.01 2144.28 1628.23 2144.28 Q1632.46 2144.28 1634.86 2140.96 Q1637.29 2137.6 1637.29 2131.73 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M1678.58 2128.34 L1678.58 2147.9 L1673.25 2147.9 L1673.25 2128.51 Q1673.25 2123.91 1671.46 2121.63 Q1669.67 2119.34 1666.08 2119.34 Q1661.77 2119.34 1659.28 2122.09 Q1656.79 2124.84 1656.79 2129.59 L1656.79 2147.9 L1651.44 2147.9 L1651.44 2102.88 L1656.79 2102.88 L1656.79 2120.53 Q1658.7 2117.61 1661.27 2116.16 Q1663.88 2114.71 1667.26 2114.71 Q1672.85 2114.71 1675.71 2118.18 Q1678.58 2121.63 1678.58 2128.34 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M1740.61 2108.03 L1740.61 2114.19 Q1737.66 2111.44 1734.31 2110.08 Q1730.98 2108.72 1727.22 2108.72 Q1719.81 2108.72 1715.88 2113.27 Q1711.94 2117.78 1711.94 2126.34 Q1711.94 2134.88 1715.88 2139.42 Q1719.81 2143.94 1727.22 2143.94 Q1730.98 2143.94 1734.31 2142.58 Q1737.66 2141.22 1740.61 2138.47 L1740.61 2144.57 Q1737.55 2146.66 1734.1 2147.7 Q1730.69 2148.74 1726.87 2148.74 Q1717.06 2148.74 1711.42 2142.75 Q1705.78 2136.73 1705.78 2126.34 Q1705.78 2115.93 1711.42 2109.94 Q1717.06 2103.92 1726.87 2103.92 Q1730.75 2103.92 1734.16 2104.96 Q1737.61 2105.97 1740.61 2108.03 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"u
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"metadata": {},
|
|
|
|
"output_type": "display_data"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "stderr",
|
|
|
|
"output_type": "stream",
|
|
|
|
"text": [
|
|
|
|
"┌ Warning: n° of legend_column=2 is larger than n° of series=1\n",
|
|
|
|
"└ @ Plots /home/antonr/.julia/packages/Plots/sxUvK/src/backends/gr.jl:1235\n",
|
|
|
|
"┌ Warning: n° of legend_column=2 is larger than n° of series=1\n",
|
|
|
|
"└ @ Plots /home/antonr/.julia/packages/Plots/sxUvK/src/backends/gr.jl:1235\n"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"source": [
|
|
|
|
"img = @df df plot(\n",
|
|
|
|
" :graph_dt,\n",
|
|
|
|
" :graph_ce,\n",
|
|
|
|
" label=\"Graph Compute Intensity\",\n",
|
|
|
|
" title=\"$(beautify_title(string(process))) Using Greedy Optimizer\",\n",
|
|
|
|
" linewidth=2,\n",
|
|
|
|
" xlabel=\"data transfer (Byte)\",\n",
|
|
|
|
" ylabel=\"compute effort (FLOPS)\",\n",
|
|
|
|
" ylims=(0.0, 1.05 * maximum(df.graph_ce)),\n",
|
|
|
|
" legend=:outerbottom,\n",
|
|
|
|
" legendcolumns=2,\n",
|
|
|
|
" legend_font_pointsize=10,\n",
|
|
|
|
" fmt=:pdf,\n",
|
|
|
|
" size=(800, 600)\n",
|
|
|
|
")\n",
|
2023-12-18 14:31:52 +01:00
|
|
|
"\n",
|
|
|
|
"img"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"metadata": {
|
|
|
|
"kernelspec": {
|
2024-02-20 21:18:19 +01:00
|
|
|
"display_name": "Julia 1.9.4",
|
2023-12-18 14:31:52 +01:00
|
|
|
"language": "julia",
|
|
|
|
"name": "julia-1.9"
|
|
|
|
},
|
|
|
|
"language_info": {
|
|
|
|
"file_extension": ".jl",
|
|
|
|
"mimetype": "application/julia",
|
|
|
|
"name": "julia",
|
|
|
|
"version": "1.9.4"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"nbformat": 4,
|
|
|
|
"nbformat_minor": 2
|
|
|
|
}
|