Skip to content
LatheMacro.svg 138 KiB
Newer Older
electrolab's avatar
electrolab committed
2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683
           style="fill:url(#linearGradient15620);fill-opacity:1;fill-rule:evenodd;stroke:none"
           d="m 431.63992,278.84293 c 0,0 16.76667,34.28784 -10.56264,92.11659 -14.5972,30.88763 -54.48256,53.83621 -54.48256,53.83621 l 45.91256,26.50763 c 0,0 17.9004,9.52211 16.06877,21.96065 -3.00475,20.40522 20.3867,43.06884 40.70754,46.59943 31.42038,5.45905 64.16822,-21.27959 83.5576,-46.59943 24.16865,-31.56092 36.9367,-72.55409 28.92377,-115.69513 -12.46881,-67.13127 -61.22497,-44.06626 -63.20995,-41.90848 -9.52528,10.35446 -25.70389,-1.47719 -25.70389,-1.47719 z"
           id="path15612"
           inkscape:connector-curvature="0" />
        <path
           style="fill:#6c6d75;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="m 370.42874,335.60824 v -92.10562 l 61.21118,35.34031 c 0,0 17.68475,34.02624 -10.56264,92.11659 -15.64374,32.17113 -54.48256,53.83621 -54.48256,53.83621 l -77.49969,-44.74447 z"
           id="path15610"
           inkscape:connector-curvature="0" />
        <path
           style="fill:url(#linearGradient15662);fill-opacity:1;fill-rule:evenodd;stroke:none"
           d="m 53.63813,347.392 c 0,0 -4.38418,43.05857 14.46189,77.66571 11.63875,21.37232 34.81566,46.59942 34.81566,46.59942 l 295.31679,166.04394 c 0,0 -44.23864,-23.96147 -64.46216,-57.84757 -21.27498,-35.6479 -20.28288,-70.43325 -20.28288,-70.43325 L 68.10002,367.74577 C 51.97563,358.43635 53.63813,347.392 53.63813,347.392 Z"
           id="path15654"
           inkscape:connector-curvature="0" />
        <path
           style="fill:none;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="m 53.63813,347.392 c 0,0 -3.60738,36.78488 9.6344,67.46761 15.71995,36.42498 39.64315,56.79752 39.64315,56.79752 l 293.73667,165.15551"
           id="path15664"
           inkscape:connector-curvature="0" />
        <path
           style="fill:#7f7f78;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 210.57642,243.48064 69.17127,325.96697 c 0,0 -14.894,5.11772 -15.53314,21.42503 -0.5571,14.21465 14.46189,20.35377 14.46189,20.35377 l 245.38741,141.67448 c 0,0 15.2959,7.81199 29.92414,8.83631 16.72998,1.17149 30.53066,-4.82063 30.53066,-4.82063 l 40.84334,-23.58091 c 0,0 13.91326,-6.72259 13.79048,-16.59101 -0.18613,-14.95913 -16.06877,-21.96065 -16.06877,-21.96065 l -123.41225,-71.2521 81.33371,-44.44302 z"
           id="path15608"
           inkscape:connector-curvature="0" />
        <path
           style="fill:url(#linearGradient15674);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="m 219.00754,56.818947 c 0,0 33.87245,-21.762653 71.3771,-26.517304 21.55536,-2.73268 64.81069,6.963133 64.81069,6.963133 L 633.258,197.80433 c 0,0 -14.91472,-15.90672 -75.60137,-10.05564 -20.23386,1.95083 -58.29951,17.89134 -58.29951,17.89134 L 244.85647,58.154174 c -13.33349,-7.726902 -25.84893,-1.335227 -25.84893,-1.335227 z"
           id="path15666"
           inkscape:connector-curvature="0" />
        <path
           style="fill:none;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#marker17722);marker-end:url(#marker18354)"
           d="M 92.98301,312.07678 598.7801,599.71772"
           id="path15676"
           inkscape:connector-curvature="0"
           sodipodi:nodetypes="cc" />
        <path
           style="fill:none;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#marker17424);marker-end:url(#marker18038)"
           d="M 384.75981,507.1904 587.03303,623.28528"
           id="path15678"
           inkscape:connector-curvature="0"
           sodipodi:nodetypes="cc" />
        <path
           style="fill:none;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 313.48743,509.42025 V 625.40387"
           id="path15680"
           inkscape:connector-curvature="0" />
        <path
           style="fill:none;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 680.70915,326.49702 V 426.66459"
           id="path15682"
           inkscape:connector-curvature="0" />
        <path
           style="fill:none;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 412.50728,451.30336 V 412.20269"
           id="path15684"
           inkscape:connector-curvature="0" />
        <path
           style="fill:none;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 583.74997,394.02022 V 315.25446"
           id="path15686"
           inkscape:connector-curvature="0" />
        <path
           style="fill:none;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#marker15970)"
           d="m 515.74719,224.45902 -55.92549,23.626"
           id="path15688"
           inkscape:connector-curvature="0"
           sodipodi:nodetypes="cc" />
        <path
           style="fill:none;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#marker16256);marker-end:url(#marker16822)"
           d="M 313.48743,613.06229 680.70915,401.04673"
           id="path16244"
           inkscape:connector-curvature="0" />
        <path
           style="fill:none;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#marker16530);marker-end:url(#marker17114)"
           d="M 412.50728,427.20021 583.74997,328.3332"
           id="path16248"
           inkscape:connector-curvature="0" />
      </g>
      <text
         xml:space="preserve"
         style="font-style:normal;font-weight:normal;font-size:26.66666603px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
         x="344"
         y="214"
         id="text5392"><tspan
           sodipodi:role="line"
           id="tspan5390"
           x="344"
           y="214">Radius</tspan></text>
      <text
         xml:space="preserve"
         style="font-style:normal;font-weight:normal;font-size:26.66666603px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
         x="688"
         y="404"
         id="text5396"><tspan
           sodipodi:role="line"
           id="tspan5394"
           x="688"
           y="404">Diameter</tspan></text>
      <text
         xml:space="preserve"
         style="font-style:normal;font-weight:normal;font-size:26.66666603px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
         x="619"
         y="623"
         id="text5400"><tspan
           sodipodi:role="line"
           id="tspan5398"
           x="619"
           y="623">Depth</tspan></text>
    </g>
  </g>
  <g
     inkscape:groupmode="layer"
     id="layer4"
     inkscape:label="06_CHAMFER"
     style="display:inline">
    <g
       style="display:inline"
       id="a04">
      <g
         id="g7092">
        <rect
           style="fill:url(#linearGradient7090);fill-opacity:1;stroke:none"
           id="rect7082"
           width="889.44305"
           height="687.24048"
           x="0"
           y="0.62025315" />
        <path
           style="fill:#5c5c5c;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 342.38098,323.10142 184.94031,232.20301 V 67.82764 l 34.42142,-19.873221 250.76181,144.777391 30.44925,52.73965 v 40.513 l -31.72831,18.31836 -126.42305,-72.31869 z"
           id="path12242"
           inkscape:connector-curvature="0" />
        <path
           style="fill:#7f7f78;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 184.94031,232.20301 39.84619,315.97314 v 38.18534 l 252.22962,145.62483 h 63.18248 l 32.88581,-18.98662 v -39.52698 l -122.53435,-70.74525 76.77123,-47.42304 z"
           id="path12244"
           inkscape:connector-curvature="0" />
        <path
           style="fill:#b1b1b1;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="m 342.38098,323.10142 0.0405,-91.11729 76.8876,43.98257 c 0,0 -4.22098,53.06341 -23.90381,83.4942 -20.73,32.04974 -53.06354,55.36476 -53.06354,55.36476 l -76.73193,-44.3012 z"
           id="path12246"
           inkscape:connector-curvature="0" />
        <path
           style="fill:url(#linearGradient12256);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="m 419.30906,275.9667 49.53542,28.33612 c 0,0 42.21912,-23.99052 65.93871,4.40632 22.92502,27.44558 15.47563,81.93096 -19.69472,136.34801 -16.00933,24.77029 -57.71712,59.14075 -94.68612,49.23679 -30.1448,-8.07576 -32.25825,-53.02423 -32.25825,-53.02423 l -45.80239,-26.44405 c 0,0 40.01759,-33.38188 53.06354,-55.36476 16.69474,-28.13122 23.90381,-83.4942 23.90381,-83.4942 z"
           id="path12248"
           inkscape:connector-curvature="0" />
        <path
           style="fill:url(#linearGradient12268);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="m 500.57279,245.47146 v 40.513 c 0,0 96.71934,-50.88521 109.2018,48.4793 7.61372,60.60766 -27.75574,142.03387 -72.71894,179.5249 -41.99141,35.0131 -99.4831,64.57828 -136.34802,14.39228 -9.71188,-13.22126 -12.56353,-47.58425 -12.56353,-47.58425 l -32.88581,18.98662 c 0,0 -4.86942,79.22347 44.69186,94.49917 65.61094,20.2225 121.76528,-11.3096 184.82731,-90.89867 48.42341,-61.114 72.11416,-179.70608 52.26673,-228.00419 -35.3194,-85.94869 -136.4714,-29.90816 -136.4714,-29.90816 z"
           id="path12260"
           inkscape:connector-curvature="0" />
        <path
           style="fill:url(#linearGradient12278);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="m 500.57279,245.47146 -30.44925,-52.73965 c 0,0 75.75214,-51.89144 137.37859,-3.70594 44.73062,34.97472 43.6888,110.93885 34.07394,166.89968 C 625.90274,447.1481 590.41181,514.68232 532.64055,559.22637 488.7393,593.07605 421.05247,648.5369 337.83605,610.18976 294.87016,590.39054 292.07581,499.78331 292.07581,499.78331 h 63.18248 c 0,0 1.74066,60.67232 21.69779,79.58928 31.4201,29.78245 95.11661,31.63136 155.68459,-20.14632 58.27061,-49.81373 96.44728,-117.00248 108.9354,-203.30073 4.20524,-29.06002 16.92937,-95.66487 -47.98525,-124.39104 -35.46231,-15.69287 -93.01803,13.93696 -93.01803,13.93696 z"
           id="path12270"
           inkscape:connector-curvature="0" />
        <path
           style="fill:url(#linearGradient12288);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="m 219.36173,47.954419 c 0,0 19.02664,-21.49815 76.85933,-24.337086 12.85936,-0.63125 44.64494,7.093349 44.64494,7.093349 L 607.50213,189.02587 c 0,0 -22.29582,-22.31878 -71.15213,-19.9455 -23.41342,1.13734 -66.22646,23.65144 -66.22646,23.65144 z"
           id="path12280"
           inkscape:connector-curvature="0" />
        <path
           style="fill:url(#linearGradient12298);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="m 39.84619,354.15848 c 0,0 -3.97473,30.29742 15.2406,70.22917 4.73835,9.84683 24.44552,35.81928 24.44552,35.81928 l 258.30374,149.98283 c 0,0 -24.52942,-9.74098 -34.85232,-47.97206 -6.89054,-25.51932 -10.90792,-62.43439 -10.90792,-62.43439 z"
           id="path12290"
           inkscape:connector-curvature="0" />
        <path
           style="fill:none;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#marker12328);marker-end:url(#marker12756)"
           d="M 87.86152,288.25147 598.7801,599.71772"
           id="path12300"
           inkscape:connector-curvature="0"
           sodipodi:nodetypes="cc" />
        <path
           style="fill:none;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#marker11623);marker-end:url(#marker12542)"
           d="M 371.70119,490.29 587.03303,623.28528"
           id="path12302"
           inkscape:connector-curvature="0"
           sodipodi:nodetypes="cc" />
        <path
           style="fill:none;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 294.07581,497.78331 V 625.612"
           id="path12304"
           inkscape:connector-curvature="0" />
        <path
           style="fill:none;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="m 648.90703,289.31573 v 141.6216"
           id="path12306"
           inkscape:connector-curvature="0" />
        <path
           style="fill:none;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="m 470.84448,302.30282 -0.72032,42.28076"
           id="path12312"
           inkscape:connector-curvature="0" />
        <path
           style="fill:none;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="m 502.57279,283.98446 0.12336,77.26389"
           id="path12314"
           inkscape:connector-curvature="0" />
        <path
           style="fill:none;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#marker13722);marker-end:url(#marker14216)"
           d="M 388.1441,441.60362 547.82456,346.73394"
           id="path12984"
           inkscape:connector-curvature="0" />
        <path
           style="fill:none;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#marker13960);marker-end:url(#marker14472)"
           d="M 292.07581,599.47725 646.90703,394.61534"
           id="path12986"
           inkscape:connector-curvature="0" />
        <path
           style="fill:none;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#marker13228);marker-mid:url(#marker13472)"
           d="M 500.66469,343.55126 468.49227,324.97651 427.62978,301.38453"
           id="path12988"
           inkscape:connector-curvature="0" />
      </g>
    </g>
    <text
       xml:space="preserve"
       style="font-style:normal;font-weight:normal;font-size:26.66666603px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
       x="279"
       y="236"
       id="text674"><tspan
         sodipodi:role="line"
         id="tspan672"
         x="279"
         y="236">Chamfer</tspan></text>
    <text
       xml:space="preserve"
       style="font-style:normal;font-weight:normal;font-size:26.66666603px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
       x="618"
       y="627"
       id="text678"><tspan
         sodipodi:role="line"
         id="tspan676"
         x="618"
         y="627">Depth</tspan></text>
    <text
       xml:space="preserve"
       style="font-style:normal;font-weight:normal;font-size:26.66666603px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
       x="687"
       y="369"
       id="text682"><tspan
         sodipodi:role="line"
         id="tspan680"
         x="687"
         y="369">Diameter</tspan></text>
  </g>
  <g
     inkscape:groupmode="layer"
     id="layer5"
     inkscape:label="07_THREADS"
     style="display:inline">
    <a
       id="a05"
       inkscape:label="#a05">
      <g
         transform="translate(-0.28715433,-0.64758735)"
         id="g7206">
        <rect
           y="0"
           x="0"
           height="688.48102"
           width="890.06329"
           id="rect7196"
           style="fill:url(#linearGradient7204-3);fill-opacity:1;stroke:none" />
        <g
           transform="matrix(1.6038506,0,0,1.5411204,-204.80042,21.76814)"
           id="g22994">
          <path
             style="fill:#5c5d60;fill-opacity:1;fill-rule:evenodd;stroke:none"
             d="m 348.82617,84.023878 c 0,0 17.28461,-12.062348 36.4895,-12.386342 22.85028,-0.385493 37.38499,10.513432 37.38499,10.513432 0,0 -21.66892,-3.65452 -37.71976,-0.470452 -16.07798,3.189451 -31.46801,13.39064 -31.46801,13.39064 z"
             id="path18708"
             inkscape:connector-curvature="0" />
          <path
             style="fill:#9b9c9f;fill-opacity:1;fill-rule:evenodd;stroke:none"
             d="m 431.51337,85.362942 c 0,0 -22.66137,-5.104629 -39.83715,-2.008596 -10.1391,1.827631 -23.76839,11.382044 -23.76839,11.382044 l -4.35196,-2.343362 c 0,0 14.10281,-10.069142 25.23378,-11.447702 12.34146,-0.908828 25.60687,-3.24482 42.72372,4.417616 z"
             id="path18710"
             inkscape:connector-curvature="0" />
          <path
             style="fill:#bbbdc2;fill-opacity:1;fill-rule:evenodd;stroke:none"
             d="m 353.51289,95.071156 c 0,0 0.66512,3.718953 2.10885,4.57869 2.65848,1.583114 4.69666,-1.926837 4.69666,-1.926837 l 3.33483,-5.427341 c 0,0 6.5287,-4.242043 9.98733,-6.013856 3.16069,-1.619182 9.79261,-4.196463 9.79261,-4.196463 0,0 -9.8556,2.355559 -17.99287,6.486501 -4.79655,2.435 -11.92741,6.499306 -11.92741,6.499306 z"
             id="path18712"
             inkscape:connector-curvature="0" />
        </g>
        <g
           transform="matrix(1.6038506,0,0,1.5411204,-174.74259,38.539879)"
           id="g22999">
          <path
             id="path23001"
             d="m 348.82617,84.023878 c 0,0 17.28461,-12.062348 36.4895,-12.386342 22.85028,-0.385493 37.38499,10.513432 37.38499,10.513432 0,0 -21.66892,-3.65452 -37.71976,-0.470452 -16.07798,3.189451 -31.46801,13.39064 -31.46801,13.39064 z"
             style="fill:#5c5d60;fill-opacity:1;fill-rule:evenodd;stroke:none"
             inkscape:connector-curvature="0" />
          <path
             id="path23003"
             d="m 431.51337,85.362942 c 0,0 -22.66137,-5.104629 -39.83715,-2.008596 -10.1391,1.827631 -23.76839,11.382044 -23.76839,11.382044 l -4.35196,-2.343362 c 0,0 14.10281,-10.069142 25.23378,-11.447702 12.34146,-0.908828 25.60687,-3.24482 42.72372,4.417616 z"
             style="fill:#9b9c9f;fill-opacity:1;fill-rule:evenodd;stroke:none"
             inkscape:connector-curvature="0" />
          <path
             id="path23005"
             d="m 353.51289,95.071156 c 0,0 0.66512,3.718953 2.10885,4.57869 2.65848,1.583114 4.69666,-1.926837 4.69666,-1.926837 l 3.33483,-5.427341 c 0,0 6.5287,-4.242043 9.98733,-6.013856 3.16069,-1.619182 9.79261,-4.196463 9.79261,-4.196463 0,0 -9.8556,2.355559 -17.99287,6.486501 -4.79655,2.435 -11.92741,6.499306 -11.92741,6.499306 z"
             style="fill:#bbbdc2;fill-opacity:1;fill-rule:evenodd;stroke:none"
             inkscape:connector-curvature="0" />
        </g>
        <g
           id="g23007"
           transform="matrix(1.6038506,0,0,1.5411204,-144.54819,55.574086)">
          <path
             style="fill:#5c5d60;fill-opacity:1;fill-rule:evenodd;stroke:none"
             d="m 348.82617,84.023878 c 0,0 17.28461,-12.062348 36.4895,-12.386342 22.85028,-0.385493 37.38499,10.513432 37.38499,10.513432 0,0 -21.66892,-3.65452 -37.71976,-0.470452 -16.07798,3.189451 -31.46801,13.39064 -31.46801,13.39064 z"
             id="path23009"
             inkscape:connector-curvature="0" />
          <path
             style="fill:#9b9c9f;fill-opacity:1;fill-rule:evenodd;stroke:none"
             d="m 431.51337,85.362942 c 0,0 -22.66137,-5.104629 -39.83715,-2.008596 -10.1391,1.827631 -23.76839,11.382044 -23.76839,11.382044 l -4.35196,-2.343362 c 0,0 14.10281,-10.069142 25.23378,-11.447702 12.34146,-0.908828 25.60687,-3.24482 42.72372,4.417616 z"
             id="path23011"
             inkscape:connector-curvature="0" />
          <path
             style="fill:#bbbdc2;fill-opacity:1;fill-rule:evenodd;stroke:none"
             d="m 353.51289,95.071156 c 0,0 0.66512,3.718953 2.10885,4.57869 2.65848,1.583114 4.69666,-1.926837 4.69666,-1.926837 l 3.33483,-5.427341 c 0,0 6.5287,-4.242043 9.98733,-6.013856 3.16069,-1.619182 9.79261,-4.196463 9.79261,-4.196463 0,0 -9.8556,2.355559 -17.99287,6.486501 -4.79655,2.435 -11.92741,6.499306 -11.92741,6.499306 z"
             id="path23013"
             inkscape:connector-curvature="0" />
        </g>
        <g
           transform="matrix(1.6038506,0,0,1.5411204,-114.90009,72.21459)"
           id="g23015">
          <path
             id="path23017"
             d="m 348.82617,84.023878 c 0,0 17.28461,-12.062348 36.4895,-12.386342 22.85028,-0.385493 37.38499,10.513432 37.38499,10.513432 0,0 -21.66892,-3.65452 -37.71976,-0.470452 -16.07798,3.189451 -31.46801,13.39064 -31.46801,13.39064 z"
             style="fill:#5c5d60;fill-opacity:1;fill-rule:evenodd;stroke:none"
             inkscape:connector-curvature="0" />
          <path
             id="path23019"
             d="m 431.51337,85.362942 c 0,0 -22.66137,-5.104629 -39.83715,-2.008596 -10.1391,1.827631 -23.76839,11.382044 -23.76839,11.382044 l -4.35196,-2.343362 c 0,0 14.10281,-10.069142 25.23378,-11.447702 12.34146,-0.908828 25.60687,-3.24482 42.72372,4.417616 z"
             style="fill:#9b9c9f;fill-opacity:1;fill-rule:evenodd;stroke:none"
             inkscape:connector-curvature="0" />
          <path
             id="path23021"
             d="m 353.51289,95.071156 c 0,0 0.66512,3.718953 2.10885,4.57869 2.65848,1.583114 4.69666,-1.926837 4.69666,-1.926837 l 3.33483,-5.427341 c 0,0 6.5287,-4.242043 9.98733,-6.013856 3.16069,-1.619182 9.79261,-4.196463 9.79261,-4.196463 0,0 -9.8556,2.355559 -17.99287,6.486501 -4.79655,2.435 -11.92741,6.499306 -11.92741,6.499306 z"
             style="fill:#bbbdc2;fill-opacity:1;fill-rule:evenodd;stroke:none"
             inkscape:connector-curvature="0" />
        </g>
        <g
           id="g23023"
           transform="matrix(1.6038506,0,0,1.5411204,-84.569107,89.11756)">
          <path
             style="fill:#5c5d60;fill-opacity:1;fill-rule:evenodd;stroke:none"
             d="m 348.82617,84.023878 c 0,0 17.28461,-12.062348 36.4895,-12.386342 22.85028,-0.385493 37.38499,10.513432 37.38499,10.513432 0,0 -21.66892,-3.65452 -37.71976,-0.470452 -16.07798,3.189451 -31.46801,13.39064 -31.46801,13.39064 z"
             id="path23025"
             inkscape:connector-curvature="0" />
          <path
             style="fill:#9b9c9f;fill-opacity:1;fill-rule:evenodd;stroke:none"
             d="m 438.54346,92.058262 c 0,0 -26.67857,-9.456587 -43.85435,-6.360554 -10.1391,1.827631 -26.78128,9.038682 -26.78128,9.038682 l -4.35196,-2.343362 c 0,0 13.09851,-9.064844 24.22948,-10.443404 12.34146,-0.908828 33.64126,2.446202 50.75811,10.108638 z"
             id="path23027"
             inkscape:connector-curvature="0" />
          <path
             style="fill:#bbbdc2;fill-opacity:1;fill-rule:evenodd;stroke:none"
             d="m 353.51289,95.071156 c 0,0 0.66512,3.718953 2.10885,4.57869 2.65848,1.583114 4.69666,-1.926837 4.69666,-1.926837 l 3.33483,-5.427341 c 0,0 6.5287,-4.242043 9.98733,-6.013856 3.16069,-1.619182 9.79261,-4.196463 9.79261,-4.196463 0,0 -9.8556,2.355559 -17.99287,6.486501 -4.79655,2.435 -11.92741,6.499306 -11.92741,6.499306 z"
             id="path23029"
             inkscape:connector-curvature="0" />
        </g>
        <path
           id="path23050"
           d="m 318.15444,300.3584 v -87.7055 l 35.43459,18.88111 9.28522,-10.73376 8.34874,4.63162 1.10879,16.84502 8.90523,4.94035 10.17021,-10.58779 8.45942,4.69302 -0.18552,16.12698 c 0,0 -8.00825,38.22129 -16.08018,55.94493 -7.04882,15.47718 -16.42902,30.19072 -27.81899,43.06071 -12.9528,14.6359 -45.21775,37.87112 -45.21775,37.87112 l -1.48208,-8.88577 -7.66408,-4.25178 -16.59081,6.73455 -8.80327,-4.88376 5.89459,-12.66852 -8.57047,-4.75462 -19.52407,5.10729 -7.78793,-4.3205 7.18256,-11.95398 -13.82156,-9.9916 z"
           style="fill:#65666d;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.57217264;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           inkscape:connector-curvature="0" />
        <path
           id="path23056"
           d="M 246.03608,366.4031 455.07683,482.3724"
           style="fill:#ff0000;fill-rule:evenodd;stroke:#dc26c9;stroke-width:0.47165182;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           inkscape:connector-curvature="0" />
        <path
           id="path23060"
           d="m 366.79206,223.82823 -3.71827,-2.01452 -9.18545,10.67899 z"
           style="fill:#adaeb3;fill-opacity:1;fill-rule:evenodd;stroke:none"
           inkscape:connector-curvature="0" />
        <path
           style="fill:#adaeb3;fill-opacity:1;fill-rule:evenodd;stroke:none"
           d="m 394.92668,239.5763 -3.71827,-2.01452 -9.18545,10.679 z"
           id="path23062"
           inkscape:connector-curvature="0" />
        <path
           id="path23064"
           d="m 318.15444,300.3584 -78.75736,44.09912 13.82156,9.9916 -7.18256,11.95398 7.78793,4.3205 19.52407,-5.10729 8.57047,4.75462 -5.89459,12.66852 8.80327,4.88376 16.59081,-6.73455 7.66408,4.25178 -3.84917,13.80324 7.46713,4.14253 18.12313,-5.8845 8.54838,4.74238 -4.84957,13.24826 8.01376,4.44577 15.25871,-7.47357 7.52562,4.17498 -1.00722,15.37985 9.05019,5.02077 16.50725,-6.78094 9.70726,5.38529 -6.46544,12.35182 9.75208,5.41015 18.74738,-5.53817 5.227,2.89977 -71.08022,40.10109 -6.22591,-3.5469 4.26505,-11.22458 -9.81099,-5.62639 -17.35698,5.03424 -5.86091,-3.07712 4.3756,-11.8794 -9.56162,-5.75219 -17.77761,5.1436 -6.95548,-3.98998 4.56416,-11.89501 -9.53738,-5.38644 -17.19788,5.16601 -6.68134,-4.20667 4.28761,-11.58599 -9.46116,-5.39554 -16.64002,5.19572 -7.69563,-4.26929 4.08477,-12.16098 -8.5945,-4.54227 -16.92364,4.95945 -8.37991,-4.79568 4.70903,-11.81466 -9.82994,-4.82971 -17.66099,4.87718 -13.85023,-9.27804 -6.24955,1.60907 L 53.10708,328.4116 210.53815,241.07375 Z"
           style="fill:#7f7f78;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.57217264px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           inkscape:connector-curvature="0" />
        <path
           id="path23074"
           d="M 210.53815,241.07375 V 66.635333 l 106.34343,58.996017 v 6.35852 l 38.77223,21.50963 4.27958,18.9674 8.19971,4.5747 10.10199,-12.7064 7.03368,3.43312 4.74421,21.46701 10.27356,5.72374 7.86235,-13.62691 7.7809,3.91489 3.91486,20.61916 9.90042,5.43553 8.4986,-12.77957 7.49949,3.2644 4.99896,20.88634 8.57975,5.03711 8.65302,-12.67734 7.78588,5.53457 4.51665,18.32054 9.93702,5.96047 8.10923,-12.94045 6.79409,3.01212 v 64.79257 l -5.41098,13.22807 -7.1872,-3.98723 -1.28033,-17.03626 -10.66007,-5.9639 -9.33829,11.19541 -9.54559,-5.42139 0.26712,-15.85985 -11.86607,-6.50173 -9.36998,10.85445 -10.81989,-6.00252 0.21224,-16.2231 -10.22716,-5.55734 -9.21152,10.89777 -11.1198,-6.03768 0.29594,-15.85343 -9.1134,-5.24384 -8.78695,11.46103 -10.40668,-5.81825 0.0168,-16.13615 -8.6918,-4.90631 -8.80854,10.18272 -35.91127,-18.15295 -0.2018,87.64138 z"
           style="fill:#5c5c5c;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.57217264px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           inkscape:connector-curvature="0" />
        <path
           id="path23076"
           d="m 424.01732,255.58685 -3.71827,-2.01452 -9.18544,10.67899 z"
           style="fill:#adaeb3;fill-opacity:1;fill-rule:evenodd;stroke:none"
           inkscape:connector-curvature="0" />
        <path
           style="fill:#adaeb3;fill-opacity:1;fill-rule:evenodd;stroke:none"
           d="m 454.33715,272.25357 -3.71827,-2.01452 -9.18544,10.679 z"
           id="path23078"
           inkscape:connector-curvature="0" />
        <path
           id="path23080"
           d="m 484.79356,289.05152 -3.71828,-2.01452 -9.18544,10.679 z"
           style="fill:#adaeb3;fill-opacity:1;fill-rule:evenodd;stroke:none"
           inkscape:connector-curvature="0" />
        <path
           id="path23082"
           d="m 211.12822,66.96269 c 0,0 18.1192,-12.074459 52.2532,-17.912717 33.88357,-5.795423 45.88948,2e-6 45.88948,2e-6 L 423.44828,112.0423 c 0,0 -30.99615,-10.1517 -53.73943,-5.9681 -18.71441,3.4425 -53.41866,19.22907 -53.41866,19.22907 z"
           style="fill:url(#linearGradient23096-3);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.57217264px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           inkscape:connector-curvature="0" />
        <path
           id="path23084"
           d="m 317.59276,132.46226 c 0,0 38.1692,-17.78799 58.60253,-19.51799 23.29568,-1.97234 56.54013,8.02195 56.54013,8.02195 l 22.39845,15.74808 c 0,0 -34.60478,-6.32806 -52.95504,-3.8784 -19.46729,2.59878 -49.34361,18.93136 -49.34361,18.93136 z"
           style="fill:url(#linearGradient23094-9);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.57217264px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           inkscape:connector-curvature="0" />
        <path
           id="path23086"
           d="m 317.03917,124.93853 0.23723,7.27038 c 0,0 37.15092,-16.86809 57.19894,-19.33317 18.466,-2.27057 50.43351,5.98076 50.43351,5.98076 l -1.57605,-6.85355 c 0,0 -28.06633,-9.09409 -49.72157,-6.5399 -20.72223,2.44414 -56.38303,19.38405 -56.38303,19.38405"
           style="fill:#929294;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.57217264px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           inkscape:connector-curvature="0" />
        <path
           id="path23098"
           d="m 166.40873,386.21246 c 0,0 1.77487,39.64016 10.66838,57.25734 12.77867,25.3133 41.74812,44.68155 41.74812,44.68155 0,0 -27.51014,-31.21321 -34.65656,-50.03388 -5.20981,-13.72042 -5.11723,-43.53868 -5.11723,-43.53868 z"
           style="fill:url(#linearGradient23108-1);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.57217264px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           inkscape:connector-curvature="0" />
        <path
           id="path23100"
           d="m 53.26124,328.49713 c 0,0 -1.39256,27.17712 9.93691,55.76446 7.49305,18.90699 26.45886,39.0678 26.45886,39.0678 l 122.18858,66.2976 c 0,0 -33.0212,-19.35053 -48.01572,-56.49043 -7.64537,-18.93675 -5.40666,-46.29885 -5.40666,-46.29885 z"
           style="fill:url(#linearGradient23110-2);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.57217264px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           inkscape:connector-curvature="0" />
        <path
           id="path23112"
           d="m 166.41675,386.38166 c 0,0 -1.15851,29.67333 12.90546,61.20389 7.58262,16.99976 39.44276,40.52521 39.44276,40.52521 l -7.2272,1.34922 c 0,0 -29.42197,-17.72971 -43.87964,-47.92917 -14.70729,-30.72086 -9.26262,-54.3183 -9.26262,-54.3183 l 8.04971,-0.27669"
           style="fill:#a7a7aa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.57217264px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           inkscape:connector-curvature="0" />
        <g
           transform="matrix(1.6038506,0,0,1.5411204,-204.80042,21.76814)"
           id="g23122">
          <path
             style="fill:#9b9c9f;fill-opacity:1;fill-rule:evenodd;stroke:none"
             d="m 253.54415,250.39387 c 0,0 -0.5984,16.1834 3.61906,26.65145 4.69092,11.64322 20.49083,31.59506 20.49083,31.59506 l 5.51825,3.92955 c 0,0 -16.46204,-19.94848 -20.34676,-29.41592 -3.02701,-7.37711 -4.65196,-30.15888 -4.65196,-30.15888 z"
             id="path23116"
             inkscape:connector-curvature="0" />
          <path
             style="fill:#5c5d61;fill-opacity:1;fill-rule:evenodd;stroke:none"
             d="m 239.70643,242.89412 11.14305,-3.30736 5.37826,3.03359 -2.66692,7.41553 c 0,0 -0.97044,14.70078 3.73777,27.43444 4.21449,11.39835 19.71881,30.66476 19.71881,30.66476 l -12.08231,-5.56438 c 0,0 -17.28961,-20.20795 -21.85778,-32.41224 -3.21014,-8.57621 -3.37088,-27.26434 -3.37088,-27.26434 z"
             id="path23120"
             inkscape:connector-curvature="0" />
        </g>
        <g
           transform="matrix(1.6038506,0,0,1.5411204,-174.79118,38.499858)"
           id="g23126">
          <path
             id="path23128"
             d="m 253.54415,250.39387 c 0,0 -0.5984,16.1834 3.61906,26.65145 4.69092,11.64322 20.49083,31.59506 20.49083,31.59506 l 5.51825,3.92955 c 0,0 -16.46204,-19.94848 -20.34676,-29.41592 -3.02701,-7.37711 -4.65196,-30.15888 -4.65196,-30.15888 z"
             style="fill:#9b9c9f;fill-opacity:1;fill-rule:evenodd;stroke:none"
             inkscape:connector-curvature="0" />
          <path
             id="path23130"
             d="m 239.70643,242.89412 11.14305,-3.30736 5.37826,3.03359 -2.66692,7.41553 c 0,0 -0.97044,14.70078 3.73777,27.43444 4.21449,11.39835 19.71881,30.66476 19.71881,30.66476 l -12.08231,-5.56438 c 0,0 -17.28961,-20.20795 -21.85778,-32.41224 -3.21014,-8.57621 -3.37088,-27.26434 -3.37088,-27.26434 z"
             style="fill:#5c5d61;fill-opacity:1;fill-rule:evenodd;stroke:none"
             inkscape:connector-curvature="0" />
        </g>
        <g
           id="g23132"
           transform="matrix(1.6038506,0,0,1.5411204,-145.52291,54.341591)">
          <path
             style="fill:#9b9c9f;fill-opacity:1;fill-rule:evenodd;stroke:none"
             d="m 253.54415,250.39387 c 0,0 -0.5984,16.1834 3.61906,26.65145 4.69092,11.64322 20.49083,31.59506 20.49083,31.59506 l 5.51825,3.92955 c 0,0 -16.46204,-19.94848 -20.34676,-29.41592 -3.02701,-7.37711 -4.65196,-30.15888 -4.65196,-30.15888 z"
             id="path23134"
             inkscape:connector-curvature="0" />
          <path
             style="fill:#5c5d61;fill-opacity:1;fill-rule:evenodd;stroke:none"
             d="m 239.70643,242.89412 11.14305,-3.30736 5.37826,3.03359 -2.66692,7.41553 c 0,0 -0.97044,14.70078 3.73777,27.43444 4.21449,11.39835 19.71881,30.66476 19.71881,30.66476 l -12.08231,-5.56438 c 0,0 -17.28961,-20.20795 -21.85778,-32.41224 -3.21014,-8.57621 -3.37088,-27.26434 -3.37088,-27.26434 z"
             id="path23136"
             inkscape:connector-curvature="0" />
        </g>
        <g
           transform="matrix(1.6038506,0,0,1.5411204,-116.62512,70.36132)"
           id="g23138">
          <path
             id="path23140"
             d="m 253.54415,250.39387 c 0,0 -0.5984,16.1834 3.61906,26.65145 4.69092,11.64322 20.49083,31.59506 20.49083,31.59506 l 5.51825,3.92955 c 0,0 -16.46204,-19.94848 -20.34676,-29.41592 -3.02701,-7.37711 -4.65196,-30.15888 -4.65196,-30.15888 z"
             style="fill:#9b9c9f;fill-opacity:1;fill-rule:evenodd;stroke:none"
             inkscape:connector-curvature="0" />
          <path
             id="path23142"
             d="m 239.70643,242.89412 11.14305,-3.30736 5.37826,3.03359 -2.66692,7.41553 c 0,0 -0.97044,14.70078 3.73777,27.43444 4.21449,11.39835 19.71881,30.66476 19.71881,30.66476 l -12.08231,-5.56438 c 0,0 -17.28961,-20.20795 -21.85778,-32.41224 -3.21014,-8.57621 -3.37088,-27.26434 -3.37088,-27.26434 z"
             style="fill:#5c5d61;fill-opacity:1;fill-rule:evenodd;stroke:none"
             inkscape:connector-curvature="0" />
        </g>
        <g
           id="g23144"
           transform="matrix(1.6038506,0,0,1.5411204,-86.338015,86.55905)">
          <path
             style="fill:#9b9c9f;fill-opacity:1;fill-rule:evenodd;stroke:none"
             d="m 253.54415,250.39387 c 0,0 -0.5984,16.1834 3.61906,26.65145 4.69092,11.64322 20.49083,31.59506 20.49083,31.59506 l 5.51825,3.92955 c 0,0 -16.46204,-19.94848 -20.34676,-29.41592 -3.02701,-7.37711 -4.65196,-30.15888 -4.65196,-30.15888 z"
             id="path23146"
             inkscape:connector-curvature="0" />
          <path
             style="fill:#5c5d61;fill-opacity:1;fill-rule:evenodd;stroke:none"
             d="m 239.70643,242.89412 11.14305,-3.30736 5.37826,3.03359 -2.66692,7.41553 c 0,0 -0.97044,14.70078 3.73777,27.43444 4.21449,11.39835 19.71881,30.66476 19.71881,30.66476 l -12.08231,-5.56438 c 0,0 -17.28961,-20.20795 -21.85778,-32.41224 -3.21014,-8.57621 -3.37088,-27.26434 -3.37088,-27.26434 z"
             id="path23148"
             inkscape:connector-curvature="0" />
        </g>
        <g
           transform="matrix(1.6038506,0,0,1.5411204,-57.995953,101.95579)"
           id="g23150">
          <path
             id="path23152"
             d="m 253.54415,250.39387 c 0,0 -0.5984,16.1834 3.61906,26.65145 4.69092,11.64322 20.49083,31.59506 20.49083,31.59506 l 5.51825,3.92955 c 0,0 -16.46204,-19.94848 -20.34676,-29.41592 -3.02701,-7.37711 -4.65196,-30.15888 -4.65196,-30.15888 z"
             style="fill:#9b9c9f;fill-opacity:1;fill-rule:evenodd;stroke:none"
             inkscape:connector-curvature="0" />
          <path
             id="path23154"
             d="m 239.70643,242.89412 11.14305,-3.30736 5.37826,3.03359 -2.66692,7.41553 c 0,0 -0.97044,14.70078 3.73777,27.43444 4.21449,11.39835 19.71881,30.66476 19.71881,30.66476 l -12.08231,-5.56438 c 0,0 -17.28961,-20.20795 -21.85778,-32.41224 -3.21014,-8.57621 -3.37088,-27.26434 -3.37088,-27.26434 z"
             style="fill:#5c5d61;fill-opacity:1;fill-rule:evenodd;stroke:none"
             inkscape:connector-curvature="0" />
        </g>
        <path
           id="path23156"
           d="m 504.94674,250.46016 c 0,0 84.37436,-37.38962 125.55045,10.47455 28.36891,32.97675 18.27764,111.25796 -1.70463,156.11349 -23.10516,51.86564 -56.54437,101.27605 -103.73188,134.89052 -35.62784,25.37984 -81.89569,45.62574 -123.42755,30.67508 -18.23198,-6.56315 -41.07551,-29.11199 -42.02068,-60.35836 -0.32173,-10.63631 -3.16043,-31.77761 -3.16043,-31.77761 l 70.23821,-39.79209 c 0,0 -5.84202,62.92487 49.74946,62.40772 51.03081,-0.47473 90.00418,-47.48628 105.98282,-80.31521 14.86569,-30.54234 33.87794,-82.73926 3.78011,-128.74203 -21.20433,-32.40959 -80.35237,-3.91734 -80.35237,-3.91734 z"
           style="fill:url(#linearGradient23164-7);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.57217264px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           inkscape:connector-curvature="0" />
        <g
           transform="matrix(1.6038506,0,0,1.5411204,-204.80042,21.76814)"
           id="g23170">
          <path
             style="fill:#5e5e61;fill-opacity:1;fill-rule:evenodd;stroke:none"
             d="m 339.76439,247.35612 c 0,0 16.75338,-10.42208 32.35589,-30.53054 14.59888,-18.815 19.63473,-65.00638 19.63473,-65.00638 l 2.96605,2.24323 0.22348,9.47364 c 2.42061,1.38468 5.67231,3.10179 8.09292,4.48646 0,0 -7.56385,36.56757 -19.35617,52.17502 -12.97449,17.17208 -32.92558,32.58077 -32.92558,32.58077 l -9.25516,4.63879 -4.16807,-2.64806 z"
             id="path23166"
             inkscape:connector-curvature="0" />
          <path
             style="fill:#919195;fill-opacity:1;fill-rule:evenodd;stroke:none"
             d="m 351.46586,252.77832 4.67767,3.07798 -0.35896,8.43933 c 0,0 25.98098,-22.22591 35.12236,-36.39074 8.24574,-12.77701 13.043,-27.67047 16.85981,-42.3904 1.91617,-7.38993 2.94334,-22.71304 2.94334,-22.71304 l -7.5596,5.2349 c 0,0 -2.9476,22.40133 -16.57065,47.78744 -8.37674,15.60978 -35.11397,36.95453 -35.11397,36.95453 z"
             id="path23168"
             inkscape:connector-curvature="0" />
        </g>
        <g
           transform="matrix(1.6038506,0,0,1.5411204,-174.54286,39.058914)"
           id="g23174">
          <path
             id="path23176"
             d="m 339.29096,246.88269 c 0,0 17.22681,-9.94865 32.82932,-30.05711 14.59888,-18.815 19.63473,-65.00638 19.63473,-65.00638 l 2.96605,2.24323 0.22348,9.47364 c 2.42061,1.38468 5.67231,3.10179 8.09292,4.48646 0,0 -7.56385,36.56757 -19.35617,52.17502 -12.97449,17.17208 -32.80722,33.0542 -32.80722,33.0542 l -9.37352,3.92864 -4.6415,-2.76641 z"
             style="fill:#5e5e61;fill-opacity:1;fill-rule:evenodd;stroke:none"
             inkscape:connector-curvature="0" />
          <path
             id="path23178"
             d="m 352.05765,252.77832 7.16317,3.66977 -4.02804,8.43933 c 0,0 26.41944,-22.58468 35.71415,-36.98253 8.24759,-12.77582 13.043,-27.67047 16.85981,-42.3904 1.91617,-7.38993 2.94334,-22.71304 2.94334,-22.71304 l -7.5596,5.2349 c 0,0 -2.9476,22.40133 -16.57065,47.78744 -8.37674,15.60978 -34.52218,36.95453 -34.52218,36.95453 z"
             style="fill:#919195;fill-opacity:1;fill-rule:evenodd;stroke:none"
             inkscape:connector-curvature="0" />
        </g>
        <g
           id="g23180"
           transform="matrix(1.6038506,0,0,1.5411204,-143.08567,55.32505)">
          <path
             style="fill:#5e5e61;fill-opacity:1;fill-rule:evenodd;stroke:none"
             d="m 339.29096,246.88269 c 0,0 17.22681,-9.94865 32.82932,-30.05711 14.59888,-18.815 19.63473,-65.00638 19.63473,-65.00638 l 2.96605,2.24323 0.22348,9.47364 c 2.42061,1.38468 5.67231,3.10179 8.09292,4.48646 0,0 -7.56385,36.56757 -19.35617,52.17502 -12.97449,17.17208 -32.33379,33.64599 -32.33379,33.64599 l -11.14889,3.69193 -4.75985,-2.76642 z"
             id="path23182"
             inkscape:connector-curvature="0" />
          <path
             style="fill:#919195;fill-opacity:1;fill-rule:evenodd;stroke:none"
             d="m 351.3475,253.84354 4.08588,2.95962 -0.2406,3.82338 c 0,0 26.54664,-19.43081 35.71415,-32.72165 8.63426,-12.51774 13.043,-27.67047 16.85981,-42.3904 1.91617,-7.38993 2.94334,-22.71304 2.94334,-22.71304 l -7.5596,5.2349 c 0,0 -2.9476,22.40133 -16.57065,47.78744 -8.37674,15.60978 -35.23233,38.01975 -35.23233,38.01975 z"
             id="path23184"
             inkscape:connector-curvature="0" />
        </g>
        <g
           transform="matrix(1.6038506,0,0,1.5411204,-111.94462,71.83432)"
           id="g23186">
          <path
             id="path23188"
             d="m 339.29096,246.88269 c 0,0 17.22681,-9.94865 32.82932,-30.05711 14.59888,-18.815 19.63473,-65.00638 19.63473,-65.00638 l 2.96605,2.24323 4.9102,-0.90411 c 2.42061,1.38468 2.31104,4.63982 3.4062,14.86421 0,0 -7.56385,36.56757 -19.35617,52.17502 -12.97449,17.17208 -32.33379,33.64599 -32.33379,33.64599 l -13.75276,5.82236 -1.09076,-9.98623 z"
             style="fill:#5e5e61;fill-opacity:1;fill-rule:evenodd;stroke:none"
             inkscape:connector-curvature="0" />
          <path
             id="path23190"
             d="m 337.85473,259.52471 1.83708,8.40407 15.50097,-7.30224 c 0,0 26.54664,-19.43081 35.71415,-32.72165 8.63426,-12.51774 13.02493,-27.67517 16.85981,-42.3904 2.74904,-10.54863 4.2824,-32.42125 4.2824,-32.42125 l -6.5553,0.54817 c 0,0 -2.51017,38.49787 -18.91401,62.18238 -23.76323,34.31029 -48.7251,43.70092 -48.7251,43.70092 z"
             style="fill:#919195;fill-opacity:1;fill-rule:evenodd;stroke:none"
             inkscape:connector-curvature="0" />
        </g>
        <g
           id="g23192"
           transform="matrix(1.6038506,0,0,1.5411204,-80.803566,88.85951)">
          <path
             style="fill:#5e5e61;fill-opacity:1;fill-rule:evenodd;stroke:none"
             d="m 339.29096,246.88269 c 0,0 17.22681,-9.94865 32.82932,-30.05711 14.59888,-18.815 19.63473,-65.00638 19.63473,-65.00638 l 2.96605,2.24323 0.22348,9.47364 c 2.42061,1.38468 5.67231,3.10179 8.09292,4.48646 0,0 -7.56385,36.56757 -19.35617,52.17502 -12.97449,17.17208 -32.33379,33.64599 -32.33379,33.64599 l -10.08367,4.52043 -4.99657,-2.88477 z"
             id="path23194"
             inkscape:connector-curvature="0" />
          <path
             style="fill:#919195;fill-opacity:1;fill-rule:evenodd;stroke:none"
             d="m 351.3475,253.84354 4.08588,2.95962 -0.2406,3.82338 c 0,0 26.54664,-19.43081 35.71415,-32.72165 8.63426,-12.51774 13.043,-27.67047 16.85981,-42.3904 1.91617,-7.38993 2.94334,-22.71304 2.94334,-22.71304 l -7.5596,5.2349 c 0,0 -2.9476,22.40133 -16.57065,47.78744 -8.37674,15.60978 -35.23233,38.01975 -35.23233,38.01975 z"
             id="path23196"
             inkscape:connector-curvature="0" />
        </g>
        <g
           transform="matrix(1.6038506,0,0,1.5411204,-80.803566,88.85951)"
           id="g23198">
          <path
             id="path23200"
             d="m 320.70881,256.82473 c 0,0 35.80896,-19.89069 51.41147,-39.99915 14.59888,-18.815 19.63473,-65.00638 19.63473,-65.00638 l 2.96605,2.24323 0.22348,-12.62092 c 2.42061,1.38468 8.35044,4.10609 10.77105,5.49076 0,0 -10.24198,57.65783 -22.0343,73.26528 -12.97449,17.17208 -18.14011,27.28307 -32.33379,33.64599 -10.08367,4.52043 -10.08367,4.52043 -10.08367,4.52043 l -18.48934,2.91476 z"
             style="fill:#5e5e61;fill-opacity:1;fill-rule:evenodd;stroke:none"
             inkscape:connector-curvature="0" />
          <path
             id="path23202"
             d="m 351.3475,253.84354 c -14.13559,8.84291 -28.58486,8.02359 -28.58486,8.02359 0,0 15.07347,7.6092 32.43014,-1.24059 14.38404,-7.33411 19.60723,-10.43592 35.71415,-32.72165 8.90763,-12.32471 18.63326,-33.15063 20.12688,-42.3904 3.2869,-20.33318 0.49304,-30.39066 0.49304,-30.39066 l -5.25653,-7.28257 c 0,0 -6.06744,42.59642 -19.69049,67.98253 -8.37674,15.60978 -20.58427,28.85625 -35.23233,38.01975 z"
             style="fill:#919195;fill-opacity:1;fill-rule:evenodd;stroke:none"
             inkscape:connector-curvature="0" />
        </g>
        <path
           id="path23206"
           d="m 487.17364,491.93636 c 21.71812,-13.56855 34.96508,-19.36004 59.98917,-50.34959 23.41443,-28.99618 52.51493,-95.86023 23.15903,-129.2669 -14.67053,-16.69491 -68.21911,0.13901 -68.21911,0.13901 l 4.54606,-11.72771 c 36.40473,-15.24048 62.52766,-13.61315 76.1567,1.74697 29.36795,33.09804 14.41371,102.15569 -2.69083,130.45917 -17.41794,28.82208 -33.25387,51.96642 -59.71841,66.45388 -17.94063,9.82122 -40.7967,14.70337 -60.97383,10.49099 -8.05064,-1.68073 -14.66179,-8.36577 -20.32752,-13.50869 0,0 32.39824,5.3594 48.07874,-4.43709 z"
           style="fill:url(#linearGradient23218-6);fill-opacity:1;fill-rule:evenodd;stroke:none"
           inkscape:connector-curvature="0" />
        <path
           id="path23228"
           d="M 445.04249,101.98852 666.0289,240.12137"
           style="fill:none;stroke:#000000;stroke-width:1.57217264px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#marker23378);marker-end:url(#marker23512)"
           inkscape:connector-curvature="0"
           sodipodi:nodetypes="cc" />
        <path
           id="path23230"
           d="m 203.39332,407.44505 -89.80335,58.52198"
           style="fill:none;stroke:#000000;stroke-width:1.57217264px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           inkscape:connector-curvature="0" />
        <path
           id="path23234"
           d="M 349.686,488.40172 V 622.8051"
           style="fill:none;stroke:#000000;stroke-width:1.57217264px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           inkscape:connector-curvature="0" />
        <path
           id="path23236"
           d="M 426.66432,451.0091 V 599.07301"
           style="fill:none;stroke:#000000;stroke-width:1.57217264px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           inkscape:connector-curvature="0" />
        <path
           id="path23238"
           d="M 582.09505,360.01759 V 520.13807"
           style="fill:none;stroke:#000000;stroke-width:1.57217264px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           inkscape:connector-curvature="0" />
        <path
           id="path23240"
           d="M 647.93341,317.9299 V 488.66727"
           style="fill:none;stroke:#000000;stroke-width:1.57217264px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           inkscape:connector-curvature="0" />
        <path
           id="path23242"
           d="M 349.686,589.27064 647.93341,423.81229"
           style="fill:none;stroke:#000000;stroke-width:1.57217264px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#marker23914);marker-end:url(#marker24516)"
           inkscape:connector-curvature="0" />
        <path
           id="path23244"
           d="M 426.66432,587.58438 582.09505,501.35624"
           style="fill:none;stroke:#000000;stroke-width:1.57217264px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#marker24374);marker-end:url(#marker24532)"
           inkscape:connector-curvature="0" />
        <path
           id="path24068"
           d="m 232.92771,424.96574 -94.88277,52.638"
           style="fill:none;stroke:#000000;stroke-width:1.57217264px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           inkscape:connector-curvature="0" />
        <path
           id="path24070"
           d="m 122.83492,459.94239 23.52276,13.0497 37.22443,20.65095"
           style="fill:none;stroke:#000000;stroke-width:1.57217264px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#marker24078);marker-mid:url(#marker24222)"
           inkscape:connector-curvature="0" />
        <text
           xml:space="preserve"
           style="font-style:normal;font-weight:normal;font-size:26.66666603px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
           x="687.28717"
           y="216.64758"
           id="text5345"><tspan
             sodipodi:role="line"
             id="tspan5343"
             x="687.28717"
             y="216.64758">Depth</tspan></text>
        <text
           xml:space="preserve"
           style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
           x="653.28717"
           y="508.64758"
           id="text5349"><tspan
             sodipodi:role="line"
             id="tspan5347"
             x="653.28717"
electrolab's avatar
electrolab committed
             y="544.03821" /></text>
electrolab's avatar
electrolab committed
        <text
           xml:space="preserve"
           style="font-style:normal;font-weight:normal;font-size:26.66666603px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
           x="688.48523"
           y="453.64758"
           id="text5353"><tspan
             sodipodi:role="line"
             id="tspan5351"
             x="688.48523"
             y="453.64758">Diameter</tspan></text>
        <text
           xml:space="preserve"
           style="font-style:normal;font-weight:normal;font-size:26.66666603px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
           x="73.287155"
           y="487.64758"
           id="text5357"><tspan
             sodipodi:role="line"
             id="tspan5355"
             x="73.287155"
             y="487.64758">Pitch</tspan></text>
      </g>
    </a>
  </g>
  <g
     inkscape:groupmode="layer"
     id="layer6"
     inkscape:label="08_DRILL"
     style="display:inline">
    <g
       style="display:inline"
       id="a06">
      <g
         id="g6995-7">
        <g
           id="g3515">
          <rect
             y="0"
             x="0"
             height="687.86078"
             width="889.44305"
             id="rect6985-3"
             style="fill:url(#linearGradient6993-6);fill-opacity:1;stroke:none" />
          <path
             inkscape:connector-curvature="0"
             id="path7688-6"
             d="M 533.57658,197.79344 550.25415,344.35545 365.12137,237.46899 365.3328,283.66302 259.31614,222.45428 259.8622,39.764354 533.57658,197.79344"
             style="display:inline;fill:#5c5c5c;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
             sodipodi:nodetypes="ccccccc" />
          <path
             inkscape:connector-curvature="0"
             id="path7691-5"
             d="M 259.10471,220.80422 100.68004,312.27075 377.89559,472.32123 512.10604,412.44894 326.3411,305.1975 365.12137,282.01296 Z"
             style="display:inline;fill:url(#meshgradient4237);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
             sodipodi:nodetypes="ccccccc" />
          <path
             inkscape:connector-curvature="0"
             id="path7699-6"
             d="m 365.12137,282.01296 -38.78027,23.18454 39.14203,22.59866 c 0,0 14.6468,-8.67188 26.3383,-27.97055 11.69151,-19.29867 12.46581,-39.74419 12.46581,-39.74419 l -39.16587,-22.61243 z"
             style="display:inline;fill:#6c6d75;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
          <path
             inkscape:connector-curvature="0"
             id="path7734-3"
             d="m 377.89559,472.32123 c 0,0 -14.28038,66.13165 49.14762,100.88069 55.75461,30.54518 147.23739,-36.10498 191.48043,-94.13564 51.8203,-67.96924 105.29597,-205.72012 38.51002,-280.80228 -49.41788,-55.55662 -123.45708,-0.47056 -123.45708,-0.47056 l 16.67757,146.56201 -38.14811,68.09349 z"
             style="display:inline;fill:url(#radialGradient7747-6-1);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
             sodipodi:nodetypes="cssscccc" />
          <path
             inkscape:connector-curvature="0"
             id="path7703-9"
             d="m 365.48313,327.79616 146.62291,84.65278 c 0,0 -2.89131,21.50669 21.25774,27.47208 15.4958,3.82784 36.16788,-14.75118 46.80344,-33.97714 8.68338,-15.69697 21.55058,-48.44075 1.59903,-62.0495 -16.70431,-11.39384 -31.5121,0.46107 -31.5121,0.46107 L 404.28724,260.08142 c 0,0 -1.97931,22.34374 -12.46581,39.74419 -10.48649,17.40045 -26.3383,27.97055 -26.3383,27.97055 z"
             style="display:inline;fill:url(#linearGradient7724-0-3);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
          <path
             inkscape:connector-curvature="0"
             id="path8556-1"
             d="m 100.68004,312.27075 c 0,0 -0.1152,28.3636 9.72517,52.87005 10.54061,26.25044 30.4871,43.32377 30.4871,43.32377 l 286.1509,164.73735 c 0,0 -28.51696,-13.69004 -42.15597,-44.21677 -11.70869,-26.20634 -6.99165,-56.66392 -6.99165,-56.66392 z"
             style="display:inline;fill:url(#linearGradient10243-2-6);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
             sodipodi:nodetypes="ccccscc" />
          <path
             inkscape:connector-curvature="0"
             id="path8554-2"
             d="m 259.8622,39.764354 c 0,0 28.53294,-20.13641 63.84984,-21.905335 15.86384,-0.794576 42.35696,8.17958 46.63586,9.784164 4.27889,1.604584 273.75932,158.856897 273.75932,158.856897 0,0 -21.14024,-12.8186 -42.31795,-13.04487 -35.36971,-0.37792 -68.21269,24.33823 -68.21269,24.33823 z"
             style="display:inline;fill:url(#linearGradient6209);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
             sodipodi:nodetypes="csscscc" />
          <path
             inkscape:connector-curvature="0"
             id="path7990-9"
             d="M 372.04542,262.72133 672.59107,432.42581"
             style="display:inline;fill:none;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#marker8104-9);marker-end:url(#marker7998-6)"
             sodipodi:nodetypes="cc" />
          <path
             inkscape:connector-curvature="0"
             id="path8228-3"
             d="M 377.89559,472.32123 V 578.55054"
             style="display:inline;fill:none;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
          <path
             inkscape:connector-curvature="0"
             id="path8230-9"
             d="m 362.99257,463.71696 v 98.78772"
             style="display:inline;fill:none;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
          <path
             inkscape:connector-curvature="0"
             id="path8232-0"
             d="m 377.89559,560.36524 -14.90302,-8.60427 -37.54784,-21.67825"
             style="display:inline;fill:none;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#marker8400-7);marker-mid:url(#marker8240-5)"
             sodipodi:nodetypes="ccc" />
          <path
             inkscape:connector-curvature="0"
             id="path8831-8"
             d="M 512.10604,412.44894 V 525.0644"
             style="display:inline;fill:none;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
          <path
             inkscape:connector-curvature="0"
             id="path8833-8"
             d="M 592.10609,362.13024 V 462.4856"
             style="display:inline;fill:none;stroke:#000000;stroke-width:1.60000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
             sodipodi:nodetypes="cc" />
          <path
             inkscape:connector-curvature="0"
             id="path8835-5"
             d="m 512.10604,489.76353 80.00005,-46.18805"
             style="display:inline;fill:none;stroke:#000000;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker8767-5);marker-end:url(#marker8861-8)"
             sodipodi:nodetypes="cc" />
          <path
             style="display:inline;fill:none;stroke:#000000;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker24532-8)"
             d="M 503.5649,393.00036 C 488.70696,383.7287 467.39458,370.58438 445.44227,357.0561"
             id="path4595"
             inkscape:connector-curvature="0"
             sodipodi:nodetypes="cc" />
          <path
             style="display:inline;fill:none;stroke:#000000;stroke-width:1.30463445px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#marker24532-8)"
             d="m 362.09014,311.0403 46.10246,29.24498"
             id="path6185"
             inkscape:connector-curvature="0"
             sodipodi:nodetypes="cc" />
          <text
             xml:space="preserve"
             style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
             x="689.65997"
             y="417.44937"
             id="text4881"><tspan
               sodipodi:role="line"
               id="tspan4879"
               x="689.65997"
               y="417.44937"
               style="font-size:26.66666603px">Depth</tspan></text>
          <text
             xml:space="preserve"
             style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
             x="460.74036"
             y="549.1839"
             id="text4885"><tspan
               sodipodi:role="line"
               id="tspan4883"
               x="460.74036"
electrolab's avatar
electrolab committed
               y="584.57452" /></text>
electrolab's avatar
electrolab committed
          <text
             xml:space="preserve"
             style="font-style:normal;font-weight:normal;font-size:26.66666603px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
             x="550.0799"
             y="556.16254"
             id="text4889"><tspan
               sodipodi:role="line"
               id="tspan4887"
               x="550.0799"
               y="556.16254">Diameter</tspan></text>
          <text
             xml:space="preserve"
             style="font-style:normal;font-weight:normal;font-size:26.66666603px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
             x="346.71432"
             y="384.41928"
             id="text4893"><tspan
               sodipodi:role="line"
               id="tspan4891"
               x="346.71432"
               y="384.41928">Peck</tspan></text>
          <text
             xml:space="preserve"
             style="font-style:normal;font-weight:normal;font-size:26.66666603px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
             x="277.9584"
             y="589.41583"
             id="text4897"><tspan
               sodipodi:role="line"
               id="tspan4895"
               x="277.9584"
               y="589.41583">Feed</tspan></text>
        </g>
      </g>
    </g>
    <text
       xml:space="preserve"
       style="font-style:normal;font-weight:normal;font-size:26.66666603px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
       x="209.38411"
       y="332.94141"
       id="text4893-1"><tspan
         sodipodi:role="line"
         id="tspan4891-4"
         x="209.38411"
         y="332.94141">Retract</tspan></text>
  </g>
</svg>