diff --git a/chart-unit.cabal b/chart-unit.cabal
--- a/chart-unit.cabal
+++ b/chart-unit.cabal
@@ -1,16 +1,23 @@
 name: chart-unit
-version: 0.5.0
+version: 0.5.1
 synopsis:
   Native haskell charts.
 description:
-  See <https://tonyday567.github.io/chart-unit/index.html chart-unit> for chart bling and usage.
   .
+  <<https://tonyday567.github.io/other/mainExample.svg>>
   .
-  ![example](other/mainExample.svg)
+  chart-unit is a native haskell charting library designed:
   .
-  These charts are designed to be scale independent and amenable to combinatory busywork (hence the unit suffix).
+  - as a chart DSL and algebra
   .
+  - towards a minimalist look and feel
   .
+  - to provide a set of default values that are robust across differet data and physical chart scales
+  .
+  - around provision of a small but core set of chart types.
+  .
+  See <https://tonyday567.github.io/chart-unit/index.html chart-unit> for a chart gallery.
+  .
 extra-source-files:
   readme.md,
   stack.yaml,
@@ -113,7 +120,8 @@
     protolude,
     tdigest,
     text,
-    diagrams-rasterific
+    diagrams-rasterific,
+    diagrams-svg
   default-extensions:
     DeriveGeneric,
     DeriveTraversable,
diff --git a/examples/sourceExamples.hs b/examples/sourceExamples.hs
--- a/examples/sourceExamples.hs
+++ b/examples/sourceExamples.hs
@@ -7,13 +7,14 @@
 {-# OPTIONS_GHC -fno-warn-incomplete-patterns #-}
 
 import Chart
-import Control.Lens hiding (beside, (#), at)
+import Control.Lens hiding (beside)
 import qualified Data.Text as Text
 import NumHask.Prelude
 import Data.List (zipWith3, zipWith4)
-import Diagrams.Prelude hiding ((*.), scaleX, scaleY, width)
+import Diagrams.Prelude hiding ((*.), scaleX, scaleY, (<>))
 import FakeData
-import Diagrams.Backend.Rasterific (Rasterific, animatedGif, GifLooping(..))
+import Diagrams.Backend.Rasterific (renderRasterific, Rasterific, animatedGif, GifLooping(..))
+import Diagrams.Backend.SVG (B)
 
 hudbits :: Text -> Maybe Text -> [Text] -> [LegendType b] -> HudOptions b -> HudOptions b
 hudbits t subt ts ls x =
@@ -83,7 +84,8 @@
 glyphsExample = glyphs def [Pair (x / 10) (sin x / 10) | x <- [0 .. 10]]
 
 gopts :: [GlyphOptions b]
-gopts = [def, def {glyphBorderColor = ured, glyphShape = triangle}]
+gopts = [def, def { glyphBorderColor = rybColor 0 `withOpacity` 0.5
+                  , glyphShape = triangle}]
 
 gdata :: [[Pair Double]]
 gdata = [p_1, p_2]
@@ -266,7 +268,7 @@
     asquare
     [ [ Pixel
         (Rect x (x + 0.05) y (y + 0.05))
-        (blend (x * y + x * x) ured ublue)
+        (blend (x * y + x * x) (rybColor 0 `withOpacity` 1) ublue)
       | x <- grid MidPos (one :: Range Double) 20
       , y <- grid MidPos (one :: Range Double) 20
       ]
@@ -360,7 +362,7 @@
 legendExample :: Chart b
 legendExample = legend $ def {legendChartType = legends}
 
-mainExample :: Diagram B
+mainExample :: Chart b
 mainExample = withHud opts (lineChart lopts) ls
   where
     opts =
@@ -397,10 +399,12 @@
     , "bottom right, non-essential note")
   ]
 
+scaleExample :: IO ()
+scaleExample =
+    fileSvg "other/scaleExample.svg" (300,120) $ withHud (hudAspect_ .~ widescreen $ hudRange_ .~ Just (Rect 0 12 0 0.2) $ def) (lineChart (repeat def)) ((\x -> [Pair x 0, Pair x (x/100)]) <$> [0..10])
 
 -- gallery
-
-scatterHistExample :: [[Pair Double]] -> Diagram B
+scatterHistExample :: [[Pair Double]] -> Chart b
 scatterHistExample xys =
     beside (r2 (1,0))
     (beside (r2 (0,-1))
@@ -433,7 +437,7 @@
     hy = makeHist 50 . fmap (view _y) <$> xys
 
 
-labelledBarExample :: Diagram B
+labelledBarExample :: Chart b
 labelledBarExample =
     rectChart_ [def]
     sixbyfour
@@ -474,7 +478,7 @@
              def] skinny r
             [zipWith (\x y -> (x,Pair y 0.05))
              ["min","3rd Q","median","1st Q","max"] qs']
-    let ticks' = glyphChart [def] skinny r [(\x -> Pair x 0.02) <$> qs]
+    let ticks' = glyphChart [def] skinny r [(`Pair` 0.02) <$> qs]
     pure $ hud' <> ticks' <> labels'
 
 histDiffExample :: ([Rect Double],[Rect Double]) -> Chart b
@@ -516,42 +520,40 @@
              scaleY (yu - yl) $
              scaleX (xu - xl) $
              moveOriginTo (p2(-0.5,-0.5))
-             unitSquare) $  c
+             unitSquare) c
 
 grp :: Int -> [a] -> [[a]]
 grp n = unfoldr
         (\x -> let y = splitAt n x in
-            if length (fst y) == 0 then Nothing else Just y)
+            if null (fst y) then Nothing else Just y)
 
-exampleClipping :: RectOptions -> Double -> Int -> QDiagram B V2 Double Any -> QDiagram B V2 Double Any
-exampleClipping rcfg p n ch =
-    foldl' vert mempty $ (foldl' hori mempty) <$> qb
+-- | chop a chart extent into a double list of Rects
+chop :: Pair Int -> QDiagram b V2 Double Any -> [[Rect Double]]
+chop p@(Pair _ n) ch = grp n $ gridSpace (Rect xl xu yl yu) p
   where
-    hori x a = beside (r2 (0,1)) x (pad p $ bound rcfg 1 $ centerXY $ clip a ch)
-    vert x a = beside (r2 (1,0)) x (pad p $ centerXY $ a)
-    qb :: [[Rect Double]] = grp n $ gridSpace (Rect xl xu yl yu) (Pair n n)
     (xl,xu) = fromMaybe (-0.5,0.5) (extentX ch)
     (yl,yu) = fromMaybe (-0.5,0.5) (extentY ch)
 
+exampleClipping :: RectOptions -> Double -> Int -> QDiagram B V2 Double Any -> QDiagram B V2 Double Any
+exampleClipping rcfg p n ch =
+    stack (Pair 0 1) (pad p . centerXY) $
+    hori (\a -> pad p $ bound rcfg 1 $ centerXY $ clip a ch) <$> chop (Pair n n) ch
+
 exampleClipping' :: RectOptions -> Double -> Double -> Int -> QDiagram Rasterific V2 Double Any -> QDiagram Rasterific V2 Double Any
 exampleClipping' rcfg rot p n ch =
-    foldl' vert mempty $ (foldl' hori mempty) <$> qb
-  where
-    hori x a = beside (r2 (0,1)) x (Diagrams.Prelude.rotate (rot @@ deg) $ pad p $ bound rcfg 1 $ centerXY $ clip a ch)
-    vert x a = beside (r2 (1,0)) x (pad p $ centerXY $ a)
-    qb :: [[Rect Double]] = grp n $ gridSpace (Rect xl xu yl yu) (Pair n n)
-    (xl,xu) = fromMaybe (-0.5,0.5) (extentX ch)
-    (yl,yu) = fromMaybe (-0.5,0.5) (extentY ch)
+    stack (Pair 0 1) (pad p . centerXY) $
+    hori (\a -> Diagrams.Prelude.rotate (rot @@ deg) $
+           pad p $ bound rcfg 1 $ centerXY $ clip a ch) <$> chop (Pair n n) ch
 
 animationExample :: FilePath -> IO ()
 animationExample f = do
-    let c = ((\x -> bound (rectColor_ .~ ucolor 1 1 1 0.1 $ def) 1 $
+    let c = (\x -> bound (rectColor_ .~ ucolor 1 1 1 0.1 $ def) 1 $
             exampleClipping' (rectBorderSize_ .~ 0.001 $
                               rectColor_ .~ ucolor 1 1 1 0.1 $ def)
-               (x*12) 1 5 lineChart_Example) <$> [0..30])
+               (x*12) 1 5 lineChart_Example) <$> [0..30]
     animatedGif f (mkSizeSpec (Just <$> r2 (600,400))) LoopingNever 20 c
 
-schoolbookExample :: Diagram B
+schoolbookExample :: Chart b
 schoolbookExample =
     pad 1.1 $
     lineChart_
@@ -559,7 +561,7 @@
       lineColor_ .~ ucolor 0.4 0.5 0.2 0.8 $
       lineSize_ .~ 0.001 $
       def) asquare $
-    (\x -> [Pair -10.0 (-10 + 2*x), Pair 10.0 (-10 + 2*x)]) <$>
+    (\x -> [Pair -10.0 (-10 + 2*x), Pair 10.0 (-10 + 2*x)]) . 
     fromIntegral <$> ([0..10] :: [Int])
 
 main :: IO ()
@@ -608,9 +610,7 @@
   fileSvg "other/arrowHudExample.svg" (600, 400) $
       arrowHudExample <> arrowChart_Example
 
-
   -- gallery
-
   xys <- mkScatterData
   putStrLn ("scatterHistExample" :: Text)
   fileSvg "other/scatterHistExample.svg" (600,400) (scatterHistExample xys)
@@ -631,3 +631,8 @@
   animationExample "other/animationExample.gif"
   putStrLn ("schoolbookExample" :: Text)
   fileSvg "other/schoolbookExample.svg" (400,400) schoolbookExample
+
+  -- small hud examples
+  renderRasterific "other/hud.png" (dims (r2(100,100))) (showOrigin $ hud def :: QDiagram Rasterific V2 Double Any)
+  fileSvg "other/hud.svg" (100,100) (showOrigin $ hud def)
+  scaleExample
diff --git a/other/clippingExample.svg b/other/clippingExample.svg
--- a/other/clippingExample.svg
+++ b/other/clippingExample.svg
@@ -1,3 +1,3 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="600.0000" stroke-opacity="1" viewBox="0 0 600 600" font-size="1" width="600.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831774" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip1"><path d="M 589.5868,187.6033 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip1)"><path d="M 176.3636,187.6033 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.79795897113271" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip2"><path d="M 589.5868,187.6033 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip2)"><path d="M 93.7190,452.0661 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566355" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip3"><path d="M 589.5868,187.6033 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip3)"><path d="M 93.7190,385.9504 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831774" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 589.5868,187.6033 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831774" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip4"><path d="M 589.5868,260.3306 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip4)"><path d="M 176.3636,194.2149 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.79795897113271" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip5"><path d="M 589.5868,260.3306 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip5)"><path d="M 93.7190,458.6777 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566355" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip6"><path d="M 589.5868,260.3306 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip6)"><path d="M 93.7190,392.5620 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831774" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 589.5868,260.3306 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831774" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip7"><path d="M 589.5868,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip7)"><path d="M 176.3636,200.8264 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.79795897113271" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip8"><path d="M 589.5868,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip8)"><path d="M 93.7190,465.2893 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566355" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip9"><path d="M 589.5868,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip9)"><path d="M 93.7190,399.1736 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831774" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 589.5868,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831774" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip10"><path d="M 589.5868,405.7851 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip10)"><path d="M 176.3636,207.4380 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.79795897113271" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip11"><path d="M 589.5868,405.7851 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip11)"><path d="M 93.7190,471.9008 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566355" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip12"><path d="M 589.5868,405.7851 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip12)"><path d="M 93.7190,405.7851 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831774" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 589.5868,405.7851 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831774" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip13"><path d="M 589.5868,478.5124 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip13)"><path d="M 176.3636,214.0496 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.79795897113271" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip14"><path d="M 589.5868,478.5124 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip14)"><path d="M 93.7190,478.5124 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566355" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip15"><path d="M 589.5868,478.5124 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip15)"><path d="M 93.7190,412.3967 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831774" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 589.5868,478.5124 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831774" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip16"><path d="M 469.5868,187.6033 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip16)"><path d="M 155.5372,187.6033 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.79795897113271" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip17"><path d="M 469.5868,187.6033 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip17)"><path d="M 72.8926,452.0661 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566355" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip18"><path d="M 469.5868,187.6033 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip18)"><path d="M 72.8926,385.9504 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831774" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 469.5868,187.6033 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831774" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip19"><path d="M 469.5868,260.3306 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip19)"><path d="M 155.5372,194.2149 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.79795897113271" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip20"><path d="M 469.5868,260.3306 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip20)"><path d="M 72.8926,458.6777 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566355" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip21"><path d="M 469.5868,260.3306 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip21)"><path d="M 72.8926,392.5620 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831774" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 469.5868,260.3306 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831774" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip22"><path d="M 469.5868,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip22)"><path d="M 155.5372,200.8264 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.79795897113271" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip23"><path d="M 469.5868,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip23)"><path d="M 72.8926,465.2893 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566355" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip24"><path d="M 469.5868,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip24)"><path d="M 72.8926,399.1736 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831774" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 469.5868,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831774" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip25"><path d="M 469.5868,405.7851 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip25)"><path d="M 155.5372,207.4380 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.79795897113271" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip26"><path d="M 469.5868,405.7851 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip26)"><path d="M 72.8926,471.9008 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566355" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip27"><path d="M 469.5868,405.7851 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip27)"><path d="M 72.8926,405.7851 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831774" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 469.5868,405.7851 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831774" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip28"><path d="M 469.5868,478.5124 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip28)"><path d="M 155.5372,214.0496 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.79795897113271" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip29"><path d="M 469.5868,478.5124 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip29)"><path d="M 72.8926,478.5124 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566355" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip30"><path d="M 469.5868,478.5124 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip30)"><path d="M 72.8926,412.3967 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831774" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 469.5868,478.5124 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831774" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip31"><path d="M 349.5868,187.6033 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip31)"><path d="M 134.7107,187.6033 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.79795897113271" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip32"><path d="M 349.5868,187.6033 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip32)"><path d="M 52.0661,452.0661 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566355" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip33"><path d="M 349.5868,187.6033 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip33)"><path d="M 52.0661,385.9504 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831774" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 349.5868,187.6033 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831774" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip34"><path d="M 349.5868,260.3306 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip34)"><path d="M 134.7107,194.2149 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.79795897113271" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip35"><path d="M 349.5868,260.3306 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip35)"><path d="M 52.0661,458.6777 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566355" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip36"><path d="M 349.5868,260.3306 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip36)"><path d="M 52.0661,392.5620 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831774" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 349.5868,260.3306 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831774" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip37"><path d="M 349.5868,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip37)"><path d="M 134.7107,200.8264 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.79795897113271" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip38"><path d="M 349.5868,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip38)"><path d="M 52.0661,465.2893 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566355" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip39"><path d="M 349.5868,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip39)"><path d="M 52.0661,399.1736 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831774" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 349.5868,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831774" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip40"><path d="M 349.5868,405.7851 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip40)"><path d="M 134.7107,207.4380 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.79795897113271" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip41"><path d="M 349.5868,405.7851 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip41)"><path d="M 52.0661,471.9008 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566355" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip42"><path d="M 349.5868,405.7851 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip42)"><path d="M 52.0661,405.7851 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831774" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 349.5868,405.7851 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831774" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip43"><path d="M 349.5868,478.5124 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip43)"><path d="M 134.7107,214.0496 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.79795897113271" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip44"><path d="M 349.5868,478.5124 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip44)"><path d="M 52.0661,478.5124 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566355" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip45"><path d="M 349.5868,478.5124 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip45)"><path d="M 52.0661,412.3967 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831774" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 349.5868,478.5124 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831774" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip46"><path d="M 229.5868,187.6033 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip46)"><path d="M 113.8843,187.6033 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.79795897113271" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip47"><path d="M 229.5868,187.6033 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip47)"><path d="M 31.2397,452.0661 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566355" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip48"><path d="M 229.5868,187.6033 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip48)"><path d="M 31.2397,385.9504 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831774" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 229.5868,187.6033 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831774" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip49"><path d="M 229.5868,260.3306 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip49)"><path d="M 113.8843,194.2149 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.79795897113271" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip50"><path d="M 229.5868,260.3306 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip50)"><path d="M 31.2397,458.6777 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566355" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip51"><path d="M 229.5868,260.3306 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip51)"><path d="M 31.2397,392.5620 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831774" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 229.5868,260.3306 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831774" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip52"><path d="M 229.5868,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip52)"><path d="M 113.8843,200.8264 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.79795897113271" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip53"><path d="M 229.5868,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip53)"><path d="M 31.2397,465.2893 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566355" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip54"><path d="M 229.5868,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip54)"><path d="M 31.2397,399.1736 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831774" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 229.5868,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831774" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip55"><path d="M 229.5868,405.7851 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip55)"><path d="M 113.8843,207.4380 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.79795897113271" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip56"><path d="M 229.5868,405.7851 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip56)"><path d="M 31.2397,471.9008 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566355" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip57"><path d="M 229.5868,405.7851 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip57)"><path d="M 31.2397,405.7851 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831774" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 229.5868,405.7851 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831774" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip58"><path d="M 229.5868,478.5124 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip58)"><path d="M 113.8843,214.0496 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.79795897113271" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip59"><path d="M 229.5868,478.5124 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip59)"><path d="M 31.2397,478.5124 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566355" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip60"><path d="M 229.5868,478.5124 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip60)"><path d="M 31.2397,412.3967 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831774" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 229.5868,478.5124 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831774" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip61"><path d="M 109.5868,187.6033 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip61)"><path d="M 93.0579,187.6033 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.79795897113271" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip62"><path d="M 109.5868,187.6033 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip62)"><path d="M 10.4132,452.0661 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566355" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip63"><path d="M 109.5868,187.6033 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip63)"><path d="M 10.4132,385.9504 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831774" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 109.5868,187.6033 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831774" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip64"><path d="M 109.5868,260.3306 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip64)"><path d="M 93.0579,194.2149 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.79795897113271" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip65"><path d="M 109.5868,260.3306 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip65)"><path d="M 10.4132,458.6777 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566355" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip66"><path d="M 109.5868,260.3306 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip66)"><path d="M 10.4132,392.5620 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831774" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 109.5868,260.3306 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831774" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip67"><path d="M 109.5868,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip67)"><path d="M 93.0579,200.8264 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.79795897113271" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip68"><path d="M 109.5868,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip68)"><path d="M 10.4132,465.2893 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566355" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip69"><path d="M 109.5868,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip69)"><path d="M 10.4132,399.1736 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831774" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 109.5868,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831774" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip70"><path d="M 109.5868,405.7851 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip70)"><path d="M 93.0579,207.4380 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.79795897113271" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip71"><path d="M 109.5868,405.7851 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip71)"><path d="M 10.4132,471.9008 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566355" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip72"><path d="M 109.5868,405.7851 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip72)"><path d="M 10.4132,405.7851 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831774" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 109.5868,405.7851 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831774" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip73"><path d="M 109.5868,478.5124 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip73)"><path d="M 93.0579,214.0496 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.79795897113271" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip74"><path d="M 109.5868,478.5124 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip74)"><path d="M 10.4132,478.5124 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566355" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip75"><path d="M 109.5868,478.5124 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip75)"><path d="M 10.4132,412.3967 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831774" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 109.5868,478.5124 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g></svg>
+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="600.0000" stroke-opacity="1" viewBox="0 0 600 600" font-size="1" width="600.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831783" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip1"><path d="M 567.7686,173.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip1)"><path d="M 154.5455,173.0579 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.797958971132713" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip2"><path d="M 567.7686,173.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip2)"><path d="M 71.9008,437.5207 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566357" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip3"><path d="M 567.7686,173.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip3)"><path d="M 71.9008,371.4050 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831783" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 567.7686,173.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831783" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip4"><path d="M 458.6777,173.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip4)"><path d="M 45.4545,106.9421 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.797958971132713" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip5"><path d="M 458.6777,173.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip5)"><path d="M -37.1901,371.4050 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566357" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip6"><path d="M 458.6777,173.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip6)"><path d="M -37.1901,305.2893 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831783" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 458.6777,173.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831783" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip7"><path d="M 349.5868,173.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip7)"><path d="M -63.6364,40.8264 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.797958971132713" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip8"><path d="M 349.5868,173.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip8)"><path d="M -146.2810,305.2893 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566357" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip9"><path d="M 349.5868,173.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip9)"><path d="M -146.2810,239.1736 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831783" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 349.5868,173.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831783" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip10"><path d="M 240.4959,173.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip10)"><path d="M -172.7273,-25.2893 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.797958971132713" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip11"><path d="M 240.4959,173.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip11)"><path d="M -255.3719,239.1736 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566357" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip12"><path d="M 240.4959,173.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip12)"><path d="M -255.3719,173.0579 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831783" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.4959,173.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831783" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip13"><path d="M 131.4050,173.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip13)"><path d="M -281.8182,-91.4050 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.797958971132713" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip14"><path d="M 131.4050,173.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip14)"><path d="M -364.4628,173.0579 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566357" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip15"><path d="M 131.4050,173.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip15)"><path d="M -364.4628,106.9421 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831783" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 131.4050,173.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831783" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip16"><path d="M 567.7686,253.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip16)"><path d="M 253.7190,253.0579 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.797958971132713" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip17"><path d="M 567.7686,253.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip17)"><path d="M 171.0744,517.5207 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566357" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip18"><path d="M 567.7686,253.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip18)"><path d="M 171.0744,451.4050 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831783" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 567.7686,253.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831783" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip19"><path d="M 458.6777,253.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip19)"><path d="M 144.6281,186.9421 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.797958971132713" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip20"><path d="M 458.6777,253.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip20)"><path d="M 61.9835,451.4050 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566357" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip21"><path d="M 458.6777,253.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip21)"><path d="M 61.9835,385.2893 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831783" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 458.6777,253.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831783" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip22"><path d="M 349.5868,253.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip22)"><path d="M 35.5372,120.8264 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.797958971132713" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip23"><path d="M 349.5868,253.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip23)"><path d="M -47.1074,385.2893 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566357" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip24"><path d="M 349.5868,253.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip24)"><path d="M -47.1074,319.1736 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831783" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 349.5868,253.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831783" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip25"><path d="M 240.4959,253.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip25)"><path d="M -73.5537,54.7107 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.797958971132713" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip26"><path d="M 240.4959,253.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip26)"><path d="M -156.1983,319.1736 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566357" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip27"><path d="M 240.4959,253.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip27)"><path d="M -156.1983,253.0579 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831783" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.4959,253.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831783" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip28"><path d="M 131.4050,253.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip28)"><path d="M -182.6446,-11.4050 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.797958971132713" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip29"><path d="M 131.4050,253.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip29)"><path d="M -265.2893,253.0579 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566357" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip30"><path d="M 131.4050,253.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip30)"><path d="M -265.2893,186.9421 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831783" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 131.4050,253.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831783" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip31"><path d="M 567.7686,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip31)"><path d="M 352.8926,333.0579 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.797958971132713" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip32"><path d="M 567.7686,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip32)"><path d="M 270.2479,597.5207 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566357" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip33"><path d="M 567.7686,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip33)"><path d="M 270.2479,531.4050 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831783" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 567.7686,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831783" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip34"><path d="M 458.6777,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip34)"><path d="M 243.8017,266.9421 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.797958971132713" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip35"><path d="M 458.6777,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip35)"><path d="M 161.1570,531.4050 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566357" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip36"><path d="M 458.6777,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip36)"><path d="M 161.1570,465.2893 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831783" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 458.6777,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831783" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip37"><path d="M 349.5868,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip37)"><path d="M 134.7107,200.8264 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.797958971132713" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip38"><path d="M 349.5868,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip38)"><path d="M 52.0661,465.2893 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566357" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip39"><path d="M 349.5868,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip39)"><path d="M 52.0661,399.1736 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831783" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 349.5868,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831783" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip40"><path d="M 240.4959,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip40)"><path d="M 25.6198,134.7107 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.797958971132713" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip41"><path d="M 240.4959,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip41)"><path d="M -57.0248,399.1736 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566357" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip42"><path d="M 240.4959,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip42)"><path d="M -57.0248,333.0579 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831783" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.4959,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831783" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip43"><path d="M 131.4050,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip43)"><path d="M -83.4711,68.5950 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.797958971132713" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip44"><path d="M 131.4050,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip44)"><path d="M -166.1157,333.0579 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566357" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip45"><path d="M 131.4050,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip45)"><path d="M -166.1157,266.9421 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831783" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 131.4050,333.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831783" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip46"><path d="M 567.7686,413.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip46)"><path d="M 452.0661,413.0579 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.797958971132713" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip47"><path d="M 567.7686,413.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip47)"><path d="M 369.4215,677.5207 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566357" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip48"><path d="M 567.7686,413.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip48)"><path d="M 369.4215,611.4050 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831783" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 567.7686,413.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831783" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip49"><path d="M 458.6777,413.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip49)"><path d="M 342.9752,346.9421 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.797958971132713" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip50"><path d="M 458.6777,413.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip50)"><path d="M 260.3306,611.4050 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566357" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip51"><path d="M 458.6777,413.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip51)"><path d="M 260.3306,545.2893 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831783" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 458.6777,413.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831783" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip52"><path d="M 349.5868,413.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip52)"><path d="M 233.8843,280.8264 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.797958971132713" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip53"><path d="M 349.5868,413.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip53)"><path d="M 151.2397,545.2893 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566357" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip54"><path d="M 349.5868,413.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip54)"><path d="M 151.2397,479.1736 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831783" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 349.5868,413.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831783" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip55"><path d="M 240.4959,413.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip55)"><path d="M 124.7934,214.7107 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.797958971132713" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip56"><path d="M 240.4959,413.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip56)"><path d="M 42.1488,479.1736 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566357" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip57"><path d="M 240.4959,413.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip57)"><path d="M 42.1488,413.0579 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831783" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.4959,413.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831783" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip58"><path d="M 131.4050,413.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip58)"><path d="M 15.7025,148.5950 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.797958971132713" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip59"><path d="M 131.4050,413.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip59)"><path d="M -66.9421,413.0579 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566357" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip60"><path d="M 131.4050,413.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip60)"><path d="M -66.9421,346.9421 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831783" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 131.4050,413.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831783" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip61"><path d="M 567.7686,493.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip61)"><path d="M 551.2397,493.0579 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.797958971132713" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip62"><path d="M 567.7686,493.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip62)"><path d="M 468.5950,757.5207 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566357" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip63"><path d="M 567.7686,493.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip63)"><path d="M 468.5950,691.4050 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831783" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 567.7686,493.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831783" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip64"><path d="M 458.6777,493.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip64)"><path d="M 442.1488,426.9421 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.797958971132713" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip65"><path d="M 458.6777,493.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip65)"><path d="M 359.5041,691.4050 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566357" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip66"><path d="M 458.6777,493.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip66)"><path d="M 359.5041,625.2893 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831783" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 458.6777,493.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831783" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip67"><path d="M 349.5868,493.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip67)"><path d="M 333.0579,360.8264 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.797958971132713" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip68"><path d="M 349.5868,493.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip68)"><path d="M 250.4132,625.2893 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566357" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip69"><path d="M 349.5868,493.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip69)"><path d="M 250.4132,559.1736 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831783" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 349.5868,493.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831783" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip70"><path d="M 240.4959,493.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip70)"><path d="M 223.9669,294.7107 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.797958971132713" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip71"><path d="M 240.4959,493.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip71)"><path d="M 141.3223,559.1736 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566357" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip72"><path d="M 240.4959,493.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip72)"><path d="M 141.3223,493.0579 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831783" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.4959,493.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.4494897427831783" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip73"><path d="M 131.4050,493.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip73)"><path d="M 114.8760,228.5950 v 264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.797958971132713" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip74"><path d="M 131.4050,493.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip74)"><path d="M 32.2314,493.0579 l 495.8678,-198.3471 "/></g></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.898979485566357" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><defs><clipPath id="clippingExamplemyClip75"><path d="M 131.4050,493.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></clipPath></defs><g clip-path="url(#clippingExamplemyClip75)"><path d="M 32.2314,426.9421 h 165.2893 l 165.2893,-264.4628 "/></g></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.4494897427831783" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 131.4050,493.0579 l -0.0000,-66.1157 h -99.1736 l -0.0000,66.1157 Z"/></g></svg>
diff --git a/other/glineHudExample.svg b/other/glineHudExample.svg
--- a/other/glineHudExample.svg
+++ b/other/glineHudExample.svg
@@ -1,3 +1,3 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="400.0000" stroke-opacity="1" viewBox="0 0 600 400" font-size="1" width="600.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 424.9948,92.7678 ZM 431.4780,89.2220 c 0.0000,-2.1611 -1.1749,-3.2311 -2.4758 -3.2311c -0.9651,-0.0000 -1.6995,0.1469 -2.5177 0.4826l 0.6714,-5.7279 c 0.6924,0.0629 1.4057,0.0839 2.1401 0.0839c 1.0491,-0.0000 2.1401,-0.0629 3.2731 -0.1888l 0.1259,0.0629 l -0.3147,1.3638 c -0.8183,0.0839 -1.4897,0.1049 -2.0771 0.1049c -0.9442,-0.0000 -1.6575,-0.0839 -2.3919 -0.1678l -0.3986,3.3150 c 0.4406,-0.1678 1.1959,-0.3147 2.0142 -0.3147c 2.2240,-0.0000 3.4619,1.9303 3.4619 3.8605c 0.0000,2.3499 -1.6365,4.1543 -4.0074 4.1543c -1.1959,-0.0000 -2.9374,-0.6714 -2.9374 -1.4897c 0.0000,-0.3986 0.3357,-0.6714 0.7134 -0.6714c 0.4196,-0.0000 0.6924,0.3147 0.9442 0.6504c 0.3147,0.3777 0.6504,0.7973 1.3218 0.7973c 1.3428,-0.0000 2.4548,-1.2589 2.4548 -3.0842ZM 434.1845,92.7678 ZM 436.3666,90.7746 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 438.7794,92.7678 ZM 445.2626,89.2220 c 0.0000,-2.1611 -1.1749,-3.2311 -2.4758 -3.2311c -0.9651,-0.0000 -1.6995,0.1469 -2.5177 0.4826l 0.6714,-5.7279 c 0.6924,0.0629 1.4057,0.0839 2.1401 0.0839c 1.0491,-0.0000 2.1401,-0.0629 3.2731 -0.1888l 0.1259,0.0629 l -0.3147,1.3638 c -0.8183,0.0839 -1.4897,0.1049 -2.0771 0.1049c -0.9442,-0.0000 -1.6575,-0.0839 -2.3919 -0.1678l -0.3986,3.3150 c 0.4406,-0.1678 1.1959,-0.3147 2.0142 -0.3147c 2.2240,-0.0000 3.4619,1.9303 3.4619 3.8605c 0.0000,2.3499 -1.6365,4.1543 -4.0074 4.1543c -1.1959,-0.0000 -2.9374,-0.6714 -2.9374 -1.4897c 0.0000,-0.3986 0.3357,-0.6714 0.7134 -0.6714c 0.4196,-0.0000 0.6924,0.3147 0.9442 0.6504c 0.3147,0.3777 0.6504,0.7973 1.3218 0.7973c 1.3428,-0.0000 2.4548,-1.2589 2.4548 -3.0842Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 438.5906,104.5855 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 424.9948,134.9400 ZM 431.4780,131.3942 c 0.0000,-2.1611 -1.1749,-3.2311 -2.4758 -3.2311c -0.9651,-0.0000 -1.6995,0.1469 -2.5177 0.4826l 0.6714,-5.7279 c 0.6924,0.0629 1.4057,0.0839 2.1401 0.0839c 1.0491,-0.0000 2.1401,-0.0629 3.2731 -0.1888l 0.1259,0.0629 l -0.3147,1.3638 c -0.8183,0.0839 -1.4897,0.1049 -2.0771 0.1049c -0.9442,-0.0000 -1.6575,-0.0839 -2.3919 -0.1678l -0.3986,3.3150 c 0.4406,-0.1678 1.1959,-0.3147 2.0142 -0.3147c 2.2240,-0.0000 3.4619,1.9303 3.4619 3.8605c 0.0000,2.3499 -1.6365,4.1543 -4.0074 4.1543c -1.1959,-0.0000 -2.9374,-0.6714 -2.9374 -1.4897c 0.0000,-0.3986 0.3357,-0.6714 0.7134 -0.6714c 0.4196,-0.0000 0.6924,0.3147 0.9442 0.6504c 0.3147,0.3777 0.6504,0.7973 1.3218 0.7973c 1.3428,-0.0000 2.4548,-1.2589 2.4548 -3.0842ZM 434.1845,134.9400 ZM 436.3666,132.9468 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 438.7794,134.9400 ZM 444.1926,127.4917 c 0.0000,-0.1469 0.0210,-0.3147 0.2098 -0.4196c 0.2308,-0.1678 0.6085,-0.3567 0.9232 -0.3567c 0.2728,-0.0000 0.2937,0.2308 0.2937 0.6504v 3.3780 h 1.6995 l -0.1259,0.9861 h -1.5736 v 1.7414 c 0.0000,0.5875 0.0839,0.8812 0.6924 0.8812h 0.5665 c 0.1259,-0.0000 0.1469,0.1049 0.1469 0.1469v 0.4616 c 0.0000,-0.0000 -1.3428,-0.0420 -2.2240 -0.0420c -0.7973,-0.0000 -2.0352,0.0420 -2.0352 0.0420v -0.4616 c 0.0000,-0.0420 0.0210,-0.1469 0.1469 -0.1469h 0.5665 c 0.6504,-0.0000 0.7134,-0.2728 0.7134 -0.8812v -1.7414 h -4.1123 c -0.0839,-0.0000 -0.1259,-0.0420 -0.1888 -0.1259l -0.1678,-0.2308 l -0.2518,-0.4406 c -0.0210,-0.0000 -0.0210,-0.0210 -0.0210 -0.0420c 0.0000,-0.0210 0.0210,-0.0420 0.0420 -0.0629c 1.3638,-1.5106 3.7766,-6.1894 4.5319 -7.9099c 0.0210,-0.0839 0.0629,-0.1049 0.1469 -0.1049c 0.0210,-0.0000 0.4826,0.1888 0.7343 0.2308c -0.9442,2.5387 -2.4968,5.2663 -4.0284 7.7001h 3.3150 v -3.2521 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 438.5906,146.7576 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 424.9948,177.1122 ZM 431.4780,173.5663 c 0.0000,-2.1611 -1.1749,-3.2311 -2.4758 -3.2311c -0.9651,-0.0000 -1.6995,0.1469 -2.5177 0.4826l 0.6714,-5.7279 c 0.6924,0.0629 1.4057,0.0839 2.1401 0.0839c 1.0491,-0.0000 2.1401,-0.0629 3.2731 -0.1888l 0.1259,0.0629 l -0.3147,1.3638 c -0.8183,0.0839 -1.4897,0.1049 -2.0771 0.1049c -0.9442,-0.0000 -1.6575,-0.0839 -2.3919 -0.1678l -0.3986,3.3150 c 0.4406,-0.1678 1.1959,-0.3147 2.0142 -0.3147c 2.2240,-0.0000 3.4619,1.9303 3.4619 3.8605c 0.0000,2.3499 -1.6365,4.1543 -4.0074 4.1543c -1.1959,-0.0000 -2.9374,-0.6714 -2.9374 -1.4897c 0.0000,-0.3986 0.3357,-0.6714 0.7134 -0.6714c 0.4196,-0.0000 0.6924,0.3147 0.9442 0.6504c 0.3147,0.3777 0.6504,0.7973 1.3218 0.7973c 1.3428,-0.0000 2.4548,-1.2589 2.4548 -3.0842ZM 434.1845,177.1122 ZM 436.3666,175.1189 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 438.7794,177.1122 ZM 443.3113,165.6355 c -0.5245,-0.0000 -2.0562,0.2937 -2.0562 1.5736c 0.0000,0.3777 -0.1469,1.0281 -0.7134 1.0281c -0.5455,-0.0000 -0.5875,-0.6085 -0.5875 -0.6714c 0.0000,-0.6504 0.8602,-2.5807 3.7766 -2.5807c 2.0352,-0.0000 2.6436,1.2799 2.6436 2.1191c 0.0000,0.5245 -0.1678,1.5736 -2.0562 2.7695c 1.1749,0.1888 2.7276,1.0491 2.7276 3.2311c 0.0000,2.7695 -2.0981,4.2592 -4.4690 4.2592c -1.1959,-0.0000 -2.8744,-0.5245 -2.8744 -1.3218c 0.0000,-0.3147 0.3147,-0.6714 0.7343 -0.6714c 0.3986,-0.0000 0.5875,0.2098 0.7763 0.4826c 0.2308,0.3567 0.6085,0.8602 1.6156 0.8602c 0.6924,-0.0000 2.6646,-0.6924 2.6646 -3.3360c 0.0000,-2.2450 -1.5736,-2.6017 -2.7066 -2.6017c -0.1888,-0.0000 -0.4196,0.0420 -0.6504 0.0839l -0.0839,-0.6294 c 1.6156,-0.2728 2.9583,-1.8463 2.9583 -2.8115c 0.0000,-1.1959 -0.8392,-1.7834 -1.6995 -1.7834Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 438.5906,188.9298 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 424.9948,219.2843 ZM 431.4780,215.7385 c 0.0000,-2.1611 -1.1749,-3.2311 -2.4758 -3.2311c -0.9651,-0.0000 -1.6995,0.1469 -2.5177 0.4826l 0.6714,-5.7279 c 0.6924,0.0629 1.4057,0.0839 2.1401 0.0839c 1.0491,-0.0000 2.1401,-0.0629 3.2731 -0.1888l 0.1259,0.0629 l -0.3147,1.3638 c -0.8183,0.0839 -1.4897,0.1049 -2.0771 0.1049c -0.9442,-0.0000 -1.6575,-0.0839 -2.3919 -0.1678l -0.3986,3.3150 c 0.4406,-0.1678 1.1959,-0.3147 2.0142 -0.3147c 2.2240,-0.0000 3.4619,1.9303 3.4619 3.8605c 0.0000,2.3499 -1.6365,4.1543 -4.0074 4.1543c -1.1959,-0.0000 -2.9374,-0.6714 -2.9374 -1.4897c 0.0000,-0.3986 0.3357,-0.6714 0.7134 -0.6714c 0.4196,-0.0000 0.6924,0.3147 0.9442 0.6504c 0.3147,0.3777 0.6504,0.7973 1.3218 0.7973c 1.3428,-0.0000 2.4548,-1.2589 2.4548 -3.0842ZM 434.1845,219.2843 ZM 436.3666,217.2911 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 438.7794,219.2843 ZM 439.9963,209.9897 c 0.0000,-1.1959 1.1540,-2.8325 3.3570 -2.8325c 1.6156,-0.0000 3.5039,0.6085 3.5039 3.0213c 0.0000,1.5946 -0.8183,2.3919 -1.9512 3.4829l -1.9932,1.9303 c -0.1049,0.1049 -1.5106,1.4897 -1.5106 2.4758h 3.5668 c 0.7134,-0.0000 1.0910,-0.3567 1.3848 -1.5106l 0.5245,0.0839 l -0.4196,2.6436 h -6.4832 c 0.0000,-1.1749 0.1888,-2.0771 2.1401 -4.0703l 1.4687,-1.4477 c 1.1749,-1.1959 1.6575,-2.2240 1.6575 -3.5039c 0.0000,-1.9093 -1.3008,-2.4548 -2.0142 -2.4548c -1.4477,-0.0000 -1.8463,0.7553 -1.8463 1.2589c 0.0000,0.1678 0.0420,0.3357 0.0839 0.4826c 0.0420,0.1469 0.0839,0.2937 0.0839 0.4616c 0.0000,0.5455 -0.4196,0.7553 -0.7553 0.7553c -0.4616,-0.0000 -0.7973,-0.3567 -0.7973 -0.7763Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 438.5906,231.1020 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 424.9948,261.4565 ZM 431.4780,257.9107 c 0.0000,-2.1611 -1.1749,-3.2311 -2.4758 -3.2311c -0.9651,-0.0000 -1.6995,0.1469 -2.5177 0.4826l 0.6714,-5.7279 c 0.6924,0.0629 1.4057,0.0839 2.1401 0.0839c 1.0491,-0.0000 2.1401,-0.0629 3.2731 -0.1888l 0.1259,0.0629 l -0.3147,1.3638 c -0.8183,0.0839 -1.4897,0.1049 -2.0771 0.1049c -0.9442,-0.0000 -1.6575,-0.0839 -2.3919 -0.1678l -0.3986,3.3150 c 0.4406,-0.1678 1.1959,-0.3147 2.0142 -0.3147c 2.2240,-0.0000 3.4619,1.9303 3.4619 3.8605c 0.0000,2.3499 -1.6365,4.1543 -4.0074 4.1543c -1.1959,-0.0000 -2.9374,-0.6714 -2.9374 -1.4897c 0.0000,-0.3986 0.3357,-0.6714 0.7134 -0.6714c 0.4196,-0.0000 0.6924,0.3147 0.9442 0.6504c 0.3147,0.3777 0.6504,0.7973 1.3218 0.7973c 1.3428,-0.0000 2.4548,-1.2589 2.4548 -3.0842ZM 434.1845,261.4565 ZM 436.3666,259.4633 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 438.7794,261.4565 ZM 442.7239,251.4485 c -0.3986,-0.0000 -1.3218,0.3777 -1.7834 0.5875l -0.2518,-0.6504 c 1.8463,-0.8602 2.5597,-1.3008 3.6088 -2.0562h 0.3986 v 10.5535 c 0.0000,0.7553 0.1049,0.9651 0.7973 0.9651h 1.0910 c 0.0629,-0.0000 0.1678,0.0420 0.1678 0.1678v 0.4616 l -2.8744,-0.0420 l -2.9164,0.0420 v -0.4616 c 0.0210,-0.0629 0.0420,-0.1678 0.1678 -0.1678h 1.2589 c 0.7973,-0.0000 0.7973,-0.3567 0.7973 -0.9651v -7.2175 c 0.0000,-0.7134 0.0000,-1.2169 -0.4616 -1.2169Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 438.5906,273.2741 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 424.9948,303.6287 ZM 431.4780,300.0828 c 0.0000,-2.1611 -1.1749,-3.2311 -2.4758 -3.2311c -0.9651,-0.0000 -1.6995,0.1469 -2.5177 0.4826l 0.6714,-5.7279 c 0.6924,0.0629 1.4057,0.0839 2.1401 0.0839c 1.0491,-0.0000 2.1401,-0.0629 3.2731 -0.1888l 0.1259,0.0629 l -0.3147,1.3638 c -0.8183,0.0839 -1.4897,0.1049 -2.0771 0.1049c -0.9442,-0.0000 -1.6575,-0.0839 -2.3919 -0.1678l -0.3986,3.3150 c 0.4406,-0.1678 1.1959,-0.3147 2.0142 -0.3147c 2.2240,-0.0000 3.4619,1.9303 3.4619 3.8605c 0.0000,2.3499 -1.6365,4.1543 -4.0074 4.1543c -1.1959,-0.0000 -2.9374,-0.6714 -2.9374 -1.4897c 0.0000,-0.3986 0.3357,-0.6714 0.7134 -0.6714c 0.4196,-0.0000 0.6924,0.3147 0.9442 0.6504c 0.3147,0.3777 0.6504,0.7973 1.3218 0.7973c 1.3428,-0.0000 2.4548,-1.2589 2.4548 -3.0842ZM 434.1845,303.6287 ZM 436.3666,301.6355 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 438.7794,303.6287 ZM 443.3743,292.2359 c -0.9022,-0.0000 -2.2240,0.8812 -2.2240 5.7698c 0.0000,1.7205 0.3147,5.1824 2.1611 5.1824c 0.3567,-0.0000 1.3638,-0.2308 1.8044 -1.8673c 0.2728,-1.0071 0.4196,-2.2660 0.4196 -4.0913c 0.0000,-2.6646 -0.6714,-4.1543 -1.2799 -4.6788c -0.2308,-0.2098 -0.5455,-0.3147 -0.8812 -0.3147ZM 443.3743,292.2359 ZM 443.2904,303.8804 c -2.2450,-0.0000 -3.7556,-2.8744 -3.7556 -6.0845c 0.0000,-3.9235 1.8673,-6.2944 3.8396 -6.2944c 0.9022,-0.0000 1.8044,0.5665 2.4128 1.3848c 0.8812,1.1749 1.3428,2.7485 1.3428 4.7208c 0.0000,4.6578 -2.3079,6.2734 -3.8396 6.2734Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 438.5906,315.4463 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.7365,92.7678 ZM 367.1497,85.3195 c 0.0000,-0.1469 0.0210,-0.3147 0.2098 -0.4196c 0.2308,-0.1678 0.6085,-0.3567 0.9232 -0.3567c 0.2728,-0.0000 0.2937,0.2308 0.2937 0.6504v 3.3780 h 1.6995 l -0.1259,0.9861 h -1.5736 v 1.7414 c 0.0000,0.5875 0.0839,0.8812 0.6924 0.8812h 0.5665 c 0.1259,-0.0000 0.1469,0.1049 0.1469 0.1469v 0.4616 c 0.0000,-0.0000 -1.3428,-0.0420 -2.2240 -0.0420c -0.7973,-0.0000 -2.0352,0.0420 -2.0352 0.0420v -0.4616 c 0.0000,-0.0420 0.0210,-0.1469 0.1469 -0.1469h 0.5665 c 0.6504,-0.0000 0.7134,-0.2728 0.7134 -0.8812v -1.7414 h -4.1123 c -0.0839,-0.0000 -0.1259,-0.0420 -0.1888 -0.1259l -0.1678,-0.2308 l -0.2518,-0.4406 c -0.0210,-0.0000 -0.0210,-0.0210 -0.0210 -0.0420c 0.0000,-0.0210 0.0210,-0.0420 0.0420 -0.0629c 1.3638,-1.5106 3.7766,-6.1894 4.5319 -7.9099c 0.0210,-0.0839 0.0629,-0.1049 0.1469 -0.1049c 0.0210,-0.0000 0.4826,0.1888 0.7343 0.2308c -0.9442,2.5387 -2.4968,5.2663 -4.0284 7.7001h 3.3150 v -3.2521 ZM 370.9263,92.7678 ZM 373.1083,90.7746 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 375.5212,92.7678 ZM 382.0043,89.2220 c 0.0000,-2.1611 -1.1749,-3.2311 -2.4758 -3.2311c -0.9651,-0.0000 -1.6995,0.1469 -2.5177 0.4826l 0.6714,-5.7279 c 0.6924,0.0629 1.4057,0.0839 2.1401 0.0839c 1.0491,-0.0000 2.1401,-0.0629 3.2731 -0.1888l 0.1259,0.0629 l -0.3147,1.3638 c -0.8183,0.0839 -1.4897,0.1049 -2.0771 0.1049c -0.9442,-0.0000 -1.6575,-0.0839 -2.3919 -0.1678l -0.3986,3.3150 c 0.4406,-0.1678 1.1959,-0.3147 2.0142 -0.3147c 2.2240,-0.0000 3.4619,1.9303 3.4619 3.8605c 0.0000,2.3499 -1.6365,4.1543 -4.0074 4.1543c -1.1959,-0.0000 -2.9374,-0.6714 -2.9374 -1.4897c 0.0000,-0.3986 0.3357,-0.6714 0.7134 -0.6714c 0.4196,-0.0000 0.6924,0.3147 0.9442 0.6504c 0.3147,0.3777 0.6504,0.7973 1.3218 0.7973c 1.3428,-0.0000 2.4548,-1.2589 2.4548 -3.0842Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.3323,104.5855 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.7365,134.9400 ZM 367.1497,127.4917 c 0.0000,-0.1469 0.0210,-0.3147 0.2098 -0.4196c 0.2308,-0.1678 0.6085,-0.3567 0.9232 -0.3567c 0.2728,-0.0000 0.2937,0.2308 0.2937 0.6504v 3.3780 h 1.6995 l -0.1259,0.9861 h -1.5736 v 1.7414 c 0.0000,0.5875 0.0839,0.8812 0.6924 0.8812h 0.5665 c 0.1259,-0.0000 0.1469,0.1049 0.1469 0.1469v 0.4616 c 0.0000,-0.0000 -1.3428,-0.0420 -2.2240 -0.0420c -0.7973,-0.0000 -2.0352,0.0420 -2.0352 0.0420v -0.4616 c 0.0000,-0.0420 0.0210,-0.1469 0.1469 -0.1469h 0.5665 c 0.6504,-0.0000 0.7134,-0.2728 0.7134 -0.8812v -1.7414 h -4.1123 c -0.0839,-0.0000 -0.1259,-0.0420 -0.1888 -0.1259l -0.1678,-0.2308 l -0.2518,-0.4406 c -0.0210,-0.0000 -0.0210,-0.0210 -0.0210 -0.0420c 0.0000,-0.0210 0.0210,-0.0420 0.0420 -0.0629c 1.3638,-1.5106 3.7766,-6.1894 4.5319 -7.9099c 0.0210,-0.0839 0.0629,-0.1049 0.1469 -0.1049c 0.0210,-0.0000 0.4826,0.1888 0.7343 0.2308c -0.9442,2.5387 -2.4968,5.2663 -4.0284 7.7001h 3.3150 v -3.2521 ZM 370.9263,134.9400 ZM 373.1083,132.9468 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 375.5212,134.9400 ZM 380.9343,127.4917 c 0.0000,-0.1469 0.0210,-0.3147 0.2098 -0.4196c 0.2308,-0.1678 0.6085,-0.3567 0.9232 -0.3567c 0.2728,-0.0000 0.2937,0.2308 0.2937 0.6504v 3.3780 h 1.6995 l -0.1259,0.9861 h -1.5736 v 1.7414 c 0.0000,0.5875 0.0839,0.8812 0.6924 0.8812h 0.5665 c 0.1259,-0.0000 0.1469,0.1049 0.1469 0.1469v 0.4616 c 0.0000,-0.0000 -1.3428,-0.0420 -2.2240 -0.0420c -0.7973,-0.0000 -2.0352,0.0420 -2.0352 0.0420v -0.4616 c 0.0000,-0.0420 0.0210,-0.1469 0.1469 -0.1469h 0.5665 c 0.6504,-0.0000 0.7134,-0.2728 0.7134 -0.8812v -1.7414 h -4.1123 c -0.0839,-0.0000 -0.1259,-0.0420 -0.1888 -0.1259l -0.1678,-0.2308 l -0.2518,-0.4406 c -0.0210,-0.0000 -0.0210,-0.0210 -0.0210 -0.0420c 0.0000,-0.0210 0.0210,-0.0420 0.0420 -0.0629c 1.3638,-1.5106 3.7766,-6.1894 4.5319 -7.9099c 0.0210,-0.0839 0.0629,-0.1049 0.1469 -0.1049c 0.0210,-0.0000 0.4826,0.1888 0.7343 0.2308c -0.9442,2.5387 -2.4968,5.2663 -4.0284 7.7001h 3.3150 v -3.2521 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.3323,146.7576 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.7365,177.1122 ZM 367.1497,169.6638 c 0.0000,-0.1469 0.0210,-0.3147 0.2098 -0.4196c 0.2308,-0.1678 0.6085,-0.3567 0.9232 -0.3567c 0.2728,-0.0000 0.2937,0.2308 0.2937 0.6504v 3.3780 h 1.6995 l -0.1259,0.9861 h -1.5736 v 1.7414 c 0.0000,0.5875 0.0839,0.8812 0.6924 0.8812h 0.5665 c 0.1259,-0.0000 0.1469,0.1049 0.1469 0.1469v 0.4616 c 0.0000,-0.0000 -1.3428,-0.0420 -2.2240 -0.0420c -0.7973,-0.0000 -2.0352,0.0420 -2.0352 0.0420v -0.4616 c 0.0000,-0.0420 0.0210,-0.1469 0.1469 -0.1469h 0.5665 c 0.6504,-0.0000 0.7134,-0.2728 0.7134 -0.8812v -1.7414 h -4.1123 c -0.0839,-0.0000 -0.1259,-0.0420 -0.1888 -0.1259l -0.1678,-0.2308 l -0.2518,-0.4406 c -0.0210,-0.0000 -0.0210,-0.0210 -0.0210 -0.0420c 0.0000,-0.0210 0.0210,-0.0420 0.0420 -0.0629c 1.3638,-1.5106 3.7766,-6.1894 4.5319 -7.9099c 0.0210,-0.0839 0.0629,-0.1049 0.1469 -0.1049c 0.0210,-0.0000 0.4826,0.1888 0.7343 0.2308c -0.9442,2.5387 -2.4968,5.2663 -4.0284 7.7001h 3.3150 v -3.2521 ZM 370.9263,177.1122 ZM 373.1083,175.1189 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 375.5212,177.1122 ZM 380.0531,165.6355 c -0.5245,-0.0000 -2.0562,0.2937 -2.0562 1.5736c 0.0000,0.3777 -0.1469,1.0281 -0.7134 1.0281c -0.5455,-0.0000 -0.5875,-0.6085 -0.5875 -0.6714c 0.0000,-0.6504 0.8602,-2.5807 3.7766 -2.5807c 2.0352,-0.0000 2.6436,1.2799 2.6436 2.1191c 0.0000,0.5245 -0.1678,1.5736 -2.0562 2.7695c 1.1749,0.1888 2.7276,1.0491 2.7276 3.2311c 0.0000,2.7695 -2.0981,4.2592 -4.4690 4.2592c -1.1959,-0.0000 -2.8744,-0.5245 -2.8744 -1.3218c 0.0000,-0.3147 0.3147,-0.6714 0.7343 -0.6714c 0.3986,-0.0000 0.5875,0.2098 0.7763 0.4826c 0.2308,0.3567 0.6085,0.8602 1.6156 0.8602c 0.6924,-0.0000 2.6646,-0.6924 2.6646 -3.3360c 0.0000,-2.2450 -1.5736,-2.6017 -2.7066 -2.6017c -0.1888,-0.0000 -0.4196,0.0420 -0.6504 0.0839l -0.0839,-0.6294 c 1.6156,-0.2728 2.9583,-1.8463 2.9583 -2.8115c 0.0000,-1.1959 -0.8392,-1.7834 -1.6995 -1.7834Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.3323,188.9298 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.7365,219.2843 ZM 367.1497,211.8360 c 0.0000,-0.1469 0.0210,-0.3147 0.2098 -0.4196c 0.2308,-0.1678 0.6085,-0.3567 0.9232 -0.3567c 0.2728,-0.0000 0.2937,0.2308 0.2937 0.6504v 3.3780 h 1.6995 l -0.1259,0.9861 h -1.5736 v 1.7414 c 0.0000,0.5875 0.0839,0.8812 0.6924 0.8812h 0.5665 c 0.1259,-0.0000 0.1469,0.1049 0.1469 0.1469v 0.4616 c 0.0000,-0.0000 -1.3428,-0.0420 -2.2240 -0.0420c -0.7973,-0.0000 -2.0352,0.0420 -2.0352 0.0420v -0.4616 c 0.0000,-0.0420 0.0210,-0.1469 0.1469 -0.1469h 0.5665 c 0.6504,-0.0000 0.7134,-0.2728 0.7134 -0.8812v -1.7414 h -4.1123 c -0.0839,-0.0000 -0.1259,-0.0420 -0.1888 -0.1259l -0.1678,-0.2308 l -0.2518,-0.4406 c -0.0210,-0.0000 -0.0210,-0.0210 -0.0210 -0.0420c 0.0000,-0.0210 0.0210,-0.0420 0.0420 -0.0629c 1.3638,-1.5106 3.7766,-6.1894 4.5319 -7.9099c 0.0210,-0.0839 0.0629,-0.1049 0.1469 -0.1049c 0.0210,-0.0000 0.4826,0.1888 0.7343 0.2308c -0.9442,2.5387 -2.4968,5.2663 -4.0284 7.7001h 3.3150 v -3.2521 ZM 370.9263,219.2843 ZM 373.1083,217.2911 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 375.5212,219.2843 ZM 376.7381,209.9897 c 0.0000,-1.1959 1.1540,-2.8325 3.3570 -2.8325c 1.6156,-0.0000 3.5039,0.6085 3.5039 3.0213c 0.0000,1.5946 -0.8183,2.3919 -1.9512 3.4829l -1.9932,1.9303 c -0.1049,0.1049 -1.5106,1.4897 -1.5106 2.4758h 3.5668 c 0.7134,-0.0000 1.0910,-0.3567 1.3848 -1.5106l 0.5245,0.0839 l -0.4196,2.6436 h -6.4832 c 0.0000,-1.1749 0.1888,-2.0771 2.1401 -4.0703l 1.4687,-1.4477 c 1.1749,-1.1959 1.6575,-2.2240 1.6575 -3.5039c 0.0000,-1.9093 -1.3008,-2.4548 -2.0142 -2.4548c -1.4477,-0.0000 -1.8463,0.7553 -1.8463 1.2589c 0.0000,0.1678 0.0420,0.3357 0.0839 0.4826c 0.0420,0.1469 0.0839,0.2937 0.0839 0.4616c 0.0000,0.5455 -0.4196,0.7553 -0.7553 0.7553c -0.4616,-0.0000 -0.7973,-0.3567 -0.7973 -0.7763Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.3323,231.1020 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.7365,261.4565 ZM 367.1497,254.0082 c 0.0000,-0.1469 0.0210,-0.3147 0.2098 -0.4196c 0.2308,-0.1678 0.6085,-0.3567 0.9232 -0.3567c 0.2728,-0.0000 0.2937,0.2308 0.2937 0.6504v 3.3780 h 1.6995 l -0.1259,0.9861 h -1.5736 v 1.7414 c 0.0000,0.5875 0.0839,0.8812 0.6924 0.8812h 0.5665 c 0.1259,-0.0000 0.1469,0.1049 0.1469 0.1469v 0.4616 c 0.0000,-0.0000 -1.3428,-0.0420 -2.2240 -0.0420c -0.7973,-0.0000 -2.0352,0.0420 -2.0352 0.0420v -0.4616 c 0.0000,-0.0420 0.0210,-0.1469 0.1469 -0.1469h 0.5665 c 0.6504,-0.0000 0.7134,-0.2728 0.7134 -0.8812v -1.7414 h -4.1123 c -0.0839,-0.0000 -0.1259,-0.0420 -0.1888 -0.1259l -0.1678,-0.2308 l -0.2518,-0.4406 c -0.0210,-0.0000 -0.0210,-0.0210 -0.0210 -0.0420c 0.0000,-0.0210 0.0210,-0.0420 0.0420 -0.0629c 1.3638,-1.5106 3.7766,-6.1894 4.5319 -7.9099c 0.0210,-0.0839 0.0629,-0.1049 0.1469 -0.1049c 0.0210,-0.0000 0.4826,0.1888 0.7343 0.2308c -0.9442,2.5387 -2.4968,5.2663 -4.0284 7.7001h 3.3150 v -3.2521 ZM 370.9263,261.4565 ZM 373.1083,259.4633 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 375.5212,261.4565 ZM 379.4656,251.4485 c -0.3986,-0.0000 -1.3218,0.3777 -1.7834 0.5875l -0.2518,-0.6504 c 1.8463,-0.8602 2.5597,-1.3008 3.6088 -2.0562h 0.3986 v 10.5535 c 0.0000,0.7553 0.1049,0.9651 0.7973 0.9651h 1.0910 c 0.0629,-0.0000 0.1678,0.0420 0.1678 0.1678v 0.4616 l -2.8744,-0.0420 l -2.9164,0.0420 v -0.4616 c 0.0210,-0.0629 0.0420,-0.1678 0.1678 -0.1678h 1.2589 c 0.7973,-0.0000 0.7973,-0.3567 0.7973 -0.9651v -7.2175 c 0.0000,-0.7134 0.0000,-1.2169 -0.4616 -1.2169Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.3323,273.2741 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.7365,303.6287 ZM 367.1497,296.1804 c 0.0000,-0.1469 0.0210,-0.3147 0.2098 -0.4196c 0.2308,-0.1678 0.6085,-0.3567 0.9232 -0.3567c 0.2728,-0.0000 0.2937,0.2308 0.2937 0.6504v 3.3780 h 1.6995 l -0.1259,0.9861 h -1.5736 v 1.7414 c 0.0000,0.5875 0.0839,0.8812 0.6924 0.8812h 0.5665 c 0.1259,-0.0000 0.1469,0.1049 0.1469 0.1469v 0.4616 c 0.0000,-0.0000 -1.3428,-0.0420 -2.2240 -0.0420c -0.7973,-0.0000 -2.0352,0.0420 -2.0352 0.0420v -0.4616 c 0.0000,-0.0420 0.0210,-0.1469 0.1469 -0.1469h 0.5665 c 0.6504,-0.0000 0.7134,-0.2728 0.7134 -0.8812v -1.7414 h -4.1123 c -0.0839,-0.0000 -0.1259,-0.0420 -0.1888 -0.1259l -0.1678,-0.2308 l -0.2518,-0.4406 c -0.0210,-0.0000 -0.0210,-0.0210 -0.0210 -0.0420c 0.0000,-0.0210 0.0210,-0.0420 0.0420 -0.0629c 1.3638,-1.5106 3.7766,-6.1894 4.5319 -7.9099c 0.0210,-0.0839 0.0629,-0.1049 0.1469 -0.1049c 0.0210,-0.0000 0.4826,0.1888 0.7343 0.2308c -0.9442,2.5387 -2.4968,5.2663 -4.0284 7.7001h 3.3150 v -3.2521 ZM 370.9263,303.6287 ZM 373.1083,301.6355 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 375.5212,303.6287 ZM 380.1160,292.2359 c -0.9022,-0.0000 -2.2240,0.8812 -2.2240 5.7698c 0.0000,1.7205 0.3147,5.1824 2.1611 5.1824c 0.3567,-0.0000 1.3638,-0.2308 1.8044 -1.8673c 0.2728,-1.0071 0.4196,-2.2660 0.4196 -4.0913c 0.0000,-2.6646 -0.6714,-4.1543 -1.2799 -4.6788c -0.2308,-0.2098 -0.5455,-0.3147 -0.8812 -0.3147ZM 380.1160,292.2359 ZM 380.0321,303.8804 c -2.2450,-0.0000 -3.7556,-2.8744 -3.7556 -6.0845c 0.0000,-3.9235 1.8673,-6.2944 3.8396 -6.2944c 0.9022,-0.0000 1.8044,0.5665 2.4128 1.3848c 0.8812,1.1749 1.3428,2.7485 1.3428 4.7208c 0.0000,4.6578 -2.3079,6.2734 -3.8396 6.2734Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.3323,315.4463 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 298.4783,92.7678 ZM 303.0102,81.2911 c -0.5245,-0.0000 -2.0562,0.2937 -2.0562 1.5736c 0.0000,0.3777 -0.1469,1.0281 -0.7134 1.0281c -0.5455,-0.0000 -0.5875,-0.6085 -0.5875 -0.6714c 0.0000,-0.6504 0.8602,-2.5807 3.7766 -2.5807c 2.0352,-0.0000 2.6436,1.2799 2.6436 2.1191c 0.0000,0.5245 -0.1678,1.5736 -2.0562 2.7695c 1.1749,0.1888 2.7276,1.0491 2.7276 3.2311c 0.0000,2.7695 -2.0981,4.2592 -4.4690 4.2592c -1.1959,-0.0000 -2.8744,-0.5245 -2.8744 -1.3218c 0.0000,-0.3147 0.3147,-0.6714 0.7343 -0.6714c 0.3986,-0.0000 0.5875,0.2098 0.7763 0.4826c 0.2308,0.3567 0.6085,0.8602 1.6156 0.8602c 0.6924,-0.0000 2.6646,-0.6924 2.6646 -3.3360c 0.0000,-2.2450 -1.5736,-2.6017 -2.7066 -2.6017c -0.1888,-0.0000 -0.4196,0.0420 -0.6504 0.0839l -0.0839,-0.6294 c 1.6156,-0.2728 2.9583,-1.8463 2.9583 -2.8115c 0.0000,-1.1959 -0.8392,-1.7834 -1.6995 -1.7834ZM 307.6680,92.7678 ZM 309.8501,90.7746 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 312.2629,92.7678 ZM 318.7461,89.2220 c 0.0000,-2.1611 -1.1749,-3.2311 -2.4758 -3.2311c -0.9651,-0.0000 -1.6995,0.1469 -2.5177 0.4826l 0.6714,-5.7279 c 0.6924,0.0629 1.4057,0.0839 2.1401 0.0839c 1.0491,-0.0000 2.1401,-0.0629 3.2731 -0.1888l 0.1259,0.0629 l -0.3147,1.3638 c -0.8183,0.0839 -1.4897,0.1049 -2.0771 0.1049c -0.9442,-0.0000 -1.6575,-0.0839 -2.3919 -0.1678l -0.3986,3.3150 c 0.4406,-0.1678 1.1959,-0.3147 2.0142 -0.3147c 2.2240,-0.0000 3.4619,1.9303 3.4619 3.8605c 0.0000,2.3499 -1.6365,4.1543 -4.0074 4.1543c -1.1959,-0.0000 -2.9374,-0.6714 -2.9374 -1.4897c 0.0000,-0.3986 0.3357,-0.6714 0.7134 -0.6714c 0.4196,-0.0000 0.6924,0.3147 0.9442 0.6504c 0.3147,0.3777 0.6504,0.7973 1.3218 0.7973c 1.3428,-0.0000 2.4548,-1.2589 2.4548 -3.0842Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 312.0741,104.5855 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 298.4783,134.9400 ZM 303.0102,123.4633 c -0.5245,-0.0000 -2.0562,0.2937 -2.0562 1.5736c 0.0000,0.3777 -0.1469,1.0281 -0.7134 1.0281c -0.5455,-0.0000 -0.5875,-0.6085 -0.5875 -0.6714c 0.0000,-0.6504 0.8602,-2.5807 3.7766 -2.5807c 2.0352,-0.0000 2.6436,1.2799 2.6436 2.1191c 0.0000,0.5245 -0.1678,1.5736 -2.0562 2.7695c 1.1749,0.1888 2.7276,1.0491 2.7276 3.2311c 0.0000,2.7695 -2.0981,4.2592 -4.4690 4.2592c -1.1959,-0.0000 -2.8744,-0.5245 -2.8744 -1.3218c 0.0000,-0.3147 0.3147,-0.6714 0.7343 -0.6714c 0.3986,-0.0000 0.5875,0.2098 0.7763 0.4826c 0.2308,0.3567 0.6085,0.8602 1.6156 0.8602c 0.6924,-0.0000 2.6646,-0.6924 2.6646 -3.3360c 0.0000,-2.2450 -1.5736,-2.6017 -2.7066 -2.6017c -0.1888,-0.0000 -0.4196,0.0420 -0.6504 0.0839l -0.0839,-0.6294 c 1.6156,-0.2728 2.9583,-1.8463 2.9583 -2.8115c 0.0000,-1.1959 -0.8392,-1.7834 -1.6995 -1.7834ZM 307.6680,134.9400 ZM 309.8501,132.9468 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 312.2629,134.9400 ZM 317.6760,127.4917 c 0.0000,-0.1469 0.0210,-0.3147 0.2098 -0.4196c 0.2308,-0.1678 0.6085,-0.3567 0.9232 -0.3567c 0.2728,-0.0000 0.2937,0.2308 0.2937 0.6504v 3.3780 h 1.6995 l -0.1259,0.9861 h -1.5736 v 1.7414 c 0.0000,0.5875 0.0839,0.8812 0.6924 0.8812h 0.5665 c 0.1259,-0.0000 0.1469,0.1049 0.1469 0.1469v 0.4616 c 0.0000,-0.0000 -1.3428,-0.0420 -2.2240 -0.0420c -0.7973,-0.0000 -2.0352,0.0420 -2.0352 0.0420v -0.4616 c 0.0000,-0.0420 0.0210,-0.1469 0.1469 -0.1469h 0.5665 c 0.6504,-0.0000 0.7134,-0.2728 0.7134 -0.8812v -1.7414 h -4.1123 c -0.0839,-0.0000 -0.1259,-0.0420 -0.1888 -0.1259l -0.1678,-0.2308 l -0.2518,-0.4406 c -0.0210,-0.0000 -0.0210,-0.0210 -0.0210 -0.0420c 0.0000,-0.0210 0.0210,-0.0420 0.0420 -0.0629c 1.3638,-1.5106 3.7766,-6.1894 4.5319 -7.9099c 0.0210,-0.0839 0.0629,-0.1049 0.1469 -0.1049c 0.0210,-0.0000 0.4826,0.1888 0.7343 0.2308c -0.9442,2.5387 -2.4968,5.2663 -4.0284 7.7001h 3.3150 v -3.2521 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 312.0741,146.7576 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 298.4783,177.1122 ZM 303.0102,165.6355 c -0.5245,-0.0000 -2.0562,0.2937 -2.0562 1.5736c 0.0000,0.3777 -0.1469,1.0281 -0.7134 1.0281c -0.5455,-0.0000 -0.5875,-0.6085 -0.5875 -0.6714c 0.0000,-0.6504 0.8602,-2.5807 3.7766 -2.5807c 2.0352,-0.0000 2.6436,1.2799 2.6436 2.1191c 0.0000,0.5245 -0.1678,1.5736 -2.0562 2.7695c 1.1749,0.1888 2.7276,1.0491 2.7276 3.2311c 0.0000,2.7695 -2.0981,4.2592 -4.4690 4.2592c -1.1959,-0.0000 -2.8744,-0.5245 -2.8744 -1.3218c 0.0000,-0.3147 0.3147,-0.6714 0.7343 -0.6714c 0.3986,-0.0000 0.5875,0.2098 0.7763 0.4826c 0.2308,0.3567 0.6085,0.8602 1.6156 0.8602c 0.6924,-0.0000 2.6646,-0.6924 2.6646 -3.3360c 0.0000,-2.2450 -1.5736,-2.6017 -2.7066 -2.6017c -0.1888,-0.0000 -0.4196,0.0420 -0.6504 0.0839l -0.0839,-0.6294 c 1.6156,-0.2728 2.9583,-1.8463 2.9583 -2.8115c 0.0000,-1.1959 -0.8392,-1.7834 -1.6995 -1.7834ZM 307.6680,177.1122 ZM 309.8501,175.1189 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 312.2629,177.1122 ZM 316.7948,165.6355 c -0.5245,-0.0000 -2.0562,0.2937 -2.0562 1.5736c 0.0000,0.3777 -0.1469,1.0281 -0.7134 1.0281c -0.5455,-0.0000 -0.5875,-0.6085 -0.5875 -0.6714c 0.0000,-0.6504 0.8602,-2.5807 3.7766 -2.5807c 2.0352,-0.0000 2.6436,1.2799 2.6436 2.1191c 0.0000,0.5245 -0.1678,1.5736 -2.0562 2.7695c 1.1749,0.1888 2.7276,1.0491 2.7276 3.2311c 0.0000,2.7695 -2.0981,4.2592 -4.4690 4.2592c -1.1959,-0.0000 -2.8744,-0.5245 -2.8744 -1.3218c 0.0000,-0.3147 0.3147,-0.6714 0.7343 -0.6714c 0.3986,-0.0000 0.5875,0.2098 0.7763 0.4826c 0.2308,0.3567 0.6085,0.8602 1.6156 0.8602c 0.6924,-0.0000 2.6646,-0.6924 2.6646 -3.3360c 0.0000,-2.2450 -1.5736,-2.6017 -2.7066 -2.6017c -0.1888,-0.0000 -0.4196,0.0420 -0.6504 0.0839l -0.0839,-0.6294 c 1.6156,-0.2728 2.9583,-1.8463 2.9583 -2.8115c 0.0000,-1.1959 -0.8392,-1.7834 -1.6995 -1.7834Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 312.0741,188.9298 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 298.4783,219.2843 ZM 303.0102,207.8076 c -0.5245,-0.0000 -2.0562,0.2937 -2.0562 1.5736c 0.0000,0.3777 -0.1469,1.0281 -0.7134 1.0281c -0.5455,-0.0000 -0.5875,-0.6085 -0.5875 -0.6714c 0.0000,-0.6504 0.8602,-2.5807 3.7766 -2.5807c 2.0352,-0.0000 2.6436,1.2799 2.6436 2.1191c 0.0000,0.5245 -0.1678,1.5736 -2.0562 2.7695c 1.1749,0.1888 2.7276,1.0491 2.7276 3.2311c 0.0000,2.7695 -2.0981,4.2592 -4.4690 4.2592c -1.1959,-0.0000 -2.8744,-0.5245 -2.8744 -1.3218c 0.0000,-0.3147 0.3147,-0.6714 0.7343 -0.6714c 0.3986,-0.0000 0.5875,0.2098 0.7763 0.4826c 0.2308,0.3567 0.6085,0.8602 1.6156 0.8602c 0.6924,-0.0000 2.6646,-0.6924 2.6646 -3.3360c 0.0000,-2.2450 -1.5736,-2.6017 -2.7066 -2.6017c -0.1888,-0.0000 -0.4196,0.0420 -0.6504 0.0839l -0.0839,-0.6294 c 1.6156,-0.2728 2.9583,-1.8463 2.9583 -2.8115c 0.0000,-1.1959 -0.8392,-1.7834 -1.6995 -1.7834ZM 307.6680,219.2843 ZM 309.8501,217.2911 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 312.2629,219.2843 ZM 313.4798,209.9897 c 0.0000,-1.1959 1.1540,-2.8325 3.3570 -2.8325c 1.6156,-0.0000 3.5039,0.6085 3.5039 3.0213c 0.0000,1.5946 -0.8183,2.3919 -1.9512 3.4829l -1.9932,1.9303 c -0.1049,0.1049 -1.5106,1.4897 -1.5106 2.4758h 3.5668 c 0.7134,-0.0000 1.0910,-0.3567 1.3848 -1.5106l 0.5245,0.0839 l -0.4196,2.6436 h -6.4832 c 0.0000,-1.1749 0.1888,-2.0771 2.1401 -4.0703l 1.4687,-1.4477 c 1.1749,-1.1959 1.6575,-2.2240 1.6575 -3.5039c 0.0000,-1.9093 -1.3008,-2.4548 -2.0142 -2.4548c -1.4477,-0.0000 -1.8463,0.7553 -1.8463 1.2589c 0.0000,0.1678 0.0420,0.3357 0.0839 0.4826c 0.0420,0.1469 0.0839,0.2937 0.0839 0.4616c 0.0000,0.5455 -0.4196,0.7553 -0.7553 0.7553c -0.4616,-0.0000 -0.7973,-0.3567 -0.7973 -0.7763Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 312.0741,231.1020 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 298.4783,261.4565 ZM 303.0102,249.9798 c -0.5245,-0.0000 -2.0562,0.2937 -2.0562 1.5736c 0.0000,0.3777 -0.1469,1.0281 -0.7134 1.0281c -0.5455,-0.0000 -0.5875,-0.6085 -0.5875 -0.6714c 0.0000,-0.6504 0.8602,-2.5807 3.7766 -2.5807c 2.0352,-0.0000 2.6436,1.2799 2.6436 2.1191c 0.0000,0.5245 -0.1678,1.5736 -2.0562 2.7695c 1.1749,0.1888 2.7276,1.0491 2.7276 3.2311c 0.0000,2.7695 -2.0981,4.2592 -4.4690 4.2592c -1.1959,-0.0000 -2.8744,-0.5245 -2.8744 -1.3218c 0.0000,-0.3147 0.3147,-0.6714 0.7343 -0.6714c 0.3986,-0.0000 0.5875,0.2098 0.7763 0.4826c 0.2308,0.3567 0.6085,0.8602 1.6156 0.8602c 0.6924,-0.0000 2.6646,-0.6924 2.6646 -3.3360c 0.0000,-2.2450 -1.5736,-2.6017 -2.7066 -2.6017c -0.1888,-0.0000 -0.4196,0.0420 -0.6504 0.0839l -0.0839,-0.6294 c 1.6156,-0.2728 2.9583,-1.8463 2.9583 -2.8115c 0.0000,-1.1959 -0.8392,-1.7834 -1.6995 -1.7834ZM 307.6680,261.4565 ZM 309.8501,259.4633 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 312.2629,261.4565 ZM 316.2074,251.4485 c -0.3986,-0.0000 -1.3218,0.3777 -1.7834 0.5875l -0.2518,-0.6504 c 1.8463,-0.8602 2.5597,-1.3008 3.6088 -2.0562h 0.3986 v 10.5535 c 0.0000,0.7553 0.1049,0.9651 0.7973 0.9651h 1.0910 c 0.0629,-0.0000 0.1678,0.0420 0.1678 0.1678v 0.4616 l -2.8744,-0.0420 l -2.9164,0.0420 v -0.4616 c 0.0210,-0.0629 0.0420,-0.1678 0.1678 -0.1678h 1.2589 c 0.7973,-0.0000 0.7973,-0.3567 0.7973 -0.9651v -7.2175 c 0.0000,-0.7134 0.0000,-1.2169 -0.4616 -1.2169Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 312.0741,273.2741 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 298.4783,303.6287 ZM 303.0102,292.1520 c -0.5245,-0.0000 -2.0562,0.2937 -2.0562 1.5736c 0.0000,0.3777 -0.1469,1.0281 -0.7134 1.0281c -0.5455,-0.0000 -0.5875,-0.6085 -0.5875 -0.6714c 0.0000,-0.6504 0.8602,-2.5807 3.7766 -2.5807c 2.0352,-0.0000 2.6436,1.2799 2.6436 2.1191c 0.0000,0.5245 -0.1678,1.5736 -2.0562 2.7695c 1.1749,0.1888 2.7276,1.0491 2.7276 3.2311c 0.0000,2.7695 -2.0981,4.2592 -4.4690 4.2592c -1.1959,-0.0000 -2.8744,-0.5245 -2.8744 -1.3218c 0.0000,-0.3147 0.3147,-0.6714 0.7343 -0.6714c 0.3986,-0.0000 0.5875,0.2098 0.7763 0.4826c 0.2308,0.3567 0.6085,0.8602 1.6156 0.8602c 0.6924,-0.0000 2.6646,-0.6924 2.6646 -3.3360c 0.0000,-2.2450 -1.5736,-2.6017 -2.7066 -2.6017c -0.1888,-0.0000 -0.4196,0.0420 -0.6504 0.0839l -0.0839,-0.6294 c 1.6156,-0.2728 2.9583,-1.8463 2.9583 -2.8115c 0.0000,-1.1959 -0.8392,-1.7834 -1.6995 -1.7834ZM 307.6680,303.6287 ZM 309.8501,301.6355 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 312.2629,303.6287 ZM 316.8578,292.2359 c -0.9022,-0.0000 -2.2240,0.8812 -2.2240 5.7698c 0.0000,1.7205 0.3147,5.1824 2.1611 5.1824c 0.3567,-0.0000 1.3638,-0.2308 1.8044 -1.8673c 0.2728,-1.0071 0.4196,-2.2660 0.4196 -4.0913c 0.0000,-2.6646 -0.6714,-4.1543 -1.2799 -4.6788c -0.2308,-0.2098 -0.5455,-0.3147 -0.8812 -0.3147ZM 316.8578,292.2359 ZM 316.7738,303.8804 c -2.2450,-0.0000 -3.7556,-2.8744 -3.7556 -6.0845c 0.0000,-3.9235 1.8673,-6.2944 3.8396 -6.2944c 0.9022,-0.0000 1.8044,0.5665 2.4128 1.3848c 0.8812,1.1749 1.3428,2.7485 1.3428 4.7208c 0.0000,4.6578 -2.3079,6.2734 -3.8396 6.2734Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 312.0741,315.4463 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 235.2200,92.7678 ZM 236.4369,83.4732 c 0.0000,-1.1959 1.1540,-2.8325 3.3570 -2.8325c 1.6156,-0.0000 3.5039,0.6085 3.5039 3.0213c 0.0000,1.5946 -0.8183,2.3919 -1.9512 3.4829l -1.9932,1.9303 c -0.1049,0.1049 -1.5106,1.4897 -1.5106 2.4758h 3.5668 c 0.7134,-0.0000 1.0910,-0.3567 1.3848 -1.5106l 0.5245,0.0839 l -0.4196,2.6436 h -6.4832 c 0.0000,-1.1749 0.1888,-2.0771 2.1401 -4.0703l 1.4687,-1.4477 c 1.1749,-1.1959 1.6575,-2.2240 1.6575 -3.5039c 0.0000,-1.9093 -1.3008,-2.4548 -2.0142 -2.4548c -1.4477,-0.0000 -1.8463,0.7553 -1.8463 1.2589c 0.0000,0.1678 0.0420,0.3357 0.0839 0.4826c 0.0420,0.1469 0.0839,0.2937 0.0839 0.4616c 0.0000,0.5455 -0.4196,0.7553 -0.7553 0.7553c -0.4616,-0.0000 -0.7973,-0.3567 -0.7973 -0.7763ZM 244.4098,92.7678 ZM 246.5918,90.7746 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 249.0046,92.7678 ZM 255.4878,89.2220 c 0.0000,-2.1611 -1.1749,-3.2311 -2.4758 -3.2311c -0.9651,-0.0000 -1.6995,0.1469 -2.5177 0.4826l 0.6714,-5.7279 c 0.6924,0.0629 1.4057,0.0839 2.1401 0.0839c 1.0491,-0.0000 2.1401,-0.0629 3.2731 -0.1888l 0.1259,0.0629 l -0.3147,1.3638 c -0.8183,0.0839 -1.4897,0.1049 -2.0771 0.1049c -0.9442,-0.0000 -1.6575,-0.0839 -2.3919 -0.1678l -0.3986,3.3150 c 0.4406,-0.1678 1.1959,-0.3147 2.0142 -0.3147c 2.2240,-0.0000 3.4619,1.9303 3.4619 3.8605c 0.0000,2.3499 -1.6365,4.1543 -4.0074 4.1543c -1.1959,-0.0000 -2.9374,-0.6714 -2.9374 -1.4897c 0.0000,-0.3986 0.3357,-0.6714 0.7134 -0.6714c 0.4196,-0.0000 0.6924,0.3147 0.9442 0.6504c 0.3147,0.3777 0.6504,0.7973 1.3218 0.7973c 1.3428,-0.0000 2.4548,-1.2589 2.4548 -3.0842Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 248.8158,104.5855 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 235.2200,134.9400 ZM 236.4369,125.6453 c 0.0000,-1.1959 1.1540,-2.8325 3.3570 -2.8325c 1.6156,-0.0000 3.5039,0.6085 3.5039 3.0213c 0.0000,1.5946 -0.8183,2.3919 -1.9512 3.4829l -1.9932,1.9303 c -0.1049,0.1049 -1.5106,1.4897 -1.5106 2.4758h 3.5668 c 0.7134,-0.0000 1.0910,-0.3567 1.3848 -1.5106l 0.5245,0.0839 l -0.4196,2.6436 h -6.4832 c 0.0000,-1.1749 0.1888,-2.0771 2.1401 -4.0703l 1.4687,-1.4477 c 1.1749,-1.1959 1.6575,-2.2240 1.6575 -3.5039c 0.0000,-1.9093 -1.3008,-2.4548 -2.0142 -2.4548c -1.4477,-0.0000 -1.8463,0.7553 -1.8463 1.2589c 0.0000,0.1678 0.0420,0.3357 0.0839 0.4826c 0.0420,0.1469 0.0839,0.2937 0.0839 0.4616c 0.0000,0.5455 -0.4196,0.7553 -0.7553 0.7553c -0.4616,-0.0000 -0.7973,-0.3567 -0.7973 -0.7763ZM 244.4098,134.9400 ZM 246.5918,132.9468 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 249.0046,134.9400 ZM 254.4178,127.4917 c 0.0000,-0.1469 0.0210,-0.3147 0.2098 -0.4196c 0.2308,-0.1678 0.6085,-0.3567 0.9232 -0.3567c 0.2728,-0.0000 0.2937,0.2308 0.2937 0.6504v 3.3780 h 1.6995 l -0.1259,0.9861 h -1.5736 v 1.7414 c 0.0000,0.5875 0.0839,0.8812 0.6924 0.8812h 0.5665 c 0.1259,-0.0000 0.1469,0.1049 0.1469 0.1469v 0.4616 c 0.0000,-0.0000 -1.3428,-0.0420 -2.2240 -0.0420c -0.7973,-0.0000 -2.0352,0.0420 -2.0352 0.0420v -0.4616 c 0.0000,-0.0420 0.0210,-0.1469 0.1469 -0.1469h 0.5665 c 0.6504,-0.0000 0.7134,-0.2728 0.7134 -0.8812v -1.7414 h -4.1123 c -0.0839,-0.0000 -0.1259,-0.0420 -0.1888 -0.1259l -0.1678,-0.2308 l -0.2518,-0.4406 c -0.0210,-0.0000 -0.0210,-0.0210 -0.0210 -0.0420c 0.0000,-0.0210 0.0210,-0.0420 0.0420 -0.0629c 1.3638,-1.5106 3.7766,-6.1894 4.5319 -7.9099c 0.0210,-0.0839 0.0629,-0.1049 0.1469 -0.1049c 0.0210,-0.0000 0.4826,0.1888 0.7343 0.2308c -0.9442,2.5387 -2.4968,5.2663 -4.0284 7.7001h 3.3150 v -3.2521 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 248.8158,146.7576 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 235.2200,177.1122 ZM 236.4369,167.8175 c 0.0000,-1.1959 1.1540,-2.8325 3.3570 -2.8325c 1.6156,-0.0000 3.5039,0.6085 3.5039 3.0213c 0.0000,1.5946 -0.8183,2.3919 -1.9512 3.4829l -1.9932,1.9303 c -0.1049,0.1049 -1.5106,1.4897 -1.5106 2.4758h 3.5668 c 0.7134,-0.0000 1.0910,-0.3567 1.3848 -1.5106l 0.5245,0.0839 l -0.4196,2.6436 h -6.4832 c 0.0000,-1.1749 0.1888,-2.0771 2.1401 -4.0703l 1.4687,-1.4477 c 1.1749,-1.1959 1.6575,-2.2240 1.6575 -3.5039c 0.0000,-1.9093 -1.3008,-2.4548 -2.0142 -2.4548c -1.4477,-0.0000 -1.8463,0.7553 -1.8463 1.2589c 0.0000,0.1678 0.0420,0.3357 0.0839 0.4826c 0.0420,0.1469 0.0839,0.2937 0.0839 0.4616c 0.0000,0.5455 -0.4196,0.7553 -0.7553 0.7553c -0.4616,-0.0000 -0.7973,-0.3567 -0.7973 -0.7763ZM 244.4098,177.1122 ZM 246.5918,175.1189 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 249.0046,177.1122 ZM 253.5366,165.6355 c -0.5245,-0.0000 -2.0562,0.2937 -2.0562 1.5736c 0.0000,0.3777 -0.1469,1.0281 -0.7134 1.0281c -0.5455,-0.0000 -0.5875,-0.6085 -0.5875 -0.6714c 0.0000,-0.6504 0.8602,-2.5807 3.7766 -2.5807c 2.0352,-0.0000 2.6436,1.2799 2.6436 2.1191c 0.0000,0.5245 -0.1678,1.5736 -2.0562 2.7695c 1.1749,0.1888 2.7276,1.0491 2.7276 3.2311c 0.0000,2.7695 -2.0981,4.2592 -4.4690 4.2592c -1.1959,-0.0000 -2.8744,-0.5245 -2.8744 -1.3218c 0.0000,-0.3147 0.3147,-0.6714 0.7343 -0.6714c 0.3986,-0.0000 0.5875,0.2098 0.7763 0.4826c 0.2308,0.3567 0.6085,0.8602 1.6156 0.8602c 0.6924,-0.0000 2.6646,-0.6924 2.6646 -3.3360c 0.0000,-2.2450 -1.5736,-2.6017 -2.7066 -2.6017c -0.1888,-0.0000 -0.4196,0.0420 -0.6504 0.0839l -0.0839,-0.6294 c 1.6156,-0.2728 2.9583,-1.8463 2.9583 -2.8115c 0.0000,-1.1959 -0.8392,-1.7834 -1.6995 -1.7834Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 248.8158,188.9298 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 235.2200,219.2843 ZM 236.4369,209.9897 c 0.0000,-1.1959 1.1540,-2.8325 3.3570 -2.8325c 1.6156,-0.0000 3.5039,0.6085 3.5039 3.0213c 0.0000,1.5946 -0.8183,2.3919 -1.9512 3.4829l -1.9932,1.9303 c -0.1049,0.1049 -1.5106,1.4897 -1.5106 2.4758h 3.5668 c 0.7134,-0.0000 1.0910,-0.3567 1.3848 -1.5106l 0.5245,0.0839 l -0.4196,2.6436 h -6.4832 c 0.0000,-1.1749 0.1888,-2.0771 2.1401 -4.0703l 1.4687,-1.4477 c 1.1749,-1.1959 1.6575,-2.2240 1.6575 -3.5039c 0.0000,-1.9093 -1.3008,-2.4548 -2.0142 -2.4548c -1.4477,-0.0000 -1.8463,0.7553 -1.8463 1.2589c 0.0000,0.1678 0.0420,0.3357 0.0839 0.4826c 0.0420,0.1469 0.0839,0.2937 0.0839 0.4616c 0.0000,0.5455 -0.4196,0.7553 -0.7553 0.7553c -0.4616,-0.0000 -0.7973,-0.3567 -0.7973 -0.7763ZM 244.4098,219.2843 ZM 246.5918,217.2911 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 249.0046,219.2843 ZM 250.2215,209.9897 c 0.0000,-1.1959 1.1540,-2.8325 3.3570 -2.8325c 1.6156,-0.0000 3.5039,0.6085 3.5039 3.0213c 0.0000,1.5946 -0.8183,2.3919 -1.9512 3.4829l -1.9932,1.9303 c -0.1049,0.1049 -1.5106,1.4897 -1.5106 2.4758h 3.5668 c 0.7134,-0.0000 1.0910,-0.3567 1.3848 -1.5106l 0.5245,0.0839 l -0.4196,2.6436 h -6.4832 c 0.0000,-1.1749 0.1888,-2.0771 2.1401 -4.0703l 1.4687,-1.4477 c 1.1749,-1.1959 1.6575,-2.2240 1.6575 -3.5039c 0.0000,-1.9093 -1.3008,-2.4548 -2.0142 -2.4548c -1.4477,-0.0000 -1.8463,0.7553 -1.8463 1.2589c 0.0000,0.1678 0.0420,0.3357 0.0839 0.4826c 0.0420,0.1469 0.0839,0.2937 0.0839 0.4616c 0.0000,0.5455 -0.4196,0.7553 -0.7553 0.7553c -0.4616,-0.0000 -0.7973,-0.3567 -0.7973 -0.7763Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 248.8158,231.1020 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 235.2200,261.4565 ZM 236.4369,252.1618 c 0.0000,-1.1959 1.1540,-2.8325 3.3570 -2.8325c 1.6156,-0.0000 3.5039,0.6085 3.5039 3.0213c 0.0000,1.5946 -0.8183,2.3919 -1.9512 3.4829l -1.9932,1.9303 c -0.1049,0.1049 -1.5106,1.4897 -1.5106 2.4758h 3.5668 c 0.7134,-0.0000 1.0910,-0.3567 1.3848 -1.5106l 0.5245,0.0839 l -0.4196,2.6436 h -6.4832 c 0.0000,-1.1749 0.1888,-2.0771 2.1401 -4.0703l 1.4687,-1.4477 c 1.1749,-1.1959 1.6575,-2.2240 1.6575 -3.5039c 0.0000,-1.9093 -1.3008,-2.4548 -2.0142 -2.4548c -1.4477,-0.0000 -1.8463,0.7553 -1.8463 1.2589c 0.0000,0.1678 0.0420,0.3357 0.0839 0.4826c 0.0420,0.1469 0.0839,0.2937 0.0839 0.4616c 0.0000,0.5455 -0.4196,0.7553 -0.7553 0.7553c -0.4616,-0.0000 -0.7973,-0.3567 -0.7973 -0.7763ZM 244.4098,261.4565 ZM 246.5918,259.4633 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 249.0046,261.4565 ZM 252.9491,251.4485 c -0.3986,-0.0000 -1.3218,0.3777 -1.7834 0.5875l -0.2518,-0.6504 c 1.8463,-0.8602 2.5597,-1.3008 3.6088 -2.0562h 0.3986 v 10.5535 c 0.0000,0.7553 0.1049,0.9651 0.7973 0.9651h 1.0910 c 0.0629,-0.0000 0.1678,0.0420 0.1678 0.1678v 0.4616 l -2.8744,-0.0420 l -2.9164,0.0420 v -0.4616 c 0.0210,-0.0629 0.0420,-0.1678 0.1678 -0.1678h 1.2589 c 0.7973,-0.0000 0.7973,-0.3567 0.7973 -0.9651v -7.2175 c 0.0000,-0.7134 0.0000,-1.2169 -0.4616 -1.2169Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 248.8158,273.2741 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 235.2200,303.6287 ZM 236.4369,294.3340 c 0.0000,-1.1959 1.1540,-2.8325 3.3570 -2.8325c 1.6156,-0.0000 3.5039,0.6085 3.5039 3.0213c 0.0000,1.5946 -0.8183,2.3919 -1.9512 3.4829l -1.9932,1.9303 c -0.1049,0.1049 -1.5106,1.4897 -1.5106 2.4758h 3.5668 c 0.7134,-0.0000 1.0910,-0.3567 1.3848 -1.5106l 0.5245,0.0839 l -0.4196,2.6436 h -6.4832 c 0.0000,-1.1749 0.1888,-2.0771 2.1401 -4.0703l 1.4687,-1.4477 c 1.1749,-1.1959 1.6575,-2.2240 1.6575 -3.5039c 0.0000,-1.9093 -1.3008,-2.4548 -2.0142 -2.4548c -1.4477,-0.0000 -1.8463,0.7553 -1.8463 1.2589c 0.0000,0.1678 0.0420,0.3357 0.0839 0.4826c 0.0420,0.1469 0.0839,0.2937 0.0839 0.4616c 0.0000,0.5455 -0.4196,0.7553 -0.7553 0.7553c -0.4616,-0.0000 -0.7973,-0.3567 -0.7973 -0.7763ZM 244.4098,303.6287 ZM 246.5918,301.6355 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 249.0046,303.6287 ZM 253.5995,292.2359 c -0.9022,-0.0000 -2.2240,0.8812 -2.2240 5.7698c 0.0000,1.7205 0.3147,5.1824 2.1611 5.1824c 0.3567,-0.0000 1.3638,-0.2308 1.8044 -1.8673c 0.2728,-1.0071 0.4196,-2.2660 0.4196 -4.0913c 0.0000,-2.6646 -0.6714,-4.1543 -1.2799 -4.6788c -0.2308,-0.2098 -0.5455,-0.3147 -0.8812 -0.3147ZM 253.5995,292.2359 ZM 253.5156,303.8804 c -2.2450,-0.0000 -3.7556,-2.8744 -3.7556 -6.0845c 0.0000,-3.9235 1.8673,-6.2944 3.8396 -6.2944c 0.9022,-0.0000 1.8044,0.5665 2.4128 1.3848c 0.8812,1.1749 1.3428,2.7485 1.3428 4.7208c 0.0000,4.6578 -2.3079,6.2734 -3.8396 6.2734Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 248.8158,315.4463 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 171.9617,92.7678 ZM 175.9062,82.7598 c -0.3986,-0.0000 -1.3218,0.3777 -1.7834 0.5875l -0.2518,-0.6504 c 1.8463,-0.8602 2.5597,-1.3008 3.6088 -2.0562h 0.3986 v 10.5535 c 0.0000,0.7553 0.1049,0.9651 0.7973 0.9651h 1.0910 c 0.0629,-0.0000 0.1678,0.0420 0.1678 0.1678v 0.4616 l -2.8744,-0.0420 l -2.9164,0.0420 v -0.4616 c 0.0210,-0.0629 0.0420,-0.1678 0.1678 -0.1678h 1.2589 c 0.7973,-0.0000 0.7973,-0.3567 0.7973 -0.9651v -7.2175 c 0.0000,-0.7134 0.0000,-1.2169 -0.4616 -1.2169ZM 181.1515,92.7678 ZM 183.3335,90.7746 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 185.7464,92.7678 ZM 192.2296,89.2220 c 0.0000,-2.1611 -1.1749,-3.2311 -2.4758 -3.2311c -0.9651,-0.0000 -1.6995,0.1469 -2.5177 0.4826l 0.6714,-5.7279 c 0.6924,0.0629 1.4057,0.0839 2.1401 0.0839c 1.0491,-0.0000 2.1401,-0.0629 3.2731 -0.1888l 0.1259,0.0629 l -0.3147,1.3638 c -0.8183,0.0839 -1.4897,0.1049 -2.0771 0.1049c -0.9442,-0.0000 -1.6575,-0.0839 -2.3919 -0.1678l -0.3986,3.3150 c 0.4406,-0.1678 1.1959,-0.3147 2.0142 -0.3147c 2.2240,-0.0000 3.4619,1.9303 3.4619 3.8605c 0.0000,2.3499 -1.6365,4.1543 -4.0074 4.1543c -1.1959,-0.0000 -2.9374,-0.6714 -2.9374 -1.4897c 0.0000,-0.3986 0.3357,-0.6714 0.7134 -0.6714c 0.4196,-0.0000 0.6924,0.3147 0.9442 0.6504c 0.3147,0.3777 0.6504,0.7973 1.3218 0.7973c 1.3428,-0.0000 2.4548,-1.2589 2.4548 -3.0842Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 185.5576,104.5855 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 171.9617,134.9400 ZM 175.9062,124.9320 c -0.3986,-0.0000 -1.3218,0.3777 -1.7834 0.5875l -0.2518,-0.6504 c 1.8463,-0.8602 2.5597,-1.3008 3.6088 -2.0562h 0.3986 v 10.5535 c 0.0000,0.7553 0.1049,0.9651 0.7973 0.9651h 1.0910 c 0.0629,-0.0000 0.1678,0.0420 0.1678 0.1678v 0.4616 l -2.8744,-0.0420 l -2.9164,0.0420 v -0.4616 c 0.0210,-0.0629 0.0420,-0.1678 0.1678 -0.1678h 1.2589 c 0.7973,-0.0000 0.7973,-0.3567 0.7973 -0.9651v -7.2175 c 0.0000,-0.7134 0.0000,-1.2169 -0.4616 -1.2169ZM 181.1515,134.9400 ZM 183.3335,132.9468 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 185.7464,134.9400 ZM 191.1595,127.4917 c 0.0000,-0.1469 0.0210,-0.3147 0.2098 -0.4196c 0.2308,-0.1678 0.6085,-0.3567 0.9232 -0.3567c 0.2728,-0.0000 0.2937,0.2308 0.2937 0.6504v 3.3780 h 1.6995 l -0.1259,0.9861 h -1.5736 v 1.7414 c 0.0000,0.5875 0.0839,0.8812 0.6924 0.8812h 0.5665 c 0.1259,-0.0000 0.1469,0.1049 0.1469 0.1469v 0.4616 c 0.0000,-0.0000 -1.3428,-0.0420 -2.2240 -0.0420c -0.7973,-0.0000 -2.0352,0.0420 -2.0352 0.0420v -0.4616 c 0.0000,-0.0420 0.0210,-0.1469 0.1469 -0.1469h 0.5665 c 0.6504,-0.0000 0.7134,-0.2728 0.7134 -0.8812v -1.7414 h -4.1123 c -0.0839,-0.0000 -0.1259,-0.0420 -0.1888 -0.1259l -0.1678,-0.2308 l -0.2518,-0.4406 c -0.0210,-0.0000 -0.0210,-0.0210 -0.0210 -0.0420c 0.0000,-0.0210 0.0210,-0.0420 0.0420 -0.0629c 1.3638,-1.5106 3.7766,-6.1894 4.5319 -7.9099c 0.0210,-0.0839 0.0629,-0.1049 0.1469 -0.1049c 0.0210,-0.0000 0.4826,0.1888 0.7343 0.2308c -0.9442,2.5387 -2.4968,5.2663 -4.0284 7.7001h 3.3150 v -3.2521 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 185.5576,146.7576 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 171.9617,177.1122 ZM 175.9062,167.1041 c -0.3986,-0.0000 -1.3218,0.3777 -1.7834 0.5875l -0.2518,-0.6504 c 1.8463,-0.8602 2.5597,-1.3008 3.6088 -2.0562h 0.3986 v 10.5535 c 0.0000,0.7553 0.1049,0.9651 0.7973 0.9651h 1.0910 c 0.0629,-0.0000 0.1678,0.0420 0.1678 0.1678v 0.4616 l -2.8744,-0.0420 l -2.9164,0.0420 v -0.4616 c 0.0210,-0.0629 0.0420,-0.1678 0.1678 -0.1678h 1.2589 c 0.7973,-0.0000 0.7973,-0.3567 0.7973 -0.9651v -7.2175 c 0.0000,-0.7134 0.0000,-1.2169 -0.4616 -1.2169ZM 181.1515,177.1122 ZM 183.3335,175.1189 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 185.7464,177.1122 ZM 190.2783,165.6355 c -0.5245,-0.0000 -2.0562,0.2937 -2.0562 1.5736c 0.0000,0.3777 -0.1469,1.0281 -0.7134 1.0281c -0.5455,-0.0000 -0.5875,-0.6085 -0.5875 -0.6714c 0.0000,-0.6504 0.8602,-2.5807 3.7766 -2.5807c 2.0352,-0.0000 2.6436,1.2799 2.6436 2.1191c 0.0000,0.5245 -0.1678,1.5736 -2.0562 2.7695c 1.1749,0.1888 2.7276,1.0491 2.7276 3.2311c 0.0000,2.7695 -2.0981,4.2592 -4.4690 4.2592c -1.1959,-0.0000 -2.8744,-0.5245 -2.8744 -1.3218c 0.0000,-0.3147 0.3147,-0.6714 0.7343 -0.6714c 0.3986,-0.0000 0.5875,0.2098 0.7763 0.4826c 0.2308,0.3567 0.6085,0.8602 1.6156 0.8602c 0.6924,-0.0000 2.6646,-0.6924 2.6646 -3.3360c 0.0000,-2.2450 -1.5736,-2.6017 -2.7066 -2.6017c -0.1888,-0.0000 -0.4196,0.0420 -0.6504 0.0839l -0.0839,-0.6294 c 1.6156,-0.2728 2.9583,-1.8463 2.9583 -2.8115c 0.0000,-1.1959 -0.8392,-1.7834 -1.6995 -1.7834Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 185.5576,188.9298 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 171.9617,219.2843 ZM 175.9062,209.2763 c -0.3986,-0.0000 -1.3218,0.3777 -1.7834 0.5875l -0.2518,-0.6504 c 1.8463,-0.8602 2.5597,-1.3008 3.6088 -2.0562h 0.3986 v 10.5535 c 0.0000,0.7553 0.1049,0.9651 0.7973 0.9651h 1.0910 c 0.0629,-0.0000 0.1678,0.0420 0.1678 0.1678v 0.4616 l -2.8744,-0.0420 l -2.9164,0.0420 v -0.4616 c 0.0210,-0.0629 0.0420,-0.1678 0.1678 -0.1678h 1.2589 c 0.7973,-0.0000 0.7973,-0.3567 0.7973 -0.9651v -7.2175 c 0.0000,-0.7134 0.0000,-1.2169 -0.4616 -1.2169ZM 181.1515,219.2843 ZM 183.3335,217.2911 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 185.7464,219.2843 ZM 186.9633,209.9897 c 0.0000,-1.1959 1.1540,-2.8325 3.3570 -2.8325c 1.6156,-0.0000 3.5039,0.6085 3.5039 3.0213c 0.0000,1.5946 -0.8183,2.3919 -1.9512 3.4829l -1.9932,1.9303 c -0.1049,0.1049 -1.5106,1.4897 -1.5106 2.4758h 3.5668 c 0.7134,-0.0000 1.0910,-0.3567 1.3848 -1.5106l 0.5245,0.0839 l -0.4196,2.6436 h -6.4832 c 0.0000,-1.1749 0.1888,-2.0771 2.1401 -4.0703l 1.4687,-1.4477 c 1.1749,-1.1959 1.6575,-2.2240 1.6575 -3.5039c 0.0000,-1.9093 -1.3008,-2.4548 -2.0142 -2.4548c -1.4477,-0.0000 -1.8463,0.7553 -1.8463 1.2589c 0.0000,0.1678 0.0420,0.3357 0.0839 0.4826c 0.0420,0.1469 0.0839,0.2937 0.0839 0.4616c 0.0000,0.5455 -0.4196,0.7553 -0.7553 0.7553c -0.4616,-0.0000 -0.7973,-0.3567 -0.7973 -0.7763Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 185.5576,231.1020 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 171.9617,261.4565 ZM 175.9062,251.4485 c -0.3986,-0.0000 -1.3218,0.3777 -1.7834 0.5875l -0.2518,-0.6504 c 1.8463,-0.8602 2.5597,-1.3008 3.6088 -2.0562h 0.3986 v 10.5535 c 0.0000,0.7553 0.1049,0.9651 0.7973 0.9651h 1.0910 c 0.0629,-0.0000 0.1678,0.0420 0.1678 0.1678v 0.4616 l -2.8744,-0.0420 l -2.9164,0.0420 v -0.4616 c 0.0210,-0.0629 0.0420,-0.1678 0.1678 -0.1678h 1.2589 c 0.7973,-0.0000 0.7973,-0.3567 0.7973 -0.9651v -7.2175 c 0.0000,-0.7134 0.0000,-1.2169 -0.4616 -1.2169ZM 181.1515,261.4565 ZM 183.3335,259.4633 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 185.7464,261.4565 ZM 189.6908,251.4485 c -0.3986,-0.0000 -1.3218,0.3777 -1.7834 0.5875l -0.2518,-0.6504 c 1.8463,-0.8602 2.5597,-1.3008 3.6088 -2.0562h 0.3986 v 10.5535 c 0.0000,0.7553 0.1049,0.9651 0.7973 0.9651h 1.0910 c 0.0629,-0.0000 0.1678,0.0420 0.1678 0.1678v 0.4616 l -2.8744,-0.0420 l -2.9164,0.0420 v -0.4616 c 0.0210,-0.0629 0.0420,-0.1678 0.1678 -0.1678h 1.2589 c 0.7973,-0.0000 0.7973,-0.3567 0.7973 -0.9651v -7.2175 c 0.0000,-0.7134 0.0000,-1.2169 -0.4616 -1.2169Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 185.5576,273.2741 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 171.9617,303.6287 ZM 175.9062,293.6206 c -0.3986,-0.0000 -1.3218,0.3777 -1.7834 0.5875l -0.2518,-0.6504 c 1.8463,-0.8602 2.5597,-1.3008 3.6088 -2.0562h 0.3986 v 10.5535 c 0.0000,0.7553 0.1049,0.9651 0.7973 0.9651h 1.0910 c 0.0629,-0.0000 0.1678,0.0420 0.1678 0.1678v 0.4616 l -2.8744,-0.0420 l -2.9164,0.0420 v -0.4616 c 0.0210,-0.0629 0.0420,-0.1678 0.1678 -0.1678h 1.2589 c 0.7973,-0.0000 0.7973,-0.3567 0.7973 -0.9651v -7.2175 c 0.0000,-0.7134 0.0000,-1.2169 -0.4616 -1.2169ZM 181.1515,303.6287 ZM 183.3335,301.6355 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 185.7464,303.6287 ZM 190.3413,292.2359 c -0.9022,-0.0000 -2.2240,0.8812 -2.2240 5.7698c 0.0000,1.7205 0.3147,5.1824 2.1611 5.1824c 0.3567,-0.0000 1.3638,-0.2308 1.8044 -1.8673c 0.2728,-1.0071 0.4196,-2.2660 0.4196 -4.0913c 0.0000,-2.6646 -0.6714,-4.1543 -1.2799 -4.6788c -0.2308,-0.2098 -0.5455,-0.3147 -0.8812 -0.3147ZM 190.3413,292.2359 ZM 190.2573,303.8804 c -2.2450,-0.0000 -3.7556,-2.8744 -3.7556 -6.0845c 0.0000,-3.9235 1.8673,-6.2944 3.8396 -6.2944c 0.9022,-0.0000 1.8044,0.5665 2.4128 1.3848c 0.8812,1.1749 1.3428,2.7485 1.3428 4.7208c 0.0000,4.6578 -2.3079,6.2734 -3.8396 6.2734Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 185.5576,315.4463 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 108.7035,92.7678 ZM 113.2984,81.3750 c -0.9022,-0.0000 -2.2240,0.8812 -2.2240 5.7698c 0.0000,1.7205 0.3147,5.1824 2.1611 5.1824c 0.3567,-0.0000 1.3638,-0.2308 1.8044 -1.8673c 0.2728,-1.0071 0.4196,-2.2660 0.4196 -4.0913c 0.0000,-2.6646 -0.6714,-4.1543 -1.2799 -4.6788c -0.2308,-0.2098 -0.5455,-0.3147 -0.8812 -0.3147ZM 113.2984,81.3750 ZM 113.2144,93.0196 c -2.2450,-0.0000 -3.7556,-2.8744 -3.7556 -6.0845c 0.0000,-3.9235 1.8673,-6.2944 3.8396 -6.2944c 0.9022,-0.0000 1.8044,0.5665 2.4128 1.3848c 0.8812,1.1749 1.3428,2.7485 1.3428 4.7208c 0.0000,4.6578 -2.3079,6.2734 -3.8396 6.2734ZM 117.8932,92.7678 ZM 120.0753,90.7746 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 122.4881,92.7678 ZM 128.9713,89.2220 c 0.0000,-2.1611 -1.1749,-3.2311 -2.4758 -3.2311c -0.9651,-0.0000 -1.6995,0.1469 -2.5177 0.4826l 0.6714,-5.7279 c 0.6924,0.0629 1.4057,0.0839 2.1401 0.0839c 1.0491,-0.0000 2.1401,-0.0629 3.2731 -0.1888l 0.1259,0.0629 l -0.3147,1.3638 c -0.8183,0.0839 -1.4897,0.1049 -2.0771 0.1049c -0.9442,-0.0000 -1.6575,-0.0839 -2.3919 -0.1678l -0.3986,3.3150 c 0.4406,-0.1678 1.1959,-0.3147 2.0142 -0.3147c 2.2240,-0.0000 3.4619,1.9303 3.4619 3.8605c 0.0000,2.3499 -1.6365,4.1543 -4.0074 4.1543c -1.1959,-0.0000 -2.9374,-0.6714 -2.9374 -1.4897c 0.0000,-0.3986 0.3357,-0.6714 0.7134 -0.6714c 0.4196,-0.0000 0.6924,0.3147 0.9442 0.6504c 0.3147,0.3777 0.6504,0.7973 1.3218 0.7973c 1.3428,-0.0000 2.4548,-1.2589 2.4548 -3.0842Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 122.2993,104.5855 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 108.7035,134.9400 ZM 113.2984,123.5472 c -0.9022,-0.0000 -2.2240,0.8812 -2.2240 5.7698c 0.0000,1.7205 0.3147,5.1824 2.1611 5.1824c 0.3567,-0.0000 1.3638,-0.2308 1.8044 -1.8673c 0.2728,-1.0071 0.4196,-2.2660 0.4196 -4.0913c 0.0000,-2.6646 -0.6714,-4.1543 -1.2799 -4.6788c -0.2308,-0.2098 -0.5455,-0.3147 -0.8812 -0.3147ZM 113.2984,123.5472 ZM 113.2144,135.1918 c -2.2450,-0.0000 -3.7556,-2.8744 -3.7556 -6.0845c 0.0000,-3.9235 1.8673,-6.2944 3.8396 -6.2944c 0.9022,-0.0000 1.8044,0.5665 2.4128 1.3848c 0.8812,1.1749 1.3428,2.7485 1.3428 4.7208c 0.0000,4.6578 -2.3079,6.2734 -3.8396 6.2734ZM 117.8932,134.9400 ZM 120.0753,132.9468 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 122.4881,134.9400 ZM 127.9013,127.4917 c 0.0000,-0.1469 0.0210,-0.3147 0.2098 -0.4196c 0.2308,-0.1678 0.6085,-0.3567 0.9232 -0.3567c 0.2728,-0.0000 0.2937,0.2308 0.2937 0.6504v 3.3780 h 1.6995 l -0.1259,0.9861 h -1.5736 v 1.7414 c 0.0000,0.5875 0.0839,0.8812 0.6924 0.8812h 0.5665 c 0.1259,-0.0000 0.1469,0.1049 0.1469 0.1469v 0.4616 c 0.0000,-0.0000 -1.3428,-0.0420 -2.2240 -0.0420c -0.7973,-0.0000 -2.0352,0.0420 -2.0352 0.0420v -0.4616 c 0.0000,-0.0420 0.0210,-0.1469 0.1469 -0.1469h 0.5665 c 0.6504,-0.0000 0.7134,-0.2728 0.7134 -0.8812v -1.7414 h -4.1123 c -0.0839,-0.0000 -0.1259,-0.0420 -0.1888 -0.1259l -0.1678,-0.2308 l -0.2518,-0.4406 c -0.0210,-0.0000 -0.0210,-0.0210 -0.0210 -0.0420c 0.0000,-0.0210 0.0210,-0.0420 0.0420 -0.0629c 1.3638,-1.5106 3.7766,-6.1894 4.5319 -7.9099c 0.0210,-0.0839 0.0629,-0.1049 0.1469 -0.1049c 0.0210,-0.0000 0.4826,0.1888 0.7343 0.2308c -0.9442,2.5387 -2.4968,5.2663 -4.0284 7.7001h 3.3150 v -3.2521 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 122.2993,146.7576 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 108.7035,177.1122 ZM 113.2984,165.7194 c -0.9022,-0.0000 -2.2240,0.8812 -2.2240 5.7698c 0.0000,1.7205 0.3147,5.1824 2.1611 5.1824c 0.3567,-0.0000 1.3638,-0.2308 1.8044 -1.8673c 0.2728,-1.0071 0.4196,-2.2660 0.4196 -4.0913c 0.0000,-2.6646 -0.6714,-4.1543 -1.2799 -4.6788c -0.2308,-0.2098 -0.5455,-0.3147 -0.8812 -0.3147ZM 113.2984,165.7194 ZM 113.2144,177.3639 c -2.2450,-0.0000 -3.7556,-2.8744 -3.7556 -6.0845c 0.0000,-3.9235 1.8673,-6.2944 3.8396 -6.2944c 0.9022,-0.0000 1.8044,0.5665 2.4128 1.3848c 0.8812,1.1749 1.3428,2.7485 1.3428 4.7208c 0.0000,4.6578 -2.3079,6.2734 -3.8396 6.2734ZM 117.8932,177.1122 ZM 120.0753,175.1189 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 122.4881,177.1122 ZM 127.0201,165.6355 c -0.5245,-0.0000 -2.0562,0.2937 -2.0562 1.5736c 0.0000,0.3777 -0.1469,1.0281 -0.7134 1.0281c -0.5455,-0.0000 -0.5875,-0.6085 -0.5875 -0.6714c 0.0000,-0.6504 0.8602,-2.5807 3.7766 -2.5807c 2.0352,-0.0000 2.6436,1.2799 2.6436 2.1191c 0.0000,0.5245 -0.1678,1.5736 -2.0562 2.7695c 1.1749,0.1888 2.7276,1.0491 2.7276 3.2311c 0.0000,2.7695 -2.0981,4.2592 -4.4690 4.2592c -1.1959,-0.0000 -2.8744,-0.5245 -2.8744 -1.3218c 0.0000,-0.3147 0.3147,-0.6714 0.7343 -0.6714c 0.3986,-0.0000 0.5875,0.2098 0.7763 0.4826c 0.2308,0.3567 0.6085,0.8602 1.6156 0.8602c 0.6924,-0.0000 2.6646,-0.6924 2.6646 -3.3360c 0.0000,-2.2450 -1.5736,-2.6017 -2.7066 -2.6017c -0.1888,-0.0000 -0.4196,0.0420 -0.6504 0.0839l -0.0839,-0.6294 c 1.6156,-0.2728 2.9583,-1.8463 2.9583 -2.8115c 0.0000,-1.1959 -0.8392,-1.7834 -1.6995 -1.7834Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 122.2993,188.9298 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 108.7035,219.2843 ZM 113.2984,207.8915 c -0.9022,-0.0000 -2.2240,0.8812 -2.2240 5.7698c 0.0000,1.7205 0.3147,5.1824 2.1611 5.1824c 0.3567,-0.0000 1.3638,-0.2308 1.8044 -1.8673c 0.2728,-1.0071 0.4196,-2.2660 0.4196 -4.0913c 0.0000,-2.6646 -0.6714,-4.1543 -1.2799 -4.6788c -0.2308,-0.2098 -0.5455,-0.3147 -0.8812 -0.3147ZM 113.2984,207.8915 ZM 113.2144,219.5361 c -2.2450,-0.0000 -3.7556,-2.8744 -3.7556 -6.0845c 0.0000,-3.9235 1.8673,-6.2944 3.8396 -6.2944c 0.9022,-0.0000 1.8044,0.5665 2.4128 1.3848c 0.8812,1.1749 1.3428,2.7485 1.3428 4.7208c 0.0000,4.6578 -2.3079,6.2734 -3.8396 6.2734ZM 117.8932,219.2843 ZM 120.0753,217.2911 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 122.4881,219.2843 ZM 123.7050,209.9897 c 0.0000,-1.1959 1.1540,-2.8325 3.3570 -2.8325c 1.6156,-0.0000 3.5039,0.6085 3.5039 3.0213c 0.0000,1.5946 -0.8183,2.3919 -1.9512 3.4829l -1.9932,1.9303 c -0.1049,0.1049 -1.5106,1.4897 -1.5106 2.4758h 3.5668 c 0.7134,-0.0000 1.0910,-0.3567 1.3848 -1.5106l 0.5245,0.0839 l -0.4196,2.6436 h -6.4832 c 0.0000,-1.1749 0.1888,-2.0771 2.1401 -4.0703l 1.4687,-1.4477 c 1.1749,-1.1959 1.6575,-2.2240 1.6575 -3.5039c 0.0000,-1.9093 -1.3008,-2.4548 -2.0142 -2.4548c -1.4477,-0.0000 -1.8463,0.7553 -1.8463 1.2589c 0.0000,0.1678 0.0420,0.3357 0.0839 0.4826c 0.0420,0.1469 0.0839,0.2937 0.0839 0.4616c 0.0000,0.5455 -0.4196,0.7553 -0.7553 0.7553c -0.4616,-0.0000 -0.7973,-0.3567 -0.7973 -0.7763Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 122.2993,231.1020 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 108.7035,261.4565 ZM 113.2984,250.0637 c -0.9022,-0.0000 -2.2240,0.8812 -2.2240 5.7698c 0.0000,1.7205 0.3147,5.1824 2.1611 5.1824c 0.3567,-0.0000 1.3638,-0.2308 1.8044 -1.8673c 0.2728,-1.0071 0.4196,-2.2660 0.4196 -4.0913c 0.0000,-2.6646 -0.6714,-4.1543 -1.2799 -4.6788c -0.2308,-0.2098 -0.5455,-0.3147 -0.8812 -0.3147ZM 113.2984,250.0637 ZM 113.2144,261.7083 c -2.2450,-0.0000 -3.7556,-2.8744 -3.7556 -6.0845c 0.0000,-3.9235 1.8673,-6.2944 3.8396 -6.2944c 0.9022,-0.0000 1.8044,0.5665 2.4128 1.3848c 0.8812,1.1749 1.3428,2.7485 1.3428 4.7208c 0.0000,4.6578 -2.3079,6.2734 -3.8396 6.2734ZM 117.8932,261.4565 ZM 120.0753,259.4633 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 122.4881,261.4565 ZM 126.4326,251.4485 c -0.3986,-0.0000 -1.3218,0.3777 -1.7834 0.5875l -0.2518,-0.6504 c 1.8463,-0.8602 2.5597,-1.3008 3.6088 -2.0562h 0.3986 v 10.5535 c 0.0000,0.7553 0.1049,0.9651 0.7973 0.9651h 1.0910 c 0.0629,-0.0000 0.1678,0.0420 0.1678 0.1678v 0.4616 l -2.8744,-0.0420 l -2.9164,0.0420 v -0.4616 c 0.0210,-0.0629 0.0420,-0.1678 0.1678 -0.1678h 1.2589 c 0.7973,-0.0000 0.7973,-0.3567 0.7973 -0.9651v -7.2175 c 0.0000,-0.7134 0.0000,-1.2169 -0.4616 -1.2169Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 122.2993,273.2741 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 108.7035,303.6287 ZM 113.2984,292.2359 c -0.9022,-0.0000 -2.2240,0.8812 -2.2240 5.7698c 0.0000,1.7205 0.3147,5.1824 2.1611 5.1824c 0.3567,-0.0000 1.3638,-0.2308 1.8044 -1.8673c 0.2728,-1.0071 0.4196,-2.2660 0.4196 -4.0913c 0.0000,-2.6646 -0.6714,-4.1543 -1.2799 -4.6788c -0.2308,-0.2098 -0.5455,-0.3147 -0.8812 -0.3147ZM 113.2984,292.2359 ZM 113.2144,303.8804 c -2.2450,-0.0000 -3.7556,-2.8744 -3.7556 -6.0845c 0.0000,-3.9235 1.8673,-6.2944 3.8396 -6.2944c 0.9022,-0.0000 1.8044,0.5665 2.4128 1.3848c 0.8812,1.1749 1.3428,2.7485 1.3428 4.7208c 0.0000,4.6578 -2.3079,6.2734 -3.8396 6.2734ZM 117.8932,303.6287 ZM 120.0753,301.6355 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 122.4881,303.6287 ZM 127.0830,292.2359 c -0.9022,-0.0000 -2.2240,0.8812 -2.2240 5.7698c 0.0000,1.7205 0.3147,5.1824 2.1611 5.1824c 0.3567,-0.0000 1.3638,-0.2308 1.8044 -1.8673c 0.2728,-1.0071 0.4196,-2.2660 0.4196 -4.0913c 0.0000,-2.6646 -0.6714,-4.1543 -1.2799 -4.6788c -0.2308,-0.2098 -0.5455,-0.3147 -0.8812 -0.3147ZM 127.0830,292.2359 ZM 126.9991,303.8804 c -2.2450,-0.0000 -3.7556,-2.8744 -3.7556 -6.0845c 0.0000,-3.9235 1.8673,-6.2944 3.8396 -6.2944c 0.9022,-0.0000 1.8044,0.5665 2.4128 1.3848c 0.8812,1.1749 1.3428,2.7485 1.3428 4.7208c 0.0000,4.6578 -2.3079,6.2734 -3.8396 6.2734Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 122.2993,315.4463 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="1.9441401258783617" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 151.8198,146.7576 v 168.6887 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(44,160,44)" stroke-width="1.9441401258783617" fill="rgb(44,160,44)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 160.2542,315.4463 c 0.0000,-4.6582 -3.7762,-8.4344 -8.4344 -8.4344c -4.6582,-0.0000 -8.4344,3.7762 -8.4344 8.4344c -0.0000,4.6582 3.7762,8.4344 8.4344 8.4344c 4.6582,0.0000 8.4344,-3.7762 8.4344 -8.4344Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(44,160,44)" stroke-width="1.9441401258783617" fill="rgb(44,160,44)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 160.2542,146.7576 c 0.0000,-4.6582 -3.7762,-8.4344 -8.4344 -8.4344c -4.6582,-0.0000 -8.4344,3.7762 -8.4344 8.4344c -0.0000,4.6582 3.7762,8.4344 8.4344 8.4344c 4.6582,0.0000 8.4344,-3.7762 8.4344 -8.4344Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="7.776560503513447" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.1907,315.4463 l 189.7748,-126.5165 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(188,189,34)" stroke-width="1.9441401258783617" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.3999,197.3642 l -0.0000,-16.8689 h -16.8689 l -0.0000,16.8689 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(188,189,34)" stroke-width="1.9441401258783617" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 128.6251,323.8808 l -0.0000,-16.8689 h -16.8689 l -0.0000,16.8689 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="3.8882802517567234" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.1907,273.2741 h 63.2583 l 63.2583,-168.6887 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(227,119,194)" stroke-width="1.9441401258783617" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.1416,109.4551 l -8.4344,-14.6089 l -8.4344,14.6089 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(227,119,194)" stroke-width="1.9441401258783617" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 191.8834,278.1438 l -8.4344,-14.6089 l -8.4344,14.6089 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(227,119,194)" stroke-width="1.9441401258783617" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 128.6251,278.1438 l -8.4344,-14.6089 l -8.4344,14.6089 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(31,119,180)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 64.3807,315.4463 ZM 35.6190,299.0548 c 0.0000,-5.3327 1.9670,-6.9063 1.9670 -9.5290c 3.1472,-0.3060 4.8956,-0.5682 6.7315 -0.9616l 0.2623,1.3113 c -3.7591,1.1365 -7.3434,3.4532 -7.3434 9.7912c -0.0000,5.9010 5.2016,10.5780 12.8510 10.5780c 5.7698,0.0000 13.2444,-4.1962 13.2444 -11.9768c 0.0000,-2.3604 -0.7868,-4.9393 -2.1855 -6.4255l -6.6878,-0.0000 c -1.3550,-0.0000 -1.9233,0.6557 -1.9233 2.4041l -0.0000,1.1365 c -0.0000,0.1748 -0.1311,0.3497 -0.3497 0.3497l -1.1365,-0.0000 l -0.0874,-0.0874 c 0.0000,-0.0000 0.0874,-3.8028 0.0874 -5.5076c 0.0000,-1.5299 -0.0874,-4.0651 -0.0874 -4.0651l 0.0874,-0.0874 l 1.1365,0.0000 c 0.2186,0.0000 0.3497,0.1311 0.3497 0.3497l -0.0000,0.0437 c -0.0000,1.5299 0.6994,1.9233 1.9233 1.9233l 5.0705,0.0000 c 0.4808,0.0000 0.8305,-0.2186 1.2239 -0.6994c 2.5352,2.9723 4.1525,6.5129 4.1525 11.6708c -0.0000,8.7859 -6.3818,14.7742 -13.9437 14.7742c -9.6164,-0.0000 -15.3425,-7.4745 -15.3425 -14.9928ZM 64.3807,285.1547 ZM 61.2336,281.0022 l -21.8991,-0.0000 c -2.4915,-0.0000 -3.1909,0.4371 -3.1909 1.3113l 0.1748,1.3987 c -0.0000,0.1311 -0.0874,0.2623 -0.2186 0.2623l -1.0928,0.0874 c 0.0000,-0.6994 -0.2623,-2.3167 -0.3934 -3.0598c -0.1748,-0.7868 -0.3497,-1.3987 -0.7431 -2.2730l 0.0000,-0.9616 l 27.3630,0.0000 c 1.2676,0.0000 1.9233,-0.4808 1.9233 -1.8796l 0.0000,-1.0491 c 0.0000,-0.1748 0.1311,-0.3497 0.3497 -0.3497l 0.8305,0.0000 l 0.0874,0.0874 c 0.0000,-0.0000 -0.0874,3.1909 -0.0874 4.8956c -0.0000,1.5299 0.0874,4.7208 0.0874 4.7208l -0.0874,0.0437 l -0.8305,-0.0000 c -0.2186,-0.0000 -0.3497,-0.0874 -0.3497 -0.3060l 0.0000,-1.0491 c 0.0000,-1.4425 -0.6557,-1.8796 -1.9233 -1.8796ZM 64.3807,273.7899 ZM 39.4219,270.3805 c -1.1365,-0.0000 -2.0981,-0.9179 -2.0981 -2.0544c 0.0000,-1.1802 0.9616,-2.0981 2.0981 -2.0981c 1.1802,0.0000 2.0981,0.9179 2.0981 2.0981c -0.0000,1.1365 -0.9179,2.0544 -2.0981 2.0544ZM 39.4219,270.3805 ZM 61.2336,266.2280 c 1.2676,0.0000 1.9233,-0.4808 1.9233 -1.8796l 0.0000,-0.8305 c 0.0000,-0.2186 0.1311,-0.3934 0.3497 -0.3934l 0.8305,0.0000 l 0.0874,0.0874 c 0.0000,-0.0000 -0.0874,3.0160 -0.0874 4.7208c -0.0000,1.5299 0.0874,4.5022 0.0874 4.5022l -0.0874,0.0874 l -0.8305,-0.0000 c -0.2186,-0.0000 -0.3497,-0.1311 -0.3497 -0.3497l 0.0000,-0.8305 c 0.0000,-1.4425 -0.6557,-1.8796 -1.9233 -1.8796l -10.8840,-0.0000 c -2.3167,-0.0000 -2.6664,0.3934 -2.6664 1.0053c -0.0000,0.5682 0.0437,1.0928 0.2186 1.8359l -1.2239,0.2186 c -0.4808,-2.7975 -0.6557,-3.2783 -1.2676 -4.5459c -0.1748,-0.4808 -0.3497,-0.7868 -0.3497 -1.0928l 0.0000,-0.6557 l 16.1730,0.0000 ZM 64.3807,262.2503 ZM 61.2336,246.3396 l -9.5727,-0.0000 c -3.0598,-0.0000 -4.5022,0.5245 -4.5022 2.8412c -0.0000,1.9233 0.7431,3.5843 3.3657 5.8135l 10.7091,0.0000 c 1.2676,0.0000 1.9233,-0.4371 1.9233 -1.8796l 0.0000,-0.6120 c 0.0000,-0.2186 0.1311,-0.3497 0.3497 -0.3497l 0.8305,0.0000 l 0.0874,0.0874 c 0.0000,-0.0000 -0.0874,2.7538 -0.0874 4.4585c -0.0000,1.5736 0.0874,4.5459 0.0874 4.5459l -0.0874,0.0874 l -0.8305,-0.0000 c -0.2186,-0.0000 -0.3497,-0.1311 -0.3497 -0.3497l 0.0000,-0.8305 c 0.0000,-1.4862 -0.6557,-1.8796 -1.9233 -1.8796l -10.8840,-0.0000 c -2.3604,-0.0000 -2.6664,0.3497 -2.6664 0.9616c -0.0000,0.5682 0.0437,1.0928 0.2186 1.8359l -1.2239,0.2186 c -0.3060,-1.8359 -0.5245,-3.1472 -1.2676 -4.5022c -0.2186,-0.4808 -0.3497,-0.8305 -0.3497 -1.1365l 0.0000,-0.6557 l 3.8903,0.1311 l 0.0000,-0.1311 c -3.2783,-2.7975 -3.8903,-4.8956 -3.8903 -7.1249c 0.0000,-3.9340 3.0160,-4.7645 6.9063 -4.7645l 9.2667,0.0000 c 1.2676,0.0000 1.9233,-0.4808 1.9233 -1.8796l 0.0000,-0.8305 c 0.0000,-0.2186 0.1311,-0.3934 0.3497 -0.3934l 0.8305,0.0000 l 0.0874,0.0874 c 0.0000,-0.0000 -0.0874,3.0160 -0.0874 4.7208c -0.0000,1.5299 0.0874,4.2837 0.0874 4.2837l -0.0874,0.0874 l -0.8305,-0.0000 c -0.2186,-0.0000 -0.3497,-0.1311 -0.3497 -0.3497l 0.0000,-0.6120 c 0.0000,-1.4425 -0.6557,-1.8796 -1.9233 -1.8796ZM 64.3807,239.5207 ZM 52.2729,234.5376 l 0.0000,-8.0428 c 0.0000,-0.4371 -0.2186,-0.6120 -0.6120 -0.6120c -4.0651,-0.0000 -5.1142,2.0544 -5.1142 3.6280c -0.0000,1.0053 0.3934,4.2837 5.7261 5.0267ZM 52.2729,234.5376 ZM 60.3156,222.9980 l 0.6994,-0.8742 c 2.2730,1.6610 3.8903,4.2399 3.8903 7.3871c -0.0000,5.9884 -4.4585,8.5236 -9.2230 8.5236c -6.6440,-0.0000 -10.6217,-4.3711 -10.6217 -8.5236c 0.0000,-5.7698 4.5022,-7.1249 8.1739 -7.1249c 0.4808,0.0000 0.7431,0.3060 0.7431 0.7868l -0.0000,11.4959 c 0.2623,0.0437 0.5245,0.0437 0.8742 0.0437c 4.4585,0.0000 7.9117,-3.1035 7.9117 -6.2506c 0.0000,-2.4041 -0.7868,-3.9340 -2.4478 -5.4638ZM 64.3807,209.8848 ZM 64.9053,194.3674 c -0.0000,9.3978 -7.2560,13.9000 -14.2934 13.9000c -8.6110,-0.0000 -14.9928,-6.6878 -14.9928 -13.9437c 0.0000,-5.3764 1.8359,-7.0811 1.9670 -9.5727c 2.4041,-0.1311 4.5022,-0.5245 6.7752 -0.9616l 0.1748,1.3113 c -3.7591,1.1365 -7.2997,3.6717 -7.2997 9.7038c -0.0000,3.4532 3.6717,9.6601 12.5450 9.6601c 6.3818,0.0000 13.3318,-3.2783 13.3318 -10.0535c 0.0000,-4.0651 -1.4425,-7.0374 -4.8519 -10.1409l 0.6557,-1.0053 c 3.8903,2.9723 5.9884,6.8626 5.9884 11.1025ZM 64.3807,181.7350 ZM 33.8706,174.6102 l 14.8180,0.0000 c -2.9286,-2.9286 -3.6280,-5.5076 -3.6280 -7.2123c 0.0000,-3.1472 2.4041,-4.7208 6.9063 -4.7208l 9.2667,0.0000 c 1.2676,0.0000 1.9233,-0.4371 1.9233 -1.8796l 0.0000,-0.8305 c 0.0000,-0.1748 0.1311,-0.3497 0.3497 -0.3497l 0.8305,0.0000 l 0.0874,0.0874 c 0.0000,-0.0000 -0.0874,2.9723 -0.0874 4.7208c -0.0000,1.5299 0.0874,4.5022 0.0874 4.5022l -0.0874,0.0874 l -0.8305,-0.0000 c -0.2186,-0.0000 -0.3497,-0.1311 -0.3497 -0.3497l 0.0000,-0.8305 c 0.0000,-1.4862 -0.6557,-1.8796 -1.9233 -1.8796l -9.7475,-0.0000 c -3.5406,-0.0000 -4.3711,0.9616 -4.3711 3.4094c -0.0000,1.2676 1.1365,3.1472 3.1909 5.2453l 10.9277,0.0000 c 1.2676,0.0000 1.9233,-0.4371 1.9233 -1.8796l 0.0000,-0.8305 c 0.0000,-0.1748 0.1311,-0.3497 0.3497 -0.3497l 0.8305,0.0000 l 0.0874,0.0874 c 0.0000,-0.0000 -0.0874,2.9723 -0.0874 4.6771c -0.0000,1.5736 0.0874,4.5022 0.0874 4.5022l -0.0874,0.0874 l -0.8305,-0.0000 c -0.2186,-0.0000 -0.3497,-0.0874 -0.3497 -0.3060l 0.0000,-0.8305 c 0.0000,-1.4862 -0.6557,-1.8796 -1.9233 -1.8796l -21.8991,-0.0000 c -2.4915,-0.0000 -3.1909,0.3934 -3.1909 1.2676l 0.1748,1.4425 c -0.0000,0.1311 -0.0874,0.2186 -0.2186 0.2186l -1.0928,0.0874 c 0.0000,-0.6994 -0.2623,-2.2730 -0.3934 -3.0160c -0.1748,-0.7868 -0.3497,-1.4425 -0.7431 -2.3167l 0.0000,-0.9616 ZM 64.3807,159.0928 ZM 53.6716,146.3730 l 0.8742,3.4532 c 1.1802,3.8465 3.1909,4.4148 5.1579 4.4148c 1.3550,0.0000 3.4094,-0.6557 3.4094 -3.4094c 0.0000,-1.3113 -1.2676,-3.3220 -2.2293 -4.4585l -7.2123,-0.0000 ZM 53.6716,146.3730 ZM 64.9053,143.5755 c -0.0000,1.6610 -1.4862,2.5789 -2.5352 2.7538l 0.6994,1.0053 c 1.3987,2.0107 1.8359,2.7538 1.8359 4.7645c -0.0000,3.0598 -1.7484,5.2890 -5.0267 5.2890c -3.3220,-0.0000 -5.5950,-2.8412 -6.6440 -6.9937l -1.0053,-4.0214 c -4.9393,-0.0000 -5.8572,2.2730 -5.8572 3.7591c -0.0000,1.6610 0.7431,3.5843 2.0981 3.5843c 0.4808,0.0000 0.7431,-0.0874 0.8742 -0.1311c 0.1748,-0.0874 0.4808,-0.1311 0.7868 -0.1311c 0.5682,0.0000 1.4425,0.4371 1.4425 1.7047c -0.0000,1.0491 -0.6994,1.7484 -1.7484 1.7484c -2.5352,-0.0000 -4.7645,-4.1088 -4.7645 -6.9063c 0.0000,-3.1909 1.3113,-6.8626 7.5183 -6.8626l 6.4255,0.0000 c 2.6664,0.0000 3.8028,-0.0437 3.8028 -1.0491c 0.0000,-0.9616 -1.2239,-1.2239 -2.1855 -1.2676l 0.2186,-1.0928 c 3.1909,0.2623 4.0651,1.6173 4.0651 3.8465ZM 64.3807,139.3793 ZM 61.2336,135.4890 l -10.8840,-0.0000 c -2.1855,-0.0000 -2.6664,0.3060 -2.6664 0.9616c -0.0000,0.5682 0.0437,1.0928 0.2186 1.8359l -1.2239,0.2186 c -0.4808,-2.7538 -0.6120,-3.2346 -1.2676 -4.5459c -0.2186,-0.4371 -0.3497,-0.7868 -0.3497 -1.0928l 0.0000,-0.6557 l 3.9340,0.1311 l 0.0000,-0.1311 c -1.7047,-1.1365 -3.9340,-3.0598 -3.9340 -5.1142c 0.0000,-1.7921 0.8742,-2.4478 2.0107 -2.4478c 1.1365,0.0000 1.8359,0.7431 1.8359 1.8796c -0.0000,0.8742 -0.3497,1.3550 -0.7868 1.7921c -0.2623,0.2623 -0.3934,0.5682 -0.3934 0.8742c -0.0000,0.4808 0.7868,1.4425 2.2730 2.4915c 0.3934,0.3060 0.9616,0.5245 1.5299 0.5245l 9.7038,0.0000 c 1.2676,0.0000 1.9233,-0.4371 1.9233 -1.8796l 0.0000,-1.2676 c 0.0000,-0.2186 0.1311,-0.3934 0.3497 -0.3934l 0.8305,0.0000 l 0.0874,0.0874 c 0.0000,-0.0000 -0.0874,3.4532 -0.0874 5.1579c -0.0000,1.5736 0.0874,4.5459 0.0874 4.5459l -0.0874,0.0437 l -0.8305,-0.0000 c -0.2186,-0.0000 -0.3497,-0.0874 -0.3497 -0.3060l 0.0000,-0.8305 c 0.0000,-1.4862 -0.6557,-1.8796 -1.9233 -1.8796ZM 64.3807,124.2116 ZM 47.2898,117.0430 l 11.1900,0.0000 c 2.7101,0.0000 4.0214,-0.2623 4.0214 -1.4425c 0.0000,-1.1365 -0.3497,-2.0107 -1.2239 -3.1472l 0.7431,-0.7868 c 1.9233,1.7047 2.8849,3.4532 2.8849 5.4638c -0.0000,2.0107 -1.2239,3.1909 -4.3274 3.1909l -13.2881,-0.0000 l -0.0000,2.8412 c -0.0000,0.1311 -0.0437,0.1748 -0.1748 0.1748l -1.3550,-0.0000 c -0.1311,-0.0000 -0.1748,-0.0437 -0.1748 -0.1311c 0.0000,-2.9286 -1.7047,-3.6280 -5.0267 -3.6280l -0.8305,-0.0000 l -0.8742,-2.5352 l 6.7315,0.0000 l 0.0000,-4.8082 c 0.0000,-0.2186 0.0874,-0.3497 0.2623 -0.3497l 0.8742,0.0000 c 0.3934,0.0000 0.5682,0.6120 0.5682 1.0491l -0.0000,4.1088 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 529.2301,303.6511 ZM 533.9298,302.5374 c -0.5385,0.9302 -1.1260,1.2606 -1.8603 1.2606c -1.4687,-0.0000 -2.3866,-1.1138 -2.3866 -2.6926c 0.0000,-1.7379 1.0893,-2.8639 2.4111 -2.8639c 1.1749,-0.0000 1.7991,0.5997 1.7991 1.2484c 0.0000,0.3549 -0.2203,0.5385 -0.4773 0.5385c -0.2570,-0.0000 -0.5018,-0.1346 -0.5385 -0.4406c -0.0490,-0.4039 -0.1224,-0.9302 -0.8445 -0.9302c -0.8078,-0.0000 -1.4075,0.8567 -1.4075 2.1785c 0.0000,1.4320 0.7711,2.4233 1.7135 2.4233c 0.5263,-0.0000 0.9914,-0.3427 1.3708 -0.8934ZM 534.1624,303.6511 ZM 535.1170,296.6626 c 0.0000,-0.3182 0.2570,-0.5875 0.5752 -0.5875c 0.3305,-0.0000 0.5875,0.2693 0.5875 0.5875c 0.0000,0.3305 -0.2570,0.5875 -0.5875 0.5875c -0.3182,-0.0000 -0.5752,-0.2570 -0.5752 -0.5875ZM 535.1170,296.6626 ZM 536.2797,302.7699 c 0.0000,0.3549 0.1346,0.5385 0.5263 0.5385h 0.2325 c 0.0612,-0.0000 0.1102,0.0367 0.1102 0.0979v 0.2325 l -0.0245,0.0245 c 0.0000,-0.0000 -0.8445,-0.0245 -1.3218 -0.0245c -0.4284,-0.0000 -1.2606,0.0245 -1.2606 0.0245l -0.0245,-0.0245 v -0.2325 c 0.0000,-0.0612 0.0367,-0.0979 0.0979 -0.0979h 0.2325 c 0.4039,-0.0000 0.5263,-0.1836 0.5263 -0.5385v -3.0475 c 0.0000,-0.6487 -0.1102,-0.7466 -0.2815 -0.7466c -0.1591,-0.0000 -0.3060,0.0122 -0.5140 0.0612l -0.0612,-0.3427 c 0.7833,-0.1346 0.9179,-0.1836 1.2729 -0.3549c 0.1346,-0.0490 0.2203,-0.0979 0.3060 -0.0979h 0.1836 v 4.5284 ZM 537.3935,303.6511 ZM 538.4828,302.7699 v -3.0475 c 0.0000,-0.6120 -0.0857,-0.7466 -0.2693 -0.7466c -0.1591,-0.0000 -0.3060,0.0122 -0.5140 0.0612l -0.0612,-0.3427 c 0.7711,-0.1346 0.9057,-0.1713 1.2729 -0.3549c 0.1224,-0.0612 0.2203,-0.0979 0.3060 -0.0979h 0.1836 l -0.0367,1.1015 h 0.0367 c 0.3182,-0.4773 0.8567,-1.1015 1.4320 -1.1015c 0.5018,-0.0000 0.6854,0.2448 0.6854 0.5630c 0.0000,0.3182 -0.2081,0.5140 -0.5263 0.5140c -0.2448,-0.0000 -0.3794,-0.0979 -0.5018 -0.2203c -0.0734,-0.0734 -0.1591,-0.1102 -0.2448 -0.1102c -0.1346,-0.0000 -0.4039,0.2203 -0.6976 0.6364c -0.0857,0.1102 -0.1469,0.2693 -0.1469 0.4284v 2.7171 c 0.0000,0.3549 0.1224,0.5385 0.5263 0.5385h 0.3549 c 0.0612,-0.0000 0.1102,0.0367 0.1102 0.0979v 0.2325 l -0.0245,0.0245 c 0.0000,-0.0000 -0.9669,-0.0245 -1.4442 -0.0245c -0.4406,-0.0000 -1.2729,0.0245 -1.2729 0.0245l -0.0122,-0.0245 v -0.2325 c 0.0000,-0.0612 0.0245,-0.0979 0.0857 -0.0979h 0.2325 c 0.4161,-0.0000 0.5263,-0.1836 0.5263 -0.5385ZM 541.6404,303.6511 ZM 546.3402,302.5374 c -0.5385,0.9302 -1.1260,1.2606 -1.8603 1.2606c -1.4687,-0.0000 -2.3866,-1.1138 -2.3866 -2.6926c 0.0000,-1.7379 1.0893,-2.8639 2.4111 -2.8639c 1.1749,-0.0000 1.7991,0.5997 1.7991 1.2484c 0.0000,0.3549 -0.2203,0.5385 -0.4773 0.5385c -0.2570,-0.0000 -0.5018,-0.1346 -0.5385 -0.4406c -0.0490,-0.4039 -0.1224,-0.9302 -0.8445 -0.9302c -0.8078,-0.0000 -1.4075,0.8567 -1.4075 2.1785c 0.0000,1.4320 0.7711,2.4233 1.7135 2.4233c 0.5263,-0.0000 0.9914,-0.3427 1.3708 -0.8934ZM 546.5728,303.6511 ZM 547.7355,302.7699 v -6.1317 c 0.0000,-0.6976 -0.1224,-0.8934 -0.3672 -0.8934l -0.3916,0.0490 c -0.0367,-0.0000 -0.0734,-0.0245 -0.0734 -0.0612l -0.0245,-0.3060 c 0.1958,-0.0000 0.6487,-0.0734 0.8567 -0.1102c 0.2203,-0.0490 0.3916,-0.0979 0.6364 -0.2081h 0.2693 v 7.6616 c 0.0000,0.3549 0.1346,0.5385 0.5263 0.5385h 0.2937 c 0.0490,-0.0000 0.0979,0.0367 0.0979 0.0979v 0.2325 l -0.0245,0.0245 c 0.0000,-0.0000 -0.8934,-0.0245 -1.3708 -0.0245c -0.4284,-0.0000 -1.3218,0.0245 -1.3218 0.0245l -0.0122,-0.0245 v -0.2325 c 0.0000,-0.0612 0.0245,-0.0979 0.0857 -0.0979h 0.2937 c 0.4039,-0.0000 0.5263,-0.1836 0.5263 -0.5385ZM 549.7549,303.6511 ZM 551.1501,300.2609 h 2.2520 c 0.1224,-0.0000 0.1713,-0.0612 0.1713 -0.1713c 0.0000,-1.1382 -0.5752,-1.4320 -1.0158 -1.4320c -0.2815,-0.0000 -1.1994,0.1102 -1.4075 1.6033ZM 551.1501,300.2609 ZM 554.3813,302.5129 l 0.2448,0.1958 c -0.4651,0.6364 -1.1872,1.0893 -2.0684 1.0893c -1.6767,-0.0000 -2.3866,-1.2484 -2.3866 -2.5824c 0.0000,-1.8603 1.2239,-2.9741 2.3866 -2.9741c 1.6156,-0.0000 1.9950,1.2606 1.9950 2.2887c 0.0000,0.1346 -0.0857,0.2081 -0.2203 0.2081h -3.2189 c -0.0122,0.0734 -0.0122,0.1469 -0.0122 0.2448c 0.0000,1.2484 0.8690,2.2153 1.7502 2.2153c 0.6731,-0.0000 1.1015,-0.2203 1.5299 -0.6854Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="1.9441401258783617" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 482.8407,303.6511 h 42.1722 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(44,160,44)" stroke-width="1.9441401258783617" fill="rgb(44,160,44)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 512.3612,303.6511 c 0.0000,-4.6582 -3.7762,-8.4344 -8.4344 -8.4344c -4.6582,-0.0000 -8.4344,3.7762 -8.4344 8.4344c -0.0000,4.6582 3.7762,8.4344 8.4344 8.4344c 4.6582,0.0000 8.4344,-3.7762 8.4344 -8.4344Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 529.2301,277.9492 ZM 529.7563,276.2357 l 0.3305,-0.0122 c 0.0367,0.3060 0.1713,0.8934 0.4406 1.1749c 0.1224,0.1346 0.4528,0.3549 0.9057 0.3549c 0.4284,-0.0000 1.0648,-0.3427 1.0648 -0.9424c 0.0000,-0.5263 -0.2937,-0.8812 -1.2606 -1.2973c -0.8934,-0.3916 -1.3585,-0.6487 -1.3585 -1.5666c 0.0000,-0.8200 0.7221,-1.4075 1.6890 -1.4075c 0.6120,-0.0000 1.0648,0.1102 1.4442 0.3060c 0.0734,0.3916 0.1102,0.8078 0.1346 1.2484l -0.3305,0.0122 c -0.2570,-1.0036 -0.9914,-1.1994 -1.2484 -1.1994c -0.4651,-0.0000 -0.9424,0.1836 -0.9424 0.8567c 0.0000,0.4896 0.2325,0.7343 0.9057 0.9791c 0.9914,0.3672 1.7869,0.8078 1.7869 1.7869c 0.0000,1.2117 -1.2851,1.5666 -1.8603 1.5666c -0.4284,-0.0000 -0.7833,-0.0490 -1.1015 -0.1346c -0.0857,-0.0122 -0.1469,-0.0245 -0.2325 -0.0245c -0.0612,-0.0000 -0.1591,0.0122 -0.2815 0.0367c 0.0000,-0.5140 -0.0367,-1.1382 -0.0857 -1.7379ZM 533.7707,277.9492 ZM 537.9075,273.8369 c -0.3305,-0.5508 -0.7466,-0.8812 -1.2606 -0.8812c -0.9791,-0.0000 -1.5054,0.9424 -1.5054 2.2153c 0.0000,1.8481 1.0770,2.3866 1.7869 2.3866c 0.2325,-0.0000 0.6609,-0.0245 0.9791 -0.2693v -3.4514 ZM 537.9075,273.8369 ZM 537.9075,279.8829 v -2.1908 c -0.1836,0.1591 -0.5752,0.4039 -1.2729 0.4039c -1.7624,-0.0000 -2.4233,-1.5421 -2.4233 -2.6803c 0.0000,-1.6156 0.9914,-2.8762 2.4845 -2.8762c 0.5997,-0.0000 1.1260,0.1713 1.5299 0.5263l 0.1836,-0.2937 c 0.0857,-0.1469 0.1713,-0.2325 0.2570 -0.2325c 0.1346,-0.0000 0.1591,0.1346 0.1591 0.3060v 7.0374 c 0.0000,0.3549 0.1224,0.5385 0.5263 0.5385h 0.2325 c 0.0490,-0.0000 0.0979,0.0367 0.0979 0.0979v 0.2325 l -0.0245,0.0245 c 0.0000,-0.0000 -0.8323,-0.0245 -1.3096 -0.0245c -0.4406,-0.0000 -1.3952,0.0245 -1.3952 0.0245l -0.0245,-0.0245 v -0.2325 c 0.0000,-0.0612 0.0367,-0.0979 0.0979 -0.0979h 0.3549 c 0.4161,-0.0000 0.5263,-0.1836 0.5263 -0.5385ZM 539.8046,277.9492 ZM 545.0551,276.5295 c 0.0000,0.6120 0.0612,0.8078 0.3060 0.8078c 0.1469,-0.0000 0.4161,-0.0245 0.6242 -0.0612l 0.0490,0.3427 c -0.7466,0.1346 -1.3463,0.2570 -1.6278 0.4773h -0.2693 l 0.0367,-0.9057 h -0.0367 c -0.6731,0.7343 -1.2239,0.9057 -1.7257 0.9057c -1.2117,-0.0000 -1.5299,-0.8200 -1.5299 -1.6645v -2.7905 c 0.0000,-0.4039 -0.0857,-0.6120 -0.5385 -0.6120c -0.0490,-0.0000 -0.1346,0.0122 -0.2081 0.0122l -0.0367,-0.0122 v -0.3182 l 0.0367,-0.0367 c 0.0000,-0.0000 0.8323,0.0245 1.2239 0.0245c 0.1713,-0.0000 0.4528,-0.0245 0.4528 -0.0245l -0.0122,0.9791 v 2.6069 c 0.0000,1.0893 0.5630,1.2851 0.9302 1.2851c 0.2815,-0.0000 0.5385,-0.1102 0.7955 -0.2937c 0.2937,-0.2203 0.4896,-0.3916 0.6120 -0.5508v -3.0230 c 0.0000,-0.4406 -0.0612,-0.6487 -0.5140 -0.6487c -0.0734,-0.0000 -0.2081,0.0122 -0.2448 0.0122l -0.0245,-0.0245 v -0.3060 l 0.0245,-0.0367 c 0.0000,-0.0000 0.8690,0.0245 1.2117 0.0245c 0.2815,-0.0000 0.4773,-0.0245 0.4773 -0.0245l -0.0122,0.9669 v 2.8884 ZM 546.1322,277.9492 ZM 549.6937,274.9506 l -0.9669,0.2448 c -1.0770,0.3305 -1.2361,0.8934 -1.2361 1.4442c 0.0000,0.3794 0.1836,0.9546 0.9546 0.9546c 0.3672,-0.0000 0.9302,-0.3549 1.2484 -0.6242v -2.0194 ZM 549.6937,274.9506 ZM 550.4770,278.0960 c -0.4651,-0.0000 -0.7221,-0.4161 -0.7711 -0.7099l -0.2815,0.1958 c -0.5630,0.3916 -0.7711,0.5140 -1.3341 0.5140c -0.8567,-0.0000 -1.4809,-0.4896 -1.4809 -1.4075c 0.0000,-0.9302 0.7955,-1.5666 1.9582 -1.8603l 1.1260,-0.2815 c 0.0000,-1.3830 -0.6364,-1.6400 -1.0526 -1.6400c -0.4651,-0.0000 -1.0036,0.2081 -1.0036 0.5875c 0.0000,0.1346 0.0245,0.2081 0.0367 0.2448c 0.0245,0.0490 0.0367,0.1346 0.0367 0.2203c 0.0000,0.1591 -0.1224,0.4039 -0.4773 0.4039c -0.2937,-0.0000 -0.4896,-0.1958 -0.4896 -0.4896c 0.0000,-0.7099 1.1505,-1.3341 1.9338 -1.3341c 0.8934,-0.0000 1.9215,0.3672 1.9215 2.1051v 1.7991 c 0.0000,0.7466 0.0122,1.0648 0.2937 1.0648c 0.2693,-0.0000 0.3427,-0.3427 0.3549 -0.6120l 0.3060,0.0612 c -0.0734,0.8934 -0.4528,1.1382 -1.0770 1.1382ZM 551.6519,277.9492 ZM 552.7412,277.0680 v -3.0475 c 0.0000,-0.6120 -0.0857,-0.7466 -0.2693 -0.7466c -0.1591,-0.0000 -0.3060,0.0122 -0.5140 0.0612l -0.0612,-0.3427 c 0.7711,-0.1346 0.9057,-0.1713 1.2729 -0.3549c 0.1224,-0.0612 0.2203,-0.0979 0.3060 -0.0979h 0.1836 l -0.0367,1.1015 h 0.0367 c 0.3182,-0.4773 0.8567,-1.1015 1.4320 -1.1015c 0.5018,-0.0000 0.6854,0.2448 0.6854 0.5630c 0.0000,0.3182 -0.2081,0.5140 -0.5263 0.5140c -0.2448,-0.0000 -0.3794,-0.0979 -0.5018 -0.2203c -0.0734,-0.0734 -0.1591,-0.1102 -0.2448 -0.1102c -0.1346,-0.0000 -0.4039,0.2203 -0.6976 0.6364c -0.0857,0.1102 -0.1469,0.2693 -0.1469 0.4284v 2.7171 c 0.0000,0.3549 0.1224,0.5385 0.5263 0.5385h 0.3549 c 0.0612,-0.0000 0.1102,0.0367 0.1102 0.0979v 0.2325 l -0.0245,0.0245 c 0.0000,-0.0000 -0.9669,-0.0245 -1.4442 -0.0245c -0.4406,-0.0000 -1.2729,0.0245 -1.2729 0.0245l -0.0122,-0.0245 v -0.2325 c 0.0000,-0.0612 0.0245,-0.0979 0.0857 -0.0979h 0.2325 c 0.4161,-0.0000 0.5263,-0.1836 0.5263 -0.5385ZM 555.8989,277.9492 ZM 557.2941,274.5590 h 2.2520 c 0.1224,-0.0000 0.1713,-0.0612 0.1713 -0.1713c 0.0000,-1.1382 -0.5752,-1.4320 -1.0158 -1.4320c -0.2815,-0.0000 -1.1994,0.1102 -1.4075 1.6033ZM 557.2941,274.5590 ZM 560.5252,276.8110 l 0.2448,0.1958 c -0.4651,0.6364 -1.1872,1.0893 -2.0684 1.0893c -1.6767,-0.0000 -2.3866,-1.2484 -2.3866 -2.5824c 0.0000,-1.8603 1.2239,-2.9741 2.3866 -2.9741c 1.6156,-0.0000 1.9950,1.2606 1.9950 2.2887c 0.0000,0.1346 -0.0857,0.2081 -0.2203 0.2081h -3.2189 c -0.0122,0.0734 -0.0122,0.1469 -0.0122 0.2448c 0.0000,1.2484 0.8690,2.2153 1.7502 2.2153c 0.6731,-0.0000 1.1015,-0.2203 1.5299 -0.6854Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="7.776560503513447" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 482.8407,277.9492 h 42.1722 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(188,189,34)" stroke-width="1.9441401258783617" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 512.3612,286.3836 l -0.0000,-16.8689 h -16.8689 l -0.0000,16.8689 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 529.2301,255.8120 ZM 531.2373,251.0266 v 3.1332 c 0.0000,0.7588 0.0734,1.1260 0.4039 1.1260c 0.3182,-0.0000 0.5630,-0.0979 0.8812 -0.3427l 0.2203,0.2081 c -0.4773,0.5385 -0.9669,0.8078 -1.5299 0.8078c -0.5630,-0.0000 -0.8934,-0.3427 -0.8934 -1.2117v -3.7207 h -0.7955 c -0.0367,-0.0000 -0.0490,-0.0122 -0.0490 -0.0490v -0.3794 c 0.0000,-0.0367 0.0122,-0.0490 0.0367 -0.0490c 0.8200,-0.0000 1.0158,-0.4773 1.0158 -1.4075v -0.2325 l 0.7099,-0.2448 v 1.8848 h 1.3463 c 0.0612,-0.0000 0.0979,0.0245 0.0979 0.0734v 0.2448 c 0.0000,0.1102 -0.1713,0.1591 -0.2937 0.1591h -1.1505 ZM 532.9262,255.8120 ZM 534.0155,254.9308 v -3.0475 c 0.0000,-0.6120 -0.0857,-0.7466 -0.2693 -0.7466c -0.1591,-0.0000 -0.3060,0.0122 -0.5140 0.0612l -0.0612,-0.3427 c 0.7711,-0.1346 0.9057,-0.1713 1.2729 -0.3549c 0.1224,-0.0612 0.2203,-0.0979 0.3060 -0.0979h 0.1836 l -0.0367,1.1015 h 0.0367 c 0.3182,-0.4773 0.8567,-1.1015 1.4320 -1.1015c 0.5018,-0.0000 0.6854,0.2448 0.6854 0.5630c 0.0000,0.3182 -0.2081,0.5140 -0.5263 0.5140c -0.2448,-0.0000 -0.3794,-0.0979 -0.5018 -0.2203c -0.0734,-0.0734 -0.1591,-0.1102 -0.2448 -0.1102c -0.1346,-0.0000 -0.4039,0.2203 -0.6976 0.6364c -0.0857,0.1102 -0.1469,0.2693 -0.1469 0.4284v 2.7171 c 0.0000,0.3549 0.1224,0.5385 0.5263 0.5385h 0.3549 c 0.0612,-0.0000 0.1102,0.0367 0.1102 0.0979v 0.2325 l -0.0245,0.0245 c 0.0000,-0.0000 -0.9669,-0.0245 -1.4442 -0.0245c -0.4406,-0.0000 -1.2729,0.0245 -1.2729 0.0245l -0.0122,-0.0245 v -0.2325 c 0.0000,-0.0612 0.0245,-0.0979 0.0857 -0.0979h 0.2325 c 0.4161,-0.0000 0.5263,-0.1836 0.5263 -0.5385ZM 537.1732,255.8120 ZM 538.1278,248.8236 c 0.0000,-0.3182 0.2570,-0.5875 0.5752 -0.5875c 0.3305,-0.0000 0.5875,0.2693 0.5875 0.5875c 0.0000,0.3305 -0.2570,0.5875 -0.5875 0.5875c -0.3182,-0.0000 -0.5752,-0.2570 -0.5752 -0.5875ZM 538.1278,248.8236 ZM 539.2905,254.9308 c 0.0000,0.3549 0.1346,0.5385 0.5263 0.5385h 0.2325 c 0.0612,-0.0000 0.1102,0.0367 0.1102 0.0979v 0.2325 l -0.0245,0.0245 c 0.0000,-0.0000 -0.8445,-0.0245 -1.3218 -0.0245c -0.4284,-0.0000 -1.2606,0.0245 -1.2606 0.0245l -0.0245,-0.0245 v -0.2325 c 0.0000,-0.0612 0.0367,-0.0979 0.0979 -0.0979h 0.2325 c 0.4039,-0.0000 0.5263,-0.1836 0.5263 -0.5385v -3.0475 c 0.0000,-0.6487 -0.1102,-0.7466 -0.2815 -0.7466c -0.1591,-0.0000 -0.3060,0.0122 -0.5140 0.0612l -0.0612,-0.3427 c 0.7833,-0.1346 0.9179,-0.1836 1.2729 -0.3549c 0.1346,-0.0490 0.2203,-0.0979 0.3060 -0.0979h 0.1836 v 4.5284 ZM 540.4043,255.8120 ZM 543.9658,252.8135 l -0.9669,0.2448 c -1.0770,0.3305 -1.2361,0.8934 -1.2361 1.4442c 0.0000,0.3794 0.1836,0.9546 0.9546 0.9546c 0.3672,-0.0000 0.9302,-0.3549 1.2484 -0.6242v -2.0194 ZM 543.9658,252.8135 ZM 544.7491,255.9589 c -0.4651,-0.0000 -0.7221,-0.4161 -0.7711 -0.7099l -0.2815,0.1958 c -0.5630,0.3916 -0.7711,0.5140 -1.3341 0.5140c -0.8567,-0.0000 -1.4809,-0.4896 -1.4809 -1.4075c 0.0000,-0.9302 0.7955,-1.5666 1.9582 -1.8603l 1.1260,-0.2815 c 0.0000,-1.3830 -0.6364,-1.6400 -1.0526 -1.6400c -0.4651,-0.0000 -1.0036,0.2081 -1.0036 0.5875c 0.0000,0.1346 0.0245,0.2081 0.0367 0.2448c 0.0245,0.0490 0.0367,0.1346 0.0367 0.2203c 0.0000,0.1591 -0.1224,0.4039 -0.4773 0.4039c -0.2937,-0.0000 -0.4896,-0.1958 -0.4896 -0.4896c 0.0000,-0.7099 1.1505,-1.3341 1.9338 -1.3341c 0.8934,-0.0000 1.9215,0.3672 1.9215 2.1051v 1.7991 c 0.0000,0.7466 0.0122,1.0648 0.2937 1.0648c 0.2693,-0.0000 0.3427,-0.3427 0.3549 -0.6120l 0.3060,0.0612 c -0.0734,0.8934 -0.4528,1.1382 -1.0770 1.1382ZM 545.9241,255.8120 ZM 550.3791,254.9308 v -2.6803 c 0.0000,-0.8567 -0.1469,-1.2606 -0.7955 -1.2606c -0.5385,-0.0000 -1.0036,0.2081 -1.6278 0.9424v 2.9986 c 0.0000,0.3549 0.1224,0.5385 0.5263 0.5385h 0.1713 c 0.0612,-0.0000 0.0979,0.0367 0.0979 0.0979v 0.2325 l -0.0245,0.0245 c 0.0000,-0.0000 -0.7711,-0.0245 -1.2484 -0.0245c -0.4406,-0.0000 -1.2729,0.0245 -1.2729 0.0245l -0.0245,-0.0245 v -0.2325 c 0.0000,-0.0612 0.0367,-0.0979 0.0979 -0.0979h 0.2325 c 0.4161,-0.0000 0.5263,-0.1836 0.5263 -0.5385v -3.0475 c 0.0000,-0.6609 -0.0979,-0.7466 -0.2693 -0.7466c -0.1591,-0.0000 -0.3060,0.0122 -0.5140 0.0612l -0.0612,-0.3427 c 0.5140,-0.0857 0.8812,-0.1469 1.2606 -0.3549c 0.1346,-0.0612 0.2325,-0.0979 0.3182 -0.0979h 0.1836 l -0.0367,1.0893 h 0.0367 c 0.7833,-0.9179 1.3708,-1.0893 1.9950 -1.0893c 1.1015,-0.0000 1.3341,0.8445 1.3341 1.9338v 2.5947 c 0.0000,0.3549 0.1346,0.5385 0.5263 0.5385h 0.2325 c 0.0612,-0.0000 0.1102,0.0367 0.1102 0.0979v 0.2325 l -0.0245,0.0245 c 0.0000,-0.0000 -0.8445,-0.0245 -1.3218 -0.0245c -0.4284,-0.0000 -1.1994,0.0245 -1.1994 0.0245l -0.0245,-0.0245 v -0.2325 c 0.0000,-0.0612 0.0367,-0.0979 0.0979 -0.0979h 0.1713 c 0.4039,-0.0000 0.5263,-0.1836 0.5263 -0.5385ZM 552.2884,255.8120 ZM 556.1559,252.3484 c 0.0000,-1.0158 -0.4773,-1.6033 -1.2117 -1.6033c -0.6364,-0.0000 -1.0648,0.4406 -1.0648 1.3952c 0.0000,0.6364 0.2448,1.6400 1.2239 1.6400c 0.4284,-0.0000 1.0526,-0.2081 1.0526 -1.4320ZM 556.1559,252.3484 ZM 553.8672,255.8977 c -0.3794,0.3549 -0.4651,0.7343 -0.4651 1.1505c 0.0000,0.9179 1.1015,1.1872 1.5176 1.1872c 1.0526,-0.0000 2.3866,-0.3672 2.3866 -1.2484c 0.0000,-0.3182 -0.1713,-0.5263 -0.6487 -0.7588c -0.3427,-0.1713 -0.8445,-0.3060 -1.4320 -0.3060c -0.0979,-0.0000 -0.2325,0.0122 -0.4039 0.0245c -0.1713,0.0122 -0.3549,0.0122 -0.4896 0.0122c -0.1958,-0.0000 -0.2937,-0.0245 -0.4651 -0.0612ZM 553.8672,255.8977 ZM 557.5879,251.0633 c -0.1958,-0.0000 -0.3182,-0.1102 -0.3672 -0.2081c -0.0734,-0.1102 -0.1224,-0.1469 -0.2081 -0.1469c -0.1469,-0.0000 -0.3794,0.1713 -0.4651 0.2937c 0.3427,0.3672 0.5018,0.7221 0.5018 1.2973c 0.0000,1.1994 -0.9791,1.8481 -2.0072 1.8481c -0.4528,-0.0000 -0.8200,-0.0857 -1.1015 -0.2570c -0.1346,0.2081 -0.2081,0.4651 -0.2081 0.7099c 0.0000,0.5263 0.4039,0.6609 0.7466 0.6609c 0.0612,-0.0000 0.2081,-0.0122 0.3794 -0.0245c 0.2815,-0.0367 0.5875,-0.0612 0.7955 -0.0612c 0.4284,-0.0000 1.2361,0.0857 1.7257 0.5018c 0.3305,0.3060 0.5140,0.5997 0.5140 0.9914c 0.0000,1.3218 -1.7379,2.0194 -3.3168 2.0194c -0.8934,-0.0000 -1.8848,-0.3305 -1.8848 -1.3952c 0.0000,-0.5263 0.3305,-1.0893 0.9546 -1.4809c -0.3060,-0.1591 -0.5263,-0.4651 -0.5263 -0.9057c 0.0000,-0.4161 0.1836,-0.9424 0.5140 -1.2361c -0.3305,-0.3305 -0.6120,-0.7466 -0.6120 -1.4197c 0.0000,-1.1260 0.9914,-1.8481 2.0317 -1.8481c 0.6854,-0.0000 1.1138,0.2815 1.2484 0.3794c 0.3060,-0.4161 0.8567,-0.6242 1.1627 -0.6242c 0.3182,-0.0000 0.5385,0.2081 0.5385 0.4651c 0.0000,0.2693 -0.1713,0.4406 -0.4161 0.4406ZM 558.1509,255.8120 ZM 559.3136,254.9308 v -6.1317 c 0.0000,-0.6976 -0.1224,-0.8934 -0.3672 -0.8934l -0.3916,0.0490 c -0.0367,-0.0000 -0.0734,-0.0245 -0.0734 -0.0612l -0.0245,-0.3060 c 0.1958,-0.0000 0.6487,-0.0734 0.8567 -0.1102c 0.2203,-0.0490 0.3916,-0.0979 0.6364 -0.2081h 0.2693 v 7.6616 c 0.0000,0.3549 0.1346,0.5385 0.5263 0.5385h 0.2937 c 0.0490,-0.0000 0.0979,0.0367 0.0979 0.0979v 0.2325 l -0.0245,0.0245 c 0.0000,-0.0000 -0.8934,-0.0245 -1.3708 -0.0245c -0.4284,-0.0000 -1.3218,0.0245 -1.3218 0.0245l -0.0122,-0.0245 v -0.2325 c 0.0000,-0.0612 0.0245,-0.0979 0.0857 -0.0979h 0.2937 c 0.4039,-0.0000 0.5263,-0.1836 0.5263 -0.5385ZM 561.3330,255.8120 ZM 562.7283,252.4218 h 2.2520 c 0.1224,-0.0000 0.1713,-0.0612 0.1713 -0.1713c 0.0000,-1.1382 -0.5752,-1.4320 -1.0158 -1.4320c -0.2815,-0.0000 -1.1994,0.1102 -1.4075 1.6033ZM 562.7283,252.4218 ZM 565.9594,254.6738 l 0.2448,0.1958 c -0.4651,0.6364 -1.1872,1.0893 -2.0684 1.0893c -1.6767,-0.0000 -2.3866,-1.2484 -2.3866 -2.5824c 0.0000,-1.8603 1.2239,-2.9741 2.3866 -2.9741c 1.6156,-0.0000 1.9950,1.2606 1.9950 2.2887c 0.0000,0.1346 -0.0857,0.2081 -0.2203 0.2081h -3.2189 c -0.0122,0.0734 -0.0122,0.1469 -0.0122 0.2448c 0.0000,1.2484 0.8690,2.2153 1.7502 2.2153c 0.6731,-0.0000 1.1015,-0.2203 1.5299 -0.6854Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="3.8882802517567234" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 482.8407,255.8120 h 42.1722 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(227,119,194)" stroke-width="1.9441401258783617" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 512.3612,260.6817 l -8.4344,-14.6089 l -8.4344,14.6089 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.2" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.7776560503513447" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 570.7578,315.4463 l -0.0000,-73.9367 h -92.1037 l -0.0000,73.9367 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 436.4820,315.4463 l -0.0000,-210.8609 h -316.2913 l -0.0000,210.8609 Z"/></g></svg>
+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="400.0000" stroke-opacity="1" viewBox="0 0 600 400" font-size="1" width="600.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 424.9948,92.7678 ZM 431.4780,89.2220 c 0.0000,-2.1611 -1.1749,-3.2311 -2.4758 -3.2311c -0.9651,-0.0000 -1.6995,0.1469 -2.5177 0.4826l 0.6714,-5.7279 c 0.6924,0.0629 1.4057,0.0839 2.1401 0.0839c 1.0491,-0.0000 2.1401,-0.0629 3.2731 -0.1888l 0.1259,0.0629 l -0.3147,1.3638 c -0.8183,0.0839 -1.4897,0.1049 -2.0771 0.1049c -0.9442,-0.0000 -1.6575,-0.0839 -2.3919 -0.1678l -0.3986,3.3150 c 0.4406,-0.1678 1.1959,-0.3147 2.0142 -0.3147c 2.2240,-0.0000 3.4619,1.9303 3.4619 3.8605c 0.0000,2.3499 -1.6365,4.1543 -4.0074 4.1543c -1.1959,-0.0000 -2.9374,-0.6714 -2.9374 -1.4897c 0.0000,-0.3986 0.3357,-0.6714 0.7134 -0.6714c 0.4196,-0.0000 0.6924,0.3147 0.9442 0.6504c 0.3147,0.3777 0.6504,0.7973 1.3218 0.7973c 1.3428,-0.0000 2.4548,-1.2589 2.4548 -3.0842ZM 434.1845,92.7678 ZM 436.3666,90.7746 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 438.7794,92.7678 ZM 445.2626,89.2220 c 0.0000,-2.1611 -1.1749,-3.2311 -2.4758 -3.2311c -0.9651,-0.0000 -1.6995,0.1469 -2.5177 0.4826l 0.6714,-5.7279 c 0.6924,0.0629 1.4057,0.0839 2.1401 0.0839c 1.0491,-0.0000 2.1401,-0.0629 3.2731 -0.1888l 0.1259,0.0629 l -0.3147,1.3638 c -0.8183,0.0839 -1.4897,0.1049 -2.0771 0.1049c -0.9442,-0.0000 -1.6575,-0.0839 -2.3919 -0.1678l -0.3986,3.3150 c 0.4406,-0.1678 1.1959,-0.3147 2.0142 -0.3147c 2.2240,-0.0000 3.4619,1.9303 3.4619 3.8605c 0.0000,2.3499 -1.6365,4.1543 -4.0074 4.1543c -1.1959,-0.0000 -2.9374,-0.6714 -2.9374 -1.4897c 0.0000,-0.3986 0.3357,-0.6714 0.7134 -0.6714c 0.4196,-0.0000 0.6924,0.3147 0.9442 0.6504c 0.3147,0.3777 0.6504,0.7973 1.3218 0.7973c 1.3428,-0.0000 2.4548,-1.2589 2.4548 -3.0842Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 438.5906,104.5855 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 424.9948,134.9400 ZM 431.4780,131.3942 c 0.0000,-2.1611 -1.1749,-3.2311 -2.4758 -3.2311c -0.9651,-0.0000 -1.6995,0.1469 -2.5177 0.4826l 0.6714,-5.7279 c 0.6924,0.0629 1.4057,0.0839 2.1401 0.0839c 1.0491,-0.0000 2.1401,-0.0629 3.2731 -0.1888l 0.1259,0.0629 l -0.3147,1.3638 c -0.8183,0.0839 -1.4897,0.1049 -2.0771 0.1049c -0.9442,-0.0000 -1.6575,-0.0839 -2.3919 -0.1678l -0.3986,3.3150 c 0.4406,-0.1678 1.1959,-0.3147 2.0142 -0.3147c 2.2240,-0.0000 3.4619,1.9303 3.4619 3.8605c 0.0000,2.3499 -1.6365,4.1543 -4.0074 4.1543c -1.1959,-0.0000 -2.9374,-0.6714 -2.9374 -1.4897c 0.0000,-0.3986 0.3357,-0.6714 0.7134 -0.6714c 0.4196,-0.0000 0.6924,0.3147 0.9442 0.6504c 0.3147,0.3777 0.6504,0.7973 1.3218 0.7973c 1.3428,-0.0000 2.4548,-1.2589 2.4548 -3.0842ZM 434.1845,134.9400 ZM 436.3666,132.9468 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 438.7794,134.9400 ZM 444.1926,127.4917 c 0.0000,-0.1469 0.0210,-0.3147 0.2098 -0.4196c 0.2308,-0.1678 0.6085,-0.3567 0.9232 -0.3567c 0.2728,-0.0000 0.2937,0.2308 0.2937 0.6504v 3.3780 h 1.6995 l -0.1259,0.9861 h -1.5736 v 1.7414 c 0.0000,0.5875 0.0839,0.8812 0.6924 0.8812h 0.5665 c 0.1259,-0.0000 0.1469,0.1049 0.1469 0.1469v 0.4616 c 0.0000,-0.0000 -1.3428,-0.0420 -2.2240 -0.0420c -0.7973,-0.0000 -2.0352,0.0420 -2.0352 0.0420v -0.4616 c 0.0000,-0.0420 0.0210,-0.1469 0.1469 -0.1469h 0.5665 c 0.6504,-0.0000 0.7134,-0.2728 0.7134 -0.8812v -1.7414 h -4.1123 c -0.0839,-0.0000 -0.1259,-0.0420 -0.1888 -0.1259l -0.1678,-0.2308 l -0.2518,-0.4406 c -0.0210,-0.0000 -0.0210,-0.0210 -0.0210 -0.0420c 0.0000,-0.0210 0.0210,-0.0420 0.0420 -0.0629c 1.3638,-1.5106 3.7766,-6.1894 4.5319 -7.9099c 0.0210,-0.0839 0.0629,-0.1049 0.1469 -0.1049c 0.0210,-0.0000 0.4826,0.1888 0.7343 0.2308c -0.9442,2.5387 -2.4968,5.2663 -4.0284 7.7001h 3.3150 v -3.2521 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 438.5906,146.7576 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 424.9948,177.1122 ZM 431.4780,173.5663 c 0.0000,-2.1611 -1.1749,-3.2311 -2.4758 -3.2311c -0.9651,-0.0000 -1.6995,0.1469 -2.5177 0.4826l 0.6714,-5.7279 c 0.6924,0.0629 1.4057,0.0839 2.1401 0.0839c 1.0491,-0.0000 2.1401,-0.0629 3.2731 -0.1888l 0.1259,0.0629 l -0.3147,1.3638 c -0.8183,0.0839 -1.4897,0.1049 -2.0771 0.1049c -0.9442,-0.0000 -1.6575,-0.0839 -2.3919 -0.1678l -0.3986,3.3150 c 0.4406,-0.1678 1.1959,-0.3147 2.0142 -0.3147c 2.2240,-0.0000 3.4619,1.9303 3.4619 3.8605c 0.0000,2.3499 -1.6365,4.1543 -4.0074 4.1543c -1.1959,-0.0000 -2.9374,-0.6714 -2.9374 -1.4897c 0.0000,-0.3986 0.3357,-0.6714 0.7134 -0.6714c 0.4196,-0.0000 0.6924,0.3147 0.9442 0.6504c 0.3147,0.3777 0.6504,0.7973 1.3218 0.7973c 1.3428,-0.0000 2.4548,-1.2589 2.4548 -3.0842ZM 434.1845,177.1122 ZM 436.3666,175.1189 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 438.7794,177.1122 ZM 443.3113,165.6355 c -0.5245,-0.0000 -2.0562,0.2937 -2.0562 1.5736c 0.0000,0.3777 -0.1469,1.0281 -0.7134 1.0281c -0.5455,-0.0000 -0.5875,-0.6085 -0.5875 -0.6714c 0.0000,-0.6504 0.8602,-2.5807 3.7766 -2.5807c 2.0352,-0.0000 2.6436,1.2799 2.6436 2.1191c 0.0000,0.5245 -0.1678,1.5736 -2.0562 2.7695c 1.1749,0.1888 2.7276,1.0491 2.7276 3.2311c 0.0000,2.7695 -2.0981,4.2592 -4.4690 4.2592c -1.1959,-0.0000 -2.8744,-0.5245 -2.8744 -1.3218c 0.0000,-0.3147 0.3147,-0.6714 0.7343 -0.6714c 0.3986,-0.0000 0.5875,0.2098 0.7763 0.4826c 0.2308,0.3567 0.6085,0.8602 1.6156 0.8602c 0.6924,-0.0000 2.6646,-0.6924 2.6646 -3.3360c 0.0000,-2.2450 -1.5736,-2.6017 -2.7066 -2.6017c -0.1888,-0.0000 -0.4196,0.0420 -0.6504 0.0839l -0.0839,-0.6294 c 1.6156,-0.2728 2.9583,-1.8463 2.9583 -2.8115c 0.0000,-1.1959 -0.8392,-1.7834 -1.6995 -1.7834Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 438.5906,188.9298 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 424.9948,219.2843 ZM 431.4780,215.7385 c 0.0000,-2.1611 -1.1749,-3.2311 -2.4758 -3.2311c -0.9651,-0.0000 -1.6995,0.1469 -2.5177 0.4826l 0.6714,-5.7279 c 0.6924,0.0629 1.4057,0.0839 2.1401 0.0839c 1.0491,-0.0000 2.1401,-0.0629 3.2731 -0.1888l 0.1259,0.0629 l -0.3147,1.3638 c -0.8183,0.0839 -1.4897,0.1049 -2.0771 0.1049c -0.9442,-0.0000 -1.6575,-0.0839 -2.3919 -0.1678l -0.3986,3.3150 c 0.4406,-0.1678 1.1959,-0.3147 2.0142 -0.3147c 2.2240,-0.0000 3.4619,1.9303 3.4619 3.8605c 0.0000,2.3499 -1.6365,4.1543 -4.0074 4.1543c -1.1959,-0.0000 -2.9374,-0.6714 -2.9374 -1.4897c 0.0000,-0.3986 0.3357,-0.6714 0.7134 -0.6714c 0.4196,-0.0000 0.6924,0.3147 0.9442 0.6504c 0.3147,0.3777 0.6504,0.7973 1.3218 0.7973c 1.3428,-0.0000 2.4548,-1.2589 2.4548 -3.0842ZM 434.1845,219.2843 ZM 436.3666,217.2911 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 438.7794,219.2843 ZM 439.9963,209.9897 c 0.0000,-1.1959 1.1540,-2.8325 3.3570 -2.8325c 1.6156,-0.0000 3.5039,0.6085 3.5039 3.0213c 0.0000,1.5946 -0.8183,2.3919 -1.9512 3.4829l -1.9932,1.9303 c -0.1049,0.1049 -1.5106,1.4897 -1.5106 2.4758h 3.5668 c 0.7134,-0.0000 1.0910,-0.3567 1.3848 -1.5106l 0.5245,0.0839 l -0.4196,2.6436 h -6.4832 c 0.0000,-1.1749 0.1888,-2.0771 2.1401 -4.0703l 1.4687,-1.4477 c 1.1749,-1.1959 1.6575,-2.2240 1.6575 -3.5039c 0.0000,-1.9093 -1.3008,-2.4548 -2.0142 -2.4548c -1.4477,-0.0000 -1.8463,0.7553 -1.8463 1.2589c 0.0000,0.1678 0.0420,0.3357 0.0839 0.4826c 0.0420,0.1469 0.0839,0.2937 0.0839 0.4616c 0.0000,0.5455 -0.4196,0.7553 -0.7553 0.7553c -0.4616,-0.0000 -0.7973,-0.3567 -0.7973 -0.7763Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 438.5906,231.1020 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 424.9948,261.4565 ZM 431.4780,257.9107 c 0.0000,-2.1611 -1.1749,-3.2311 -2.4758 -3.2311c -0.9651,-0.0000 -1.6995,0.1469 -2.5177 0.4826l 0.6714,-5.7279 c 0.6924,0.0629 1.4057,0.0839 2.1401 0.0839c 1.0491,-0.0000 2.1401,-0.0629 3.2731 -0.1888l 0.1259,0.0629 l -0.3147,1.3638 c -0.8183,0.0839 -1.4897,0.1049 -2.0771 0.1049c -0.9442,-0.0000 -1.6575,-0.0839 -2.3919 -0.1678l -0.3986,3.3150 c 0.4406,-0.1678 1.1959,-0.3147 2.0142 -0.3147c 2.2240,-0.0000 3.4619,1.9303 3.4619 3.8605c 0.0000,2.3499 -1.6365,4.1543 -4.0074 4.1543c -1.1959,-0.0000 -2.9374,-0.6714 -2.9374 -1.4897c 0.0000,-0.3986 0.3357,-0.6714 0.7134 -0.6714c 0.4196,-0.0000 0.6924,0.3147 0.9442 0.6504c 0.3147,0.3777 0.6504,0.7973 1.3218 0.7973c 1.3428,-0.0000 2.4548,-1.2589 2.4548 -3.0842ZM 434.1845,261.4565 ZM 436.3666,259.4633 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 438.7794,261.4565 ZM 442.7239,251.4485 c -0.3986,-0.0000 -1.3218,0.3777 -1.7834 0.5875l -0.2518,-0.6504 c 1.8463,-0.8602 2.5597,-1.3008 3.6088 -2.0562h 0.3986 v 10.5535 c 0.0000,0.7553 0.1049,0.9651 0.7973 0.9651h 1.0910 c 0.0629,-0.0000 0.1678,0.0420 0.1678 0.1678v 0.4616 l -2.8744,-0.0420 l -2.9164,0.0420 v -0.4616 c 0.0210,-0.0629 0.0420,-0.1678 0.1678 -0.1678h 1.2589 c 0.7973,-0.0000 0.7973,-0.3567 0.7973 -0.9651v -7.2175 c 0.0000,-0.7134 0.0000,-1.2169 -0.4616 -1.2169Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 438.5906,273.2741 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 424.9948,303.6287 ZM 431.4780,300.0828 c 0.0000,-2.1611 -1.1749,-3.2311 -2.4758 -3.2311c -0.9651,-0.0000 -1.6995,0.1469 -2.5177 0.4826l 0.6714,-5.7279 c 0.6924,0.0629 1.4057,0.0839 2.1401 0.0839c 1.0491,-0.0000 2.1401,-0.0629 3.2731 -0.1888l 0.1259,0.0629 l -0.3147,1.3638 c -0.8183,0.0839 -1.4897,0.1049 -2.0771 0.1049c -0.9442,-0.0000 -1.6575,-0.0839 -2.3919 -0.1678l -0.3986,3.3150 c 0.4406,-0.1678 1.1959,-0.3147 2.0142 -0.3147c 2.2240,-0.0000 3.4619,1.9303 3.4619 3.8605c 0.0000,2.3499 -1.6365,4.1543 -4.0074 4.1543c -1.1959,-0.0000 -2.9374,-0.6714 -2.9374 -1.4897c 0.0000,-0.3986 0.3357,-0.6714 0.7134 -0.6714c 0.4196,-0.0000 0.6924,0.3147 0.9442 0.6504c 0.3147,0.3777 0.6504,0.7973 1.3218 0.7973c 1.3428,-0.0000 2.4548,-1.2589 2.4548 -3.0842ZM 434.1845,303.6287 ZM 436.3666,301.6355 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 438.7794,303.6287 ZM 443.3743,292.2359 c -0.9022,-0.0000 -2.2240,0.8812 -2.2240 5.7698c 0.0000,1.7205 0.3147,5.1824 2.1611 5.1824c 0.3567,-0.0000 1.3638,-0.2308 1.8044 -1.8673c 0.2728,-1.0071 0.4196,-2.2660 0.4196 -4.0913c 0.0000,-2.6646 -0.6714,-4.1543 -1.2799 -4.6788c -0.2308,-0.2098 -0.5455,-0.3147 -0.8812 -0.3147ZM 443.3743,292.2359 ZM 443.2904,303.8804 c -2.2450,-0.0000 -3.7556,-2.8744 -3.7556 -6.0845c 0.0000,-3.9235 1.8673,-6.2944 3.8396 -6.2944c 0.9022,-0.0000 1.8044,0.5665 2.4128 1.3848c 0.8812,1.1749 1.3428,2.7485 1.3428 4.7208c 0.0000,4.6578 -2.3079,6.2734 -3.8396 6.2734Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 438.5906,315.4463 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.7365,92.7678 ZM 367.1497,85.3195 c 0.0000,-0.1469 0.0210,-0.3147 0.2098 -0.4196c 0.2308,-0.1678 0.6085,-0.3567 0.9232 -0.3567c 0.2728,-0.0000 0.2937,0.2308 0.2937 0.6504v 3.3780 h 1.6995 l -0.1259,0.9861 h -1.5736 v 1.7414 c 0.0000,0.5875 0.0839,0.8812 0.6924 0.8812h 0.5665 c 0.1259,-0.0000 0.1469,0.1049 0.1469 0.1469v 0.4616 c 0.0000,-0.0000 -1.3428,-0.0420 -2.2240 -0.0420c -0.7973,-0.0000 -2.0352,0.0420 -2.0352 0.0420v -0.4616 c 0.0000,-0.0420 0.0210,-0.1469 0.1469 -0.1469h 0.5665 c 0.6504,-0.0000 0.7134,-0.2728 0.7134 -0.8812v -1.7414 h -4.1123 c -0.0839,-0.0000 -0.1259,-0.0420 -0.1888 -0.1259l -0.1678,-0.2308 l -0.2518,-0.4406 c -0.0210,-0.0000 -0.0210,-0.0210 -0.0210 -0.0420c 0.0000,-0.0210 0.0210,-0.0420 0.0420 -0.0629c 1.3638,-1.5106 3.7766,-6.1894 4.5319 -7.9099c 0.0210,-0.0839 0.0629,-0.1049 0.1469 -0.1049c 0.0210,-0.0000 0.4826,0.1888 0.7343 0.2308c -0.9442,2.5387 -2.4968,5.2663 -4.0284 7.7001h 3.3150 v -3.2521 ZM 370.9263,92.7678 ZM 373.1083,90.7746 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 375.5212,92.7678 ZM 382.0043,89.2220 c 0.0000,-2.1611 -1.1749,-3.2311 -2.4758 -3.2311c -0.9651,-0.0000 -1.6995,0.1469 -2.5177 0.4826l 0.6714,-5.7279 c 0.6924,0.0629 1.4057,0.0839 2.1401 0.0839c 1.0491,-0.0000 2.1401,-0.0629 3.2731 -0.1888l 0.1259,0.0629 l -0.3147,1.3638 c -0.8183,0.0839 -1.4897,0.1049 -2.0771 0.1049c -0.9442,-0.0000 -1.6575,-0.0839 -2.3919 -0.1678l -0.3986,3.3150 c 0.4406,-0.1678 1.1959,-0.3147 2.0142 -0.3147c 2.2240,-0.0000 3.4619,1.9303 3.4619 3.8605c 0.0000,2.3499 -1.6365,4.1543 -4.0074 4.1543c -1.1959,-0.0000 -2.9374,-0.6714 -2.9374 -1.4897c 0.0000,-0.3986 0.3357,-0.6714 0.7134 -0.6714c 0.4196,-0.0000 0.6924,0.3147 0.9442 0.6504c 0.3147,0.3777 0.6504,0.7973 1.3218 0.7973c 1.3428,-0.0000 2.4548,-1.2589 2.4548 -3.0842Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.3323,104.5855 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.7365,134.9400 ZM 367.1497,127.4917 c 0.0000,-0.1469 0.0210,-0.3147 0.2098 -0.4196c 0.2308,-0.1678 0.6085,-0.3567 0.9232 -0.3567c 0.2728,-0.0000 0.2937,0.2308 0.2937 0.6504v 3.3780 h 1.6995 l -0.1259,0.9861 h -1.5736 v 1.7414 c 0.0000,0.5875 0.0839,0.8812 0.6924 0.8812h 0.5665 c 0.1259,-0.0000 0.1469,0.1049 0.1469 0.1469v 0.4616 c 0.0000,-0.0000 -1.3428,-0.0420 -2.2240 -0.0420c -0.7973,-0.0000 -2.0352,0.0420 -2.0352 0.0420v -0.4616 c 0.0000,-0.0420 0.0210,-0.1469 0.1469 -0.1469h 0.5665 c 0.6504,-0.0000 0.7134,-0.2728 0.7134 -0.8812v -1.7414 h -4.1123 c -0.0839,-0.0000 -0.1259,-0.0420 -0.1888 -0.1259l -0.1678,-0.2308 l -0.2518,-0.4406 c -0.0210,-0.0000 -0.0210,-0.0210 -0.0210 -0.0420c 0.0000,-0.0210 0.0210,-0.0420 0.0420 -0.0629c 1.3638,-1.5106 3.7766,-6.1894 4.5319 -7.9099c 0.0210,-0.0839 0.0629,-0.1049 0.1469 -0.1049c 0.0210,-0.0000 0.4826,0.1888 0.7343 0.2308c -0.9442,2.5387 -2.4968,5.2663 -4.0284 7.7001h 3.3150 v -3.2521 ZM 370.9263,134.9400 ZM 373.1083,132.9468 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 375.5212,134.9400 ZM 380.9343,127.4917 c 0.0000,-0.1469 0.0210,-0.3147 0.2098 -0.4196c 0.2308,-0.1678 0.6085,-0.3567 0.9232 -0.3567c 0.2728,-0.0000 0.2937,0.2308 0.2937 0.6504v 3.3780 h 1.6995 l -0.1259,0.9861 h -1.5736 v 1.7414 c 0.0000,0.5875 0.0839,0.8812 0.6924 0.8812h 0.5665 c 0.1259,-0.0000 0.1469,0.1049 0.1469 0.1469v 0.4616 c 0.0000,-0.0000 -1.3428,-0.0420 -2.2240 -0.0420c -0.7973,-0.0000 -2.0352,0.0420 -2.0352 0.0420v -0.4616 c 0.0000,-0.0420 0.0210,-0.1469 0.1469 -0.1469h 0.5665 c 0.6504,-0.0000 0.7134,-0.2728 0.7134 -0.8812v -1.7414 h -4.1123 c -0.0839,-0.0000 -0.1259,-0.0420 -0.1888 -0.1259l -0.1678,-0.2308 l -0.2518,-0.4406 c -0.0210,-0.0000 -0.0210,-0.0210 -0.0210 -0.0420c 0.0000,-0.0210 0.0210,-0.0420 0.0420 -0.0629c 1.3638,-1.5106 3.7766,-6.1894 4.5319 -7.9099c 0.0210,-0.0839 0.0629,-0.1049 0.1469 -0.1049c 0.0210,-0.0000 0.4826,0.1888 0.7343 0.2308c -0.9442,2.5387 -2.4968,5.2663 -4.0284 7.7001h 3.3150 v -3.2521 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.3323,146.7576 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.7365,177.1122 ZM 367.1497,169.6638 c 0.0000,-0.1469 0.0210,-0.3147 0.2098 -0.4196c 0.2308,-0.1678 0.6085,-0.3567 0.9232 -0.3567c 0.2728,-0.0000 0.2937,0.2308 0.2937 0.6504v 3.3780 h 1.6995 l -0.1259,0.9861 h -1.5736 v 1.7414 c 0.0000,0.5875 0.0839,0.8812 0.6924 0.8812h 0.5665 c 0.1259,-0.0000 0.1469,0.1049 0.1469 0.1469v 0.4616 c 0.0000,-0.0000 -1.3428,-0.0420 -2.2240 -0.0420c -0.7973,-0.0000 -2.0352,0.0420 -2.0352 0.0420v -0.4616 c 0.0000,-0.0420 0.0210,-0.1469 0.1469 -0.1469h 0.5665 c 0.6504,-0.0000 0.7134,-0.2728 0.7134 -0.8812v -1.7414 h -4.1123 c -0.0839,-0.0000 -0.1259,-0.0420 -0.1888 -0.1259l -0.1678,-0.2308 l -0.2518,-0.4406 c -0.0210,-0.0000 -0.0210,-0.0210 -0.0210 -0.0420c 0.0000,-0.0210 0.0210,-0.0420 0.0420 -0.0629c 1.3638,-1.5106 3.7766,-6.1894 4.5319 -7.9099c 0.0210,-0.0839 0.0629,-0.1049 0.1469 -0.1049c 0.0210,-0.0000 0.4826,0.1888 0.7343 0.2308c -0.9442,2.5387 -2.4968,5.2663 -4.0284 7.7001h 3.3150 v -3.2521 ZM 370.9263,177.1122 ZM 373.1083,175.1189 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 375.5212,177.1122 ZM 380.0531,165.6355 c -0.5245,-0.0000 -2.0562,0.2937 -2.0562 1.5736c 0.0000,0.3777 -0.1469,1.0281 -0.7134 1.0281c -0.5455,-0.0000 -0.5875,-0.6085 -0.5875 -0.6714c 0.0000,-0.6504 0.8602,-2.5807 3.7766 -2.5807c 2.0352,-0.0000 2.6436,1.2799 2.6436 2.1191c 0.0000,0.5245 -0.1678,1.5736 -2.0562 2.7695c 1.1749,0.1888 2.7276,1.0491 2.7276 3.2311c 0.0000,2.7695 -2.0981,4.2592 -4.4690 4.2592c -1.1959,-0.0000 -2.8744,-0.5245 -2.8744 -1.3218c 0.0000,-0.3147 0.3147,-0.6714 0.7343 -0.6714c 0.3986,-0.0000 0.5875,0.2098 0.7763 0.4826c 0.2308,0.3567 0.6085,0.8602 1.6156 0.8602c 0.6924,-0.0000 2.6646,-0.6924 2.6646 -3.3360c 0.0000,-2.2450 -1.5736,-2.6017 -2.7066 -2.6017c -0.1888,-0.0000 -0.4196,0.0420 -0.6504 0.0839l -0.0839,-0.6294 c 1.6156,-0.2728 2.9583,-1.8463 2.9583 -2.8115c 0.0000,-1.1959 -0.8392,-1.7834 -1.6995 -1.7834Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.3323,188.9298 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.7365,219.2843 ZM 367.1497,211.8360 c 0.0000,-0.1469 0.0210,-0.3147 0.2098 -0.4196c 0.2308,-0.1678 0.6085,-0.3567 0.9232 -0.3567c 0.2728,-0.0000 0.2937,0.2308 0.2937 0.6504v 3.3780 h 1.6995 l -0.1259,0.9861 h -1.5736 v 1.7414 c 0.0000,0.5875 0.0839,0.8812 0.6924 0.8812h 0.5665 c 0.1259,-0.0000 0.1469,0.1049 0.1469 0.1469v 0.4616 c 0.0000,-0.0000 -1.3428,-0.0420 -2.2240 -0.0420c -0.7973,-0.0000 -2.0352,0.0420 -2.0352 0.0420v -0.4616 c 0.0000,-0.0420 0.0210,-0.1469 0.1469 -0.1469h 0.5665 c 0.6504,-0.0000 0.7134,-0.2728 0.7134 -0.8812v -1.7414 h -4.1123 c -0.0839,-0.0000 -0.1259,-0.0420 -0.1888 -0.1259l -0.1678,-0.2308 l -0.2518,-0.4406 c -0.0210,-0.0000 -0.0210,-0.0210 -0.0210 -0.0420c 0.0000,-0.0210 0.0210,-0.0420 0.0420 -0.0629c 1.3638,-1.5106 3.7766,-6.1894 4.5319 -7.9099c 0.0210,-0.0839 0.0629,-0.1049 0.1469 -0.1049c 0.0210,-0.0000 0.4826,0.1888 0.7343 0.2308c -0.9442,2.5387 -2.4968,5.2663 -4.0284 7.7001h 3.3150 v -3.2521 ZM 370.9263,219.2843 ZM 373.1083,217.2911 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 375.5212,219.2843 ZM 376.7381,209.9897 c 0.0000,-1.1959 1.1540,-2.8325 3.3570 -2.8325c 1.6156,-0.0000 3.5039,0.6085 3.5039 3.0213c 0.0000,1.5946 -0.8183,2.3919 -1.9512 3.4829l -1.9932,1.9303 c -0.1049,0.1049 -1.5106,1.4897 -1.5106 2.4758h 3.5668 c 0.7134,-0.0000 1.0910,-0.3567 1.3848 -1.5106l 0.5245,0.0839 l -0.4196,2.6436 h -6.4832 c 0.0000,-1.1749 0.1888,-2.0771 2.1401 -4.0703l 1.4687,-1.4477 c 1.1749,-1.1959 1.6575,-2.2240 1.6575 -3.5039c 0.0000,-1.9093 -1.3008,-2.4548 -2.0142 -2.4548c -1.4477,-0.0000 -1.8463,0.7553 -1.8463 1.2589c 0.0000,0.1678 0.0420,0.3357 0.0839 0.4826c 0.0420,0.1469 0.0839,0.2937 0.0839 0.4616c 0.0000,0.5455 -0.4196,0.7553 -0.7553 0.7553c -0.4616,-0.0000 -0.7973,-0.3567 -0.7973 -0.7763Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.3323,231.1020 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.7365,261.4565 ZM 367.1497,254.0082 c 0.0000,-0.1469 0.0210,-0.3147 0.2098 -0.4196c 0.2308,-0.1678 0.6085,-0.3567 0.9232 -0.3567c 0.2728,-0.0000 0.2937,0.2308 0.2937 0.6504v 3.3780 h 1.6995 l -0.1259,0.9861 h -1.5736 v 1.7414 c 0.0000,0.5875 0.0839,0.8812 0.6924 0.8812h 0.5665 c 0.1259,-0.0000 0.1469,0.1049 0.1469 0.1469v 0.4616 c 0.0000,-0.0000 -1.3428,-0.0420 -2.2240 -0.0420c -0.7973,-0.0000 -2.0352,0.0420 -2.0352 0.0420v -0.4616 c 0.0000,-0.0420 0.0210,-0.1469 0.1469 -0.1469h 0.5665 c 0.6504,-0.0000 0.7134,-0.2728 0.7134 -0.8812v -1.7414 h -4.1123 c -0.0839,-0.0000 -0.1259,-0.0420 -0.1888 -0.1259l -0.1678,-0.2308 l -0.2518,-0.4406 c -0.0210,-0.0000 -0.0210,-0.0210 -0.0210 -0.0420c 0.0000,-0.0210 0.0210,-0.0420 0.0420 -0.0629c 1.3638,-1.5106 3.7766,-6.1894 4.5319 -7.9099c 0.0210,-0.0839 0.0629,-0.1049 0.1469 -0.1049c 0.0210,-0.0000 0.4826,0.1888 0.7343 0.2308c -0.9442,2.5387 -2.4968,5.2663 -4.0284 7.7001h 3.3150 v -3.2521 ZM 370.9263,261.4565 ZM 373.1083,259.4633 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 375.5212,261.4565 ZM 379.4656,251.4485 c -0.3986,-0.0000 -1.3218,0.3777 -1.7834 0.5875l -0.2518,-0.6504 c 1.8463,-0.8602 2.5597,-1.3008 3.6088 -2.0562h 0.3986 v 10.5535 c 0.0000,0.7553 0.1049,0.9651 0.7973 0.9651h 1.0910 c 0.0629,-0.0000 0.1678,0.0420 0.1678 0.1678v 0.4616 l -2.8744,-0.0420 l -2.9164,0.0420 v -0.4616 c 0.0210,-0.0629 0.0420,-0.1678 0.1678 -0.1678h 1.2589 c 0.7973,-0.0000 0.7973,-0.3567 0.7973 -0.9651v -7.2175 c 0.0000,-0.7134 0.0000,-1.2169 -0.4616 -1.2169Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.3323,273.2741 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.7365,303.6287 ZM 367.1497,296.1804 c 0.0000,-0.1469 0.0210,-0.3147 0.2098 -0.4196c 0.2308,-0.1678 0.6085,-0.3567 0.9232 -0.3567c 0.2728,-0.0000 0.2937,0.2308 0.2937 0.6504v 3.3780 h 1.6995 l -0.1259,0.9861 h -1.5736 v 1.7414 c 0.0000,0.5875 0.0839,0.8812 0.6924 0.8812h 0.5665 c 0.1259,-0.0000 0.1469,0.1049 0.1469 0.1469v 0.4616 c 0.0000,-0.0000 -1.3428,-0.0420 -2.2240 -0.0420c -0.7973,-0.0000 -2.0352,0.0420 -2.0352 0.0420v -0.4616 c 0.0000,-0.0420 0.0210,-0.1469 0.1469 -0.1469h 0.5665 c 0.6504,-0.0000 0.7134,-0.2728 0.7134 -0.8812v -1.7414 h -4.1123 c -0.0839,-0.0000 -0.1259,-0.0420 -0.1888 -0.1259l -0.1678,-0.2308 l -0.2518,-0.4406 c -0.0210,-0.0000 -0.0210,-0.0210 -0.0210 -0.0420c 0.0000,-0.0210 0.0210,-0.0420 0.0420 -0.0629c 1.3638,-1.5106 3.7766,-6.1894 4.5319 -7.9099c 0.0210,-0.0839 0.0629,-0.1049 0.1469 -0.1049c 0.0210,-0.0000 0.4826,0.1888 0.7343 0.2308c -0.9442,2.5387 -2.4968,5.2663 -4.0284 7.7001h 3.3150 v -3.2521 ZM 370.9263,303.6287 ZM 373.1083,301.6355 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 375.5212,303.6287 ZM 380.1160,292.2359 c -0.9022,-0.0000 -2.2240,0.8812 -2.2240 5.7698c 0.0000,1.7205 0.3147,5.1824 2.1611 5.1824c 0.3567,-0.0000 1.3638,-0.2308 1.8044 -1.8673c 0.2728,-1.0071 0.4196,-2.2660 0.4196 -4.0913c 0.0000,-2.6646 -0.6714,-4.1543 -1.2799 -4.6788c -0.2308,-0.2098 -0.5455,-0.3147 -0.8812 -0.3147ZM 380.1160,292.2359 ZM 380.0321,303.8804 c -2.2450,-0.0000 -3.7556,-2.8744 -3.7556 -6.0845c 0.0000,-3.9235 1.8673,-6.2944 3.8396 -6.2944c 0.9022,-0.0000 1.8044,0.5665 2.4128 1.3848c 0.8812,1.1749 1.3428,2.7485 1.3428 4.7208c 0.0000,4.6578 -2.3079,6.2734 -3.8396 6.2734Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.3323,315.4463 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 298.4783,92.7678 ZM 303.0102,81.2911 c -0.5245,-0.0000 -2.0562,0.2937 -2.0562 1.5736c 0.0000,0.3777 -0.1469,1.0281 -0.7134 1.0281c -0.5455,-0.0000 -0.5875,-0.6085 -0.5875 -0.6714c 0.0000,-0.6504 0.8602,-2.5807 3.7766 -2.5807c 2.0352,-0.0000 2.6436,1.2799 2.6436 2.1191c 0.0000,0.5245 -0.1678,1.5736 -2.0562 2.7695c 1.1749,0.1888 2.7276,1.0491 2.7276 3.2311c 0.0000,2.7695 -2.0981,4.2592 -4.4690 4.2592c -1.1959,-0.0000 -2.8744,-0.5245 -2.8744 -1.3218c 0.0000,-0.3147 0.3147,-0.6714 0.7343 -0.6714c 0.3986,-0.0000 0.5875,0.2098 0.7763 0.4826c 0.2308,0.3567 0.6085,0.8602 1.6156 0.8602c 0.6924,-0.0000 2.6646,-0.6924 2.6646 -3.3360c 0.0000,-2.2450 -1.5736,-2.6017 -2.7066 -2.6017c -0.1888,-0.0000 -0.4196,0.0420 -0.6504 0.0839l -0.0839,-0.6294 c 1.6156,-0.2728 2.9583,-1.8463 2.9583 -2.8115c 0.0000,-1.1959 -0.8392,-1.7834 -1.6995 -1.7834ZM 307.6680,92.7678 ZM 309.8501,90.7746 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 312.2629,92.7678 ZM 318.7461,89.2220 c 0.0000,-2.1611 -1.1749,-3.2311 -2.4758 -3.2311c -0.9651,-0.0000 -1.6995,0.1469 -2.5177 0.4826l 0.6714,-5.7279 c 0.6924,0.0629 1.4057,0.0839 2.1401 0.0839c 1.0491,-0.0000 2.1401,-0.0629 3.2731 -0.1888l 0.1259,0.0629 l -0.3147,1.3638 c -0.8183,0.0839 -1.4897,0.1049 -2.0771 0.1049c -0.9442,-0.0000 -1.6575,-0.0839 -2.3919 -0.1678l -0.3986,3.3150 c 0.4406,-0.1678 1.1959,-0.3147 2.0142 -0.3147c 2.2240,-0.0000 3.4619,1.9303 3.4619 3.8605c 0.0000,2.3499 -1.6365,4.1543 -4.0074 4.1543c -1.1959,-0.0000 -2.9374,-0.6714 -2.9374 -1.4897c 0.0000,-0.3986 0.3357,-0.6714 0.7134 -0.6714c 0.4196,-0.0000 0.6924,0.3147 0.9442 0.6504c 0.3147,0.3777 0.6504,0.7973 1.3218 0.7973c 1.3428,-0.0000 2.4548,-1.2589 2.4548 -3.0842Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 312.0741,104.5855 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 298.4783,134.9400 ZM 303.0102,123.4633 c -0.5245,-0.0000 -2.0562,0.2937 -2.0562 1.5736c 0.0000,0.3777 -0.1469,1.0281 -0.7134 1.0281c -0.5455,-0.0000 -0.5875,-0.6085 -0.5875 -0.6714c 0.0000,-0.6504 0.8602,-2.5807 3.7766 -2.5807c 2.0352,-0.0000 2.6436,1.2799 2.6436 2.1191c 0.0000,0.5245 -0.1678,1.5736 -2.0562 2.7695c 1.1749,0.1888 2.7276,1.0491 2.7276 3.2311c 0.0000,2.7695 -2.0981,4.2592 -4.4690 4.2592c -1.1959,-0.0000 -2.8744,-0.5245 -2.8744 -1.3218c 0.0000,-0.3147 0.3147,-0.6714 0.7343 -0.6714c 0.3986,-0.0000 0.5875,0.2098 0.7763 0.4826c 0.2308,0.3567 0.6085,0.8602 1.6156 0.8602c 0.6924,-0.0000 2.6646,-0.6924 2.6646 -3.3360c 0.0000,-2.2450 -1.5736,-2.6017 -2.7066 -2.6017c -0.1888,-0.0000 -0.4196,0.0420 -0.6504 0.0839l -0.0839,-0.6294 c 1.6156,-0.2728 2.9583,-1.8463 2.9583 -2.8115c 0.0000,-1.1959 -0.8392,-1.7834 -1.6995 -1.7834ZM 307.6680,134.9400 ZM 309.8501,132.9468 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 312.2629,134.9400 ZM 317.6760,127.4917 c 0.0000,-0.1469 0.0210,-0.3147 0.2098 -0.4196c 0.2308,-0.1678 0.6085,-0.3567 0.9232 -0.3567c 0.2728,-0.0000 0.2937,0.2308 0.2937 0.6504v 3.3780 h 1.6995 l -0.1259,0.9861 h -1.5736 v 1.7414 c 0.0000,0.5875 0.0839,0.8812 0.6924 0.8812h 0.5665 c 0.1259,-0.0000 0.1469,0.1049 0.1469 0.1469v 0.4616 c 0.0000,-0.0000 -1.3428,-0.0420 -2.2240 -0.0420c -0.7973,-0.0000 -2.0352,0.0420 -2.0352 0.0420v -0.4616 c 0.0000,-0.0420 0.0210,-0.1469 0.1469 -0.1469h 0.5665 c 0.6504,-0.0000 0.7134,-0.2728 0.7134 -0.8812v -1.7414 h -4.1123 c -0.0839,-0.0000 -0.1259,-0.0420 -0.1888 -0.1259l -0.1678,-0.2308 l -0.2518,-0.4406 c -0.0210,-0.0000 -0.0210,-0.0210 -0.0210 -0.0420c 0.0000,-0.0210 0.0210,-0.0420 0.0420 -0.0629c 1.3638,-1.5106 3.7766,-6.1894 4.5319 -7.9099c 0.0210,-0.0839 0.0629,-0.1049 0.1469 -0.1049c 0.0210,-0.0000 0.4826,0.1888 0.7343 0.2308c -0.9442,2.5387 -2.4968,5.2663 -4.0284 7.7001h 3.3150 v -3.2521 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 312.0741,146.7576 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 298.4783,177.1122 ZM 303.0102,165.6355 c -0.5245,-0.0000 -2.0562,0.2937 -2.0562 1.5736c 0.0000,0.3777 -0.1469,1.0281 -0.7134 1.0281c -0.5455,-0.0000 -0.5875,-0.6085 -0.5875 -0.6714c 0.0000,-0.6504 0.8602,-2.5807 3.7766 -2.5807c 2.0352,-0.0000 2.6436,1.2799 2.6436 2.1191c 0.0000,0.5245 -0.1678,1.5736 -2.0562 2.7695c 1.1749,0.1888 2.7276,1.0491 2.7276 3.2311c 0.0000,2.7695 -2.0981,4.2592 -4.4690 4.2592c -1.1959,-0.0000 -2.8744,-0.5245 -2.8744 -1.3218c 0.0000,-0.3147 0.3147,-0.6714 0.7343 -0.6714c 0.3986,-0.0000 0.5875,0.2098 0.7763 0.4826c 0.2308,0.3567 0.6085,0.8602 1.6156 0.8602c 0.6924,-0.0000 2.6646,-0.6924 2.6646 -3.3360c 0.0000,-2.2450 -1.5736,-2.6017 -2.7066 -2.6017c -0.1888,-0.0000 -0.4196,0.0420 -0.6504 0.0839l -0.0839,-0.6294 c 1.6156,-0.2728 2.9583,-1.8463 2.9583 -2.8115c 0.0000,-1.1959 -0.8392,-1.7834 -1.6995 -1.7834ZM 307.6680,177.1122 ZM 309.8501,175.1189 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 312.2629,177.1122 ZM 316.7948,165.6355 c -0.5245,-0.0000 -2.0562,0.2937 -2.0562 1.5736c 0.0000,0.3777 -0.1469,1.0281 -0.7134 1.0281c -0.5455,-0.0000 -0.5875,-0.6085 -0.5875 -0.6714c 0.0000,-0.6504 0.8602,-2.5807 3.7766 -2.5807c 2.0352,-0.0000 2.6436,1.2799 2.6436 2.1191c 0.0000,0.5245 -0.1678,1.5736 -2.0562 2.7695c 1.1749,0.1888 2.7276,1.0491 2.7276 3.2311c 0.0000,2.7695 -2.0981,4.2592 -4.4690 4.2592c -1.1959,-0.0000 -2.8744,-0.5245 -2.8744 -1.3218c 0.0000,-0.3147 0.3147,-0.6714 0.7343 -0.6714c 0.3986,-0.0000 0.5875,0.2098 0.7763 0.4826c 0.2308,0.3567 0.6085,0.8602 1.6156 0.8602c 0.6924,-0.0000 2.6646,-0.6924 2.6646 -3.3360c 0.0000,-2.2450 -1.5736,-2.6017 -2.7066 -2.6017c -0.1888,-0.0000 -0.4196,0.0420 -0.6504 0.0839l -0.0839,-0.6294 c 1.6156,-0.2728 2.9583,-1.8463 2.9583 -2.8115c 0.0000,-1.1959 -0.8392,-1.7834 -1.6995 -1.7834Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 312.0741,188.9298 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 298.4783,219.2843 ZM 303.0102,207.8076 c -0.5245,-0.0000 -2.0562,0.2937 -2.0562 1.5736c 0.0000,0.3777 -0.1469,1.0281 -0.7134 1.0281c -0.5455,-0.0000 -0.5875,-0.6085 -0.5875 -0.6714c 0.0000,-0.6504 0.8602,-2.5807 3.7766 -2.5807c 2.0352,-0.0000 2.6436,1.2799 2.6436 2.1191c 0.0000,0.5245 -0.1678,1.5736 -2.0562 2.7695c 1.1749,0.1888 2.7276,1.0491 2.7276 3.2311c 0.0000,2.7695 -2.0981,4.2592 -4.4690 4.2592c -1.1959,-0.0000 -2.8744,-0.5245 -2.8744 -1.3218c 0.0000,-0.3147 0.3147,-0.6714 0.7343 -0.6714c 0.3986,-0.0000 0.5875,0.2098 0.7763 0.4826c 0.2308,0.3567 0.6085,0.8602 1.6156 0.8602c 0.6924,-0.0000 2.6646,-0.6924 2.6646 -3.3360c 0.0000,-2.2450 -1.5736,-2.6017 -2.7066 -2.6017c -0.1888,-0.0000 -0.4196,0.0420 -0.6504 0.0839l -0.0839,-0.6294 c 1.6156,-0.2728 2.9583,-1.8463 2.9583 -2.8115c 0.0000,-1.1959 -0.8392,-1.7834 -1.6995 -1.7834ZM 307.6680,219.2843 ZM 309.8501,217.2911 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 312.2629,219.2843 ZM 313.4798,209.9897 c 0.0000,-1.1959 1.1540,-2.8325 3.3570 -2.8325c 1.6156,-0.0000 3.5039,0.6085 3.5039 3.0213c 0.0000,1.5946 -0.8183,2.3919 -1.9512 3.4829l -1.9932,1.9303 c -0.1049,0.1049 -1.5106,1.4897 -1.5106 2.4758h 3.5668 c 0.7134,-0.0000 1.0910,-0.3567 1.3848 -1.5106l 0.5245,0.0839 l -0.4196,2.6436 h -6.4832 c 0.0000,-1.1749 0.1888,-2.0771 2.1401 -4.0703l 1.4687,-1.4477 c 1.1749,-1.1959 1.6575,-2.2240 1.6575 -3.5039c 0.0000,-1.9093 -1.3008,-2.4548 -2.0142 -2.4548c -1.4477,-0.0000 -1.8463,0.7553 -1.8463 1.2589c 0.0000,0.1678 0.0420,0.3357 0.0839 0.4826c 0.0420,0.1469 0.0839,0.2937 0.0839 0.4616c 0.0000,0.5455 -0.4196,0.7553 -0.7553 0.7553c -0.4616,-0.0000 -0.7973,-0.3567 -0.7973 -0.7763Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 312.0741,231.1020 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 298.4783,261.4565 ZM 303.0102,249.9798 c -0.5245,-0.0000 -2.0562,0.2937 -2.0562 1.5736c 0.0000,0.3777 -0.1469,1.0281 -0.7134 1.0281c -0.5455,-0.0000 -0.5875,-0.6085 -0.5875 -0.6714c 0.0000,-0.6504 0.8602,-2.5807 3.7766 -2.5807c 2.0352,-0.0000 2.6436,1.2799 2.6436 2.1191c 0.0000,0.5245 -0.1678,1.5736 -2.0562 2.7695c 1.1749,0.1888 2.7276,1.0491 2.7276 3.2311c 0.0000,2.7695 -2.0981,4.2592 -4.4690 4.2592c -1.1959,-0.0000 -2.8744,-0.5245 -2.8744 -1.3218c 0.0000,-0.3147 0.3147,-0.6714 0.7343 -0.6714c 0.3986,-0.0000 0.5875,0.2098 0.7763 0.4826c 0.2308,0.3567 0.6085,0.8602 1.6156 0.8602c 0.6924,-0.0000 2.6646,-0.6924 2.6646 -3.3360c 0.0000,-2.2450 -1.5736,-2.6017 -2.7066 -2.6017c -0.1888,-0.0000 -0.4196,0.0420 -0.6504 0.0839l -0.0839,-0.6294 c 1.6156,-0.2728 2.9583,-1.8463 2.9583 -2.8115c 0.0000,-1.1959 -0.8392,-1.7834 -1.6995 -1.7834ZM 307.6680,261.4565 ZM 309.8501,259.4633 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 312.2629,261.4565 ZM 316.2074,251.4485 c -0.3986,-0.0000 -1.3218,0.3777 -1.7834 0.5875l -0.2518,-0.6504 c 1.8463,-0.8602 2.5597,-1.3008 3.6088 -2.0562h 0.3986 v 10.5535 c 0.0000,0.7553 0.1049,0.9651 0.7973 0.9651h 1.0910 c 0.0629,-0.0000 0.1678,0.0420 0.1678 0.1678v 0.4616 l -2.8744,-0.0420 l -2.9164,0.0420 v -0.4616 c 0.0210,-0.0629 0.0420,-0.1678 0.1678 -0.1678h 1.2589 c 0.7973,-0.0000 0.7973,-0.3567 0.7973 -0.9651v -7.2175 c 0.0000,-0.7134 0.0000,-1.2169 -0.4616 -1.2169Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 312.0741,273.2741 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 298.4783,303.6287 ZM 303.0102,292.1520 c -0.5245,-0.0000 -2.0562,0.2937 -2.0562 1.5736c 0.0000,0.3777 -0.1469,1.0281 -0.7134 1.0281c -0.5455,-0.0000 -0.5875,-0.6085 -0.5875 -0.6714c 0.0000,-0.6504 0.8602,-2.5807 3.7766 -2.5807c 2.0352,-0.0000 2.6436,1.2799 2.6436 2.1191c 0.0000,0.5245 -0.1678,1.5736 -2.0562 2.7695c 1.1749,0.1888 2.7276,1.0491 2.7276 3.2311c 0.0000,2.7695 -2.0981,4.2592 -4.4690 4.2592c -1.1959,-0.0000 -2.8744,-0.5245 -2.8744 -1.3218c 0.0000,-0.3147 0.3147,-0.6714 0.7343 -0.6714c 0.3986,-0.0000 0.5875,0.2098 0.7763 0.4826c 0.2308,0.3567 0.6085,0.8602 1.6156 0.8602c 0.6924,-0.0000 2.6646,-0.6924 2.6646 -3.3360c 0.0000,-2.2450 -1.5736,-2.6017 -2.7066 -2.6017c -0.1888,-0.0000 -0.4196,0.0420 -0.6504 0.0839l -0.0839,-0.6294 c 1.6156,-0.2728 2.9583,-1.8463 2.9583 -2.8115c 0.0000,-1.1959 -0.8392,-1.7834 -1.6995 -1.7834ZM 307.6680,303.6287 ZM 309.8501,301.6355 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 312.2629,303.6287 ZM 316.8578,292.2359 c -0.9022,-0.0000 -2.2240,0.8812 -2.2240 5.7698c 0.0000,1.7205 0.3147,5.1824 2.1611 5.1824c 0.3567,-0.0000 1.3638,-0.2308 1.8044 -1.8673c 0.2728,-1.0071 0.4196,-2.2660 0.4196 -4.0913c 0.0000,-2.6646 -0.6714,-4.1543 -1.2799 -4.6788c -0.2308,-0.2098 -0.5455,-0.3147 -0.8812 -0.3147ZM 316.8578,292.2359 ZM 316.7738,303.8804 c -2.2450,-0.0000 -3.7556,-2.8744 -3.7556 -6.0845c 0.0000,-3.9235 1.8673,-6.2944 3.8396 -6.2944c 0.9022,-0.0000 1.8044,0.5665 2.4128 1.3848c 0.8812,1.1749 1.3428,2.7485 1.3428 4.7208c 0.0000,4.6578 -2.3079,6.2734 -3.8396 6.2734Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 312.0741,315.4463 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 235.2200,92.7678 ZM 236.4369,83.4732 c 0.0000,-1.1959 1.1540,-2.8325 3.3570 -2.8325c 1.6156,-0.0000 3.5039,0.6085 3.5039 3.0213c 0.0000,1.5946 -0.8183,2.3919 -1.9512 3.4829l -1.9932,1.9303 c -0.1049,0.1049 -1.5106,1.4897 -1.5106 2.4758h 3.5668 c 0.7134,-0.0000 1.0910,-0.3567 1.3848 -1.5106l 0.5245,0.0839 l -0.4196,2.6436 h -6.4832 c 0.0000,-1.1749 0.1888,-2.0771 2.1401 -4.0703l 1.4687,-1.4477 c 1.1749,-1.1959 1.6575,-2.2240 1.6575 -3.5039c 0.0000,-1.9093 -1.3008,-2.4548 -2.0142 -2.4548c -1.4477,-0.0000 -1.8463,0.7553 -1.8463 1.2589c 0.0000,0.1678 0.0420,0.3357 0.0839 0.4826c 0.0420,0.1469 0.0839,0.2937 0.0839 0.4616c 0.0000,0.5455 -0.4196,0.7553 -0.7553 0.7553c -0.4616,-0.0000 -0.7973,-0.3567 -0.7973 -0.7763ZM 244.4098,92.7678 ZM 246.5918,90.7746 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 249.0046,92.7678 ZM 255.4878,89.2220 c 0.0000,-2.1611 -1.1749,-3.2311 -2.4758 -3.2311c -0.9651,-0.0000 -1.6995,0.1469 -2.5177 0.4826l 0.6714,-5.7279 c 0.6924,0.0629 1.4057,0.0839 2.1401 0.0839c 1.0491,-0.0000 2.1401,-0.0629 3.2731 -0.1888l 0.1259,0.0629 l -0.3147,1.3638 c -0.8183,0.0839 -1.4897,0.1049 -2.0771 0.1049c -0.9442,-0.0000 -1.6575,-0.0839 -2.3919 -0.1678l -0.3986,3.3150 c 0.4406,-0.1678 1.1959,-0.3147 2.0142 -0.3147c 2.2240,-0.0000 3.4619,1.9303 3.4619 3.8605c 0.0000,2.3499 -1.6365,4.1543 -4.0074 4.1543c -1.1959,-0.0000 -2.9374,-0.6714 -2.9374 -1.4897c 0.0000,-0.3986 0.3357,-0.6714 0.7134 -0.6714c 0.4196,-0.0000 0.6924,0.3147 0.9442 0.6504c 0.3147,0.3777 0.6504,0.7973 1.3218 0.7973c 1.3428,-0.0000 2.4548,-1.2589 2.4548 -3.0842Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 248.8158,104.5855 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 235.2200,134.9400 ZM 236.4369,125.6453 c 0.0000,-1.1959 1.1540,-2.8325 3.3570 -2.8325c 1.6156,-0.0000 3.5039,0.6085 3.5039 3.0213c 0.0000,1.5946 -0.8183,2.3919 -1.9512 3.4829l -1.9932,1.9303 c -0.1049,0.1049 -1.5106,1.4897 -1.5106 2.4758h 3.5668 c 0.7134,-0.0000 1.0910,-0.3567 1.3848 -1.5106l 0.5245,0.0839 l -0.4196,2.6436 h -6.4832 c 0.0000,-1.1749 0.1888,-2.0771 2.1401 -4.0703l 1.4687,-1.4477 c 1.1749,-1.1959 1.6575,-2.2240 1.6575 -3.5039c 0.0000,-1.9093 -1.3008,-2.4548 -2.0142 -2.4548c -1.4477,-0.0000 -1.8463,0.7553 -1.8463 1.2589c 0.0000,0.1678 0.0420,0.3357 0.0839 0.4826c 0.0420,0.1469 0.0839,0.2937 0.0839 0.4616c 0.0000,0.5455 -0.4196,0.7553 -0.7553 0.7553c -0.4616,-0.0000 -0.7973,-0.3567 -0.7973 -0.7763ZM 244.4098,134.9400 ZM 246.5918,132.9468 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 249.0046,134.9400 ZM 254.4178,127.4917 c 0.0000,-0.1469 0.0210,-0.3147 0.2098 -0.4196c 0.2308,-0.1678 0.6085,-0.3567 0.9232 -0.3567c 0.2728,-0.0000 0.2937,0.2308 0.2937 0.6504v 3.3780 h 1.6995 l -0.1259,0.9861 h -1.5736 v 1.7414 c 0.0000,0.5875 0.0839,0.8812 0.6924 0.8812h 0.5665 c 0.1259,-0.0000 0.1469,0.1049 0.1469 0.1469v 0.4616 c 0.0000,-0.0000 -1.3428,-0.0420 -2.2240 -0.0420c -0.7973,-0.0000 -2.0352,0.0420 -2.0352 0.0420v -0.4616 c 0.0000,-0.0420 0.0210,-0.1469 0.1469 -0.1469h 0.5665 c 0.6504,-0.0000 0.7134,-0.2728 0.7134 -0.8812v -1.7414 h -4.1123 c -0.0839,-0.0000 -0.1259,-0.0420 -0.1888 -0.1259l -0.1678,-0.2308 l -0.2518,-0.4406 c -0.0210,-0.0000 -0.0210,-0.0210 -0.0210 -0.0420c 0.0000,-0.0210 0.0210,-0.0420 0.0420 -0.0629c 1.3638,-1.5106 3.7766,-6.1894 4.5319 -7.9099c 0.0210,-0.0839 0.0629,-0.1049 0.1469 -0.1049c 0.0210,-0.0000 0.4826,0.1888 0.7343 0.2308c -0.9442,2.5387 -2.4968,5.2663 -4.0284 7.7001h 3.3150 v -3.2521 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 248.8158,146.7576 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 235.2200,177.1122 ZM 236.4369,167.8175 c 0.0000,-1.1959 1.1540,-2.8325 3.3570 -2.8325c 1.6156,-0.0000 3.5039,0.6085 3.5039 3.0213c 0.0000,1.5946 -0.8183,2.3919 -1.9512 3.4829l -1.9932,1.9303 c -0.1049,0.1049 -1.5106,1.4897 -1.5106 2.4758h 3.5668 c 0.7134,-0.0000 1.0910,-0.3567 1.3848 -1.5106l 0.5245,0.0839 l -0.4196,2.6436 h -6.4832 c 0.0000,-1.1749 0.1888,-2.0771 2.1401 -4.0703l 1.4687,-1.4477 c 1.1749,-1.1959 1.6575,-2.2240 1.6575 -3.5039c 0.0000,-1.9093 -1.3008,-2.4548 -2.0142 -2.4548c -1.4477,-0.0000 -1.8463,0.7553 -1.8463 1.2589c 0.0000,0.1678 0.0420,0.3357 0.0839 0.4826c 0.0420,0.1469 0.0839,0.2937 0.0839 0.4616c 0.0000,0.5455 -0.4196,0.7553 -0.7553 0.7553c -0.4616,-0.0000 -0.7973,-0.3567 -0.7973 -0.7763ZM 244.4098,177.1122 ZM 246.5918,175.1189 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 249.0046,177.1122 ZM 253.5366,165.6355 c -0.5245,-0.0000 -2.0562,0.2937 -2.0562 1.5736c 0.0000,0.3777 -0.1469,1.0281 -0.7134 1.0281c -0.5455,-0.0000 -0.5875,-0.6085 -0.5875 -0.6714c 0.0000,-0.6504 0.8602,-2.5807 3.7766 -2.5807c 2.0352,-0.0000 2.6436,1.2799 2.6436 2.1191c 0.0000,0.5245 -0.1678,1.5736 -2.0562 2.7695c 1.1749,0.1888 2.7276,1.0491 2.7276 3.2311c 0.0000,2.7695 -2.0981,4.2592 -4.4690 4.2592c -1.1959,-0.0000 -2.8744,-0.5245 -2.8744 -1.3218c 0.0000,-0.3147 0.3147,-0.6714 0.7343 -0.6714c 0.3986,-0.0000 0.5875,0.2098 0.7763 0.4826c 0.2308,0.3567 0.6085,0.8602 1.6156 0.8602c 0.6924,-0.0000 2.6646,-0.6924 2.6646 -3.3360c 0.0000,-2.2450 -1.5736,-2.6017 -2.7066 -2.6017c -0.1888,-0.0000 -0.4196,0.0420 -0.6504 0.0839l -0.0839,-0.6294 c 1.6156,-0.2728 2.9583,-1.8463 2.9583 -2.8115c 0.0000,-1.1959 -0.8392,-1.7834 -1.6995 -1.7834Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 248.8158,188.9298 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 235.2200,219.2843 ZM 236.4369,209.9897 c 0.0000,-1.1959 1.1540,-2.8325 3.3570 -2.8325c 1.6156,-0.0000 3.5039,0.6085 3.5039 3.0213c 0.0000,1.5946 -0.8183,2.3919 -1.9512 3.4829l -1.9932,1.9303 c -0.1049,0.1049 -1.5106,1.4897 -1.5106 2.4758h 3.5668 c 0.7134,-0.0000 1.0910,-0.3567 1.3848 -1.5106l 0.5245,0.0839 l -0.4196,2.6436 h -6.4832 c 0.0000,-1.1749 0.1888,-2.0771 2.1401 -4.0703l 1.4687,-1.4477 c 1.1749,-1.1959 1.6575,-2.2240 1.6575 -3.5039c 0.0000,-1.9093 -1.3008,-2.4548 -2.0142 -2.4548c -1.4477,-0.0000 -1.8463,0.7553 -1.8463 1.2589c 0.0000,0.1678 0.0420,0.3357 0.0839 0.4826c 0.0420,0.1469 0.0839,0.2937 0.0839 0.4616c 0.0000,0.5455 -0.4196,0.7553 -0.7553 0.7553c -0.4616,-0.0000 -0.7973,-0.3567 -0.7973 -0.7763ZM 244.4098,219.2843 ZM 246.5918,217.2911 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 249.0046,219.2843 ZM 250.2215,209.9897 c 0.0000,-1.1959 1.1540,-2.8325 3.3570 -2.8325c 1.6156,-0.0000 3.5039,0.6085 3.5039 3.0213c 0.0000,1.5946 -0.8183,2.3919 -1.9512 3.4829l -1.9932,1.9303 c -0.1049,0.1049 -1.5106,1.4897 -1.5106 2.4758h 3.5668 c 0.7134,-0.0000 1.0910,-0.3567 1.3848 -1.5106l 0.5245,0.0839 l -0.4196,2.6436 h -6.4832 c 0.0000,-1.1749 0.1888,-2.0771 2.1401 -4.0703l 1.4687,-1.4477 c 1.1749,-1.1959 1.6575,-2.2240 1.6575 -3.5039c 0.0000,-1.9093 -1.3008,-2.4548 -2.0142 -2.4548c -1.4477,-0.0000 -1.8463,0.7553 -1.8463 1.2589c 0.0000,0.1678 0.0420,0.3357 0.0839 0.4826c 0.0420,0.1469 0.0839,0.2937 0.0839 0.4616c 0.0000,0.5455 -0.4196,0.7553 -0.7553 0.7553c -0.4616,-0.0000 -0.7973,-0.3567 -0.7973 -0.7763Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 248.8158,231.1020 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 235.2200,261.4565 ZM 236.4369,252.1618 c 0.0000,-1.1959 1.1540,-2.8325 3.3570 -2.8325c 1.6156,-0.0000 3.5039,0.6085 3.5039 3.0213c 0.0000,1.5946 -0.8183,2.3919 -1.9512 3.4829l -1.9932,1.9303 c -0.1049,0.1049 -1.5106,1.4897 -1.5106 2.4758h 3.5668 c 0.7134,-0.0000 1.0910,-0.3567 1.3848 -1.5106l 0.5245,0.0839 l -0.4196,2.6436 h -6.4832 c 0.0000,-1.1749 0.1888,-2.0771 2.1401 -4.0703l 1.4687,-1.4477 c 1.1749,-1.1959 1.6575,-2.2240 1.6575 -3.5039c 0.0000,-1.9093 -1.3008,-2.4548 -2.0142 -2.4548c -1.4477,-0.0000 -1.8463,0.7553 -1.8463 1.2589c 0.0000,0.1678 0.0420,0.3357 0.0839 0.4826c 0.0420,0.1469 0.0839,0.2937 0.0839 0.4616c 0.0000,0.5455 -0.4196,0.7553 -0.7553 0.7553c -0.4616,-0.0000 -0.7973,-0.3567 -0.7973 -0.7763ZM 244.4098,261.4565 ZM 246.5918,259.4633 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 249.0046,261.4565 ZM 252.9491,251.4485 c -0.3986,-0.0000 -1.3218,0.3777 -1.7834 0.5875l -0.2518,-0.6504 c 1.8463,-0.8602 2.5597,-1.3008 3.6088 -2.0562h 0.3986 v 10.5535 c 0.0000,0.7553 0.1049,0.9651 0.7973 0.9651h 1.0910 c 0.0629,-0.0000 0.1678,0.0420 0.1678 0.1678v 0.4616 l -2.8744,-0.0420 l -2.9164,0.0420 v -0.4616 c 0.0210,-0.0629 0.0420,-0.1678 0.1678 -0.1678h 1.2589 c 0.7973,-0.0000 0.7973,-0.3567 0.7973 -0.9651v -7.2175 c 0.0000,-0.7134 0.0000,-1.2169 -0.4616 -1.2169Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 248.8158,273.2741 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 235.2200,303.6287 ZM 236.4369,294.3340 c 0.0000,-1.1959 1.1540,-2.8325 3.3570 -2.8325c 1.6156,-0.0000 3.5039,0.6085 3.5039 3.0213c 0.0000,1.5946 -0.8183,2.3919 -1.9512 3.4829l -1.9932,1.9303 c -0.1049,0.1049 -1.5106,1.4897 -1.5106 2.4758h 3.5668 c 0.7134,-0.0000 1.0910,-0.3567 1.3848 -1.5106l 0.5245,0.0839 l -0.4196,2.6436 h -6.4832 c 0.0000,-1.1749 0.1888,-2.0771 2.1401 -4.0703l 1.4687,-1.4477 c 1.1749,-1.1959 1.6575,-2.2240 1.6575 -3.5039c 0.0000,-1.9093 -1.3008,-2.4548 -2.0142 -2.4548c -1.4477,-0.0000 -1.8463,0.7553 -1.8463 1.2589c 0.0000,0.1678 0.0420,0.3357 0.0839 0.4826c 0.0420,0.1469 0.0839,0.2937 0.0839 0.4616c 0.0000,0.5455 -0.4196,0.7553 -0.7553 0.7553c -0.4616,-0.0000 -0.7973,-0.3567 -0.7973 -0.7763ZM 244.4098,303.6287 ZM 246.5918,301.6355 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 249.0046,303.6287 ZM 253.5995,292.2359 c -0.9022,-0.0000 -2.2240,0.8812 -2.2240 5.7698c 0.0000,1.7205 0.3147,5.1824 2.1611 5.1824c 0.3567,-0.0000 1.3638,-0.2308 1.8044 -1.8673c 0.2728,-1.0071 0.4196,-2.2660 0.4196 -4.0913c 0.0000,-2.6646 -0.6714,-4.1543 -1.2799 -4.6788c -0.2308,-0.2098 -0.5455,-0.3147 -0.8812 -0.3147ZM 253.5995,292.2359 ZM 253.5156,303.8804 c -2.2450,-0.0000 -3.7556,-2.8744 -3.7556 -6.0845c 0.0000,-3.9235 1.8673,-6.2944 3.8396 -6.2944c 0.9022,-0.0000 1.8044,0.5665 2.4128 1.3848c 0.8812,1.1749 1.3428,2.7485 1.3428 4.7208c 0.0000,4.6578 -2.3079,6.2734 -3.8396 6.2734Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 248.8158,315.4463 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 171.9617,92.7678 ZM 175.9062,82.7598 c -0.3986,-0.0000 -1.3218,0.3777 -1.7834 0.5875l -0.2518,-0.6504 c 1.8463,-0.8602 2.5597,-1.3008 3.6088 -2.0562h 0.3986 v 10.5535 c 0.0000,0.7553 0.1049,0.9651 0.7973 0.9651h 1.0910 c 0.0629,-0.0000 0.1678,0.0420 0.1678 0.1678v 0.4616 l -2.8744,-0.0420 l -2.9164,0.0420 v -0.4616 c 0.0210,-0.0629 0.0420,-0.1678 0.1678 -0.1678h 1.2589 c 0.7973,-0.0000 0.7973,-0.3567 0.7973 -0.9651v -7.2175 c 0.0000,-0.7134 0.0000,-1.2169 -0.4616 -1.2169ZM 181.1515,92.7678 ZM 183.3335,90.7746 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 185.7464,92.7678 ZM 192.2296,89.2220 c 0.0000,-2.1611 -1.1749,-3.2311 -2.4758 -3.2311c -0.9651,-0.0000 -1.6995,0.1469 -2.5177 0.4826l 0.6714,-5.7279 c 0.6924,0.0629 1.4057,0.0839 2.1401 0.0839c 1.0491,-0.0000 2.1401,-0.0629 3.2731 -0.1888l 0.1259,0.0629 l -0.3147,1.3638 c -0.8183,0.0839 -1.4897,0.1049 -2.0771 0.1049c -0.9442,-0.0000 -1.6575,-0.0839 -2.3919 -0.1678l -0.3986,3.3150 c 0.4406,-0.1678 1.1959,-0.3147 2.0142 -0.3147c 2.2240,-0.0000 3.4619,1.9303 3.4619 3.8605c 0.0000,2.3499 -1.6365,4.1543 -4.0074 4.1543c -1.1959,-0.0000 -2.9374,-0.6714 -2.9374 -1.4897c 0.0000,-0.3986 0.3357,-0.6714 0.7134 -0.6714c 0.4196,-0.0000 0.6924,0.3147 0.9442 0.6504c 0.3147,0.3777 0.6504,0.7973 1.3218 0.7973c 1.3428,-0.0000 2.4548,-1.2589 2.4548 -3.0842Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 185.5576,104.5855 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 171.9617,134.9400 ZM 175.9062,124.9320 c -0.3986,-0.0000 -1.3218,0.3777 -1.7834 0.5875l -0.2518,-0.6504 c 1.8463,-0.8602 2.5597,-1.3008 3.6088 -2.0562h 0.3986 v 10.5535 c 0.0000,0.7553 0.1049,0.9651 0.7973 0.9651h 1.0910 c 0.0629,-0.0000 0.1678,0.0420 0.1678 0.1678v 0.4616 l -2.8744,-0.0420 l -2.9164,0.0420 v -0.4616 c 0.0210,-0.0629 0.0420,-0.1678 0.1678 -0.1678h 1.2589 c 0.7973,-0.0000 0.7973,-0.3567 0.7973 -0.9651v -7.2175 c 0.0000,-0.7134 0.0000,-1.2169 -0.4616 -1.2169ZM 181.1515,134.9400 ZM 183.3335,132.9468 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 185.7464,134.9400 ZM 191.1595,127.4917 c 0.0000,-0.1469 0.0210,-0.3147 0.2098 -0.4196c 0.2308,-0.1678 0.6085,-0.3567 0.9232 -0.3567c 0.2728,-0.0000 0.2937,0.2308 0.2937 0.6504v 3.3780 h 1.6995 l -0.1259,0.9861 h -1.5736 v 1.7414 c 0.0000,0.5875 0.0839,0.8812 0.6924 0.8812h 0.5665 c 0.1259,-0.0000 0.1469,0.1049 0.1469 0.1469v 0.4616 c 0.0000,-0.0000 -1.3428,-0.0420 -2.2240 -0.0420c -0.7973,-0.0000 -2.0352,0.0420 -2.0352 0.0420v -0.4616 c 0.0000,-0.0420 0.0210,-0.1469 0.1469 -0.1469h 0.5665 c 0.6504,-0.0000 0.7134,-0.2728 0.7134 -0.8812v -1.7414 h -4.1123 c -0.0839,-0.0000 -0.1259,-0.0420 -0.1888 -0.1259l -0.1678,-0.2308 l -0.2518,-0.4406 c -0.0210,-0.0000 -0.0210,-0.0210 -0.0210 -0.0420c 0.0000,-0.0210 0.0210,-0.0420 0.0420 -0.0629c 1.3638,-1.5106 3.7766,-6.1894 4.5319 -7.9099c 0.0210,-0.0839 0.0629,-0.1049 0.1469 -0.1049c 0.0210,-0.0000 0.4826,0.1888 0.7343 0.2308c -0.9442,2.5387 -2.4968,5.2663 -4.0284 7.7001h 3.3150 v -3.2521 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 185.5576,146.7576 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 171.9617,177.1122 ZM 175.9062,167.1041 c -0.3986,-0.0000 -1.3218,0.3777 -1.7834 0.5875l -0.2518,-0.6504 c 1.8463,-0.8602 2.5597,-1.3008 3.6088 -2.0562h 0.3986 v 10.5535 c 0.0000,0.7553 0.1049,0.9651 0.7973 0.9651h 1.0910 c 0.0629,-0.0000 0.1678,0.0420 0.1678 0.1678v 0.4616 l -2.8744,-0.0420 l -2.9164,0.0420 v -0.4616 c 0.0210,-0.0629 0.0420,-0.1678 0.1678 -0.1678h 1.2589 c 0.7973,-0.0000 0.7973,-0.3567 0.7973 -0.9651v -7.2175 c 0.0000,-0.7134 0.0000,-1.2169 -0.4616 -1.2169ZM 181.1515,177.1122 ZM 183.3335,175.1189 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 185.7464,177.1122 ZM 190.2783,165.6355 c -0.5245,-0.0000 -2.0562,0.2937 -2.0562 1.5736c 0.0000,0.3777 -0.1469,1.0281 -0.7134 1.0281c -0.5455,-0.0000 -0.5875,-0.6085 -0.5875 -0.6714c 0.0000,-0.6504 0.8602,-2.5807 3.7766 -2.5807c 2.0352,-0.0000 2.6436,1.2799 2.6436 2.1191c 0.0000,0.5245 -0.1678,1.5736 -2.0562 2.7695c 1.1749,0.1888 2.7276,1.0491 2.7276 3.2311c 0.0000,2.7695 -2.0981,4.2592 -4.4690 4.2592c -1.1959,-0.0000 -2.8744,-0.5245 -2.8744 -1.3218c 0.0000,-0.3147 0.3147,-0.6714 0.7343 -0.6714c 0.3986,-0.0000 0.5875,0.2098 0.7763 0.4826c 0.2308,0.3567 0.6085,0.8602 1.6156 0.8602c 0.6924,-0.0000 2.6646,-0.6924 2.6646 -3.3360c 0.0000,-2.2450 -1.5736,-2.6017 -2.7066 -2.6017c -0.1888,-0.0000 -0.4196,0.0420 -0.6504 0.0839l -0.0839,-0.6294 c 1.6156,-0.2728 2.9583,-1.8463 2.9583 -2.8115c 0.0000,-1.1959 -0.8392,-1.7834 -1.6995 -1.7834Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 185.5576,188.9298 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 171.9617,219.2843 ZM 175.9062,209.2763 c -0.3986,-0.0000 -1.3218,0.3777 -1.7834 0.5875l -0.2518,-0.6504 c 1.8463,-0.8602 2.5597,-1.3008 3.6088 -2.0562h 0.3986 v 10.5535 c 0.0000,0.7553 0.1049,0.9651 0.7973 0.9651h 1.0910 c 0.0629,-0.0000 0.1678,0.0420 0.1678 0.1678v 0.4616 l -2.8744,-0.0420 l -2.9164,0.0420 v -0.4616 c 0.0210,-0.0629 0.0420,-0.1678 0.1678 -0.1678h 1.2589 c 0.7973,-0.0000 0.7973,-0.3567 0.7973 -0.9651v -7.2175 c 0.0000,-0.7134 0.0000,-1.2169 -0.4616 -1.2169ZM 181.1515,219.2843 ZM 183.3335,217.2911 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 185.7464,219.2843 ZM 186.9633,209.9897 c 0.0000,-1.1959 1.1540,-2.8325 3.3570 -2.8325c 1.6156,-0.0000 3.5039,0.6085 3.5039 3.0213c 0.0000,1.5946 -0.8183,2.3919 -1.9512 3.4829l -1.9932,1.9303 c -0.1049,0.1049 -1.5106,1.4897 -1.5106 2.4758h 3.5668 c 0.7134,-0.0000 1.0910,-0.3567 1.3848 -1.5106l 0.5245,0.0839 l -0.4196,2.6436 h -6.4832 c 0.0000,-1.1749 0.1888,-2.0771 2.1401 -4.0703l 1.4687,-1.4477 c 1.1749,-1.1959 1.6575,-2.2240 1.6575 -3.5039c 0.0000,-1.9093 -1.3008,-2.4548 -2.0142 -2.4548c -1.4477,-0.0000 -1.8463,0.7553 -1.8463 1.2589c 0.0000,0.1678 0.0420,0.3357 0.0839 0.4826c 0.0420,0.1469 0.0839,0.2937 0.0839 0.4616c 0.0000,0.5455 -0.4196,0.7553 -0.7553 0.7553c -0.4616,-0.0000 -0.7973,-0.3567 -0.7973 -0.7763Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 185.5576,231.1020 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 171.9617,261.4565 ZM 175.9062,251.4485 c -0.3986,-0.0000 -1.3218,0.3777 -1.7834 0.5875l -0.2518,-0.6504 c 1.8463,-0.8602 2.5597,-1.3008 3.6088 -2.0562h 0.3986 v 10.5535 c 0.0000,0.7553 0.1049,0.9651 0.7973 0.9651h 1.0910 c 0.0629,-0.0000 0.1678,0.0420 0.1678 0.1678v 0.4616 l -2.8744,-0.0420 l -2.9164,0.0420 v -0.4616 c 0.0210,-0.0629 0.0420,-0.1678 0.1678 -0.1678h 1.2589 c 0.7973,-0.0000 0.7973,-0.3567 0.7973 -0.9651v -7.2175 c 0.0000,-0.7134 0.0000,-1.2169 -0.4616 -1.2169ZM 181.1515,261.4565 ZM 183.3335,259.4633 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 185.7464,261.4565 ZM 189.6908,251.4485 c -0.3986,-0.0000 -1.3218,0.3777 -1.7834 0.5875l -0.2518,-0.6504 c 1.8463,-0.8602 2.5597,-1.3008 3.6088 -2.0562h 0.3986 v 10.5535 c 0.0000,0.7553 0.1049,0.9651 0.7973 0.9651h 1.0910 c 0.0629,-0.0000 0.1678,0.0420 0.1678 0.1678v 0.4616 l -2.8744,-0.0420 l -2.9164,0.0420 v -0.4616 c 0.0210,-0.0629 0.0420,-0.1678 0.1678 -0.1678h 1.2589 c 0.7973,-0.0000 0.7973,-0.3567 0.7973 -0.9651v -7.2175 c 0.0000,-0.7134 0.0000,-1.2169 -0.4616 -1.2169Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 185.5576,273.2741 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 171.9617,303.6287 ZM 175.9062,293.6206 c -0.3986,-0.0000 -1.3218,0.3777 -1.7834 0.5875l -0.2518,-0.6504 c 1.8463,-0.8602 2.5597,-1.3008 3.6088 -2.0562h 0.3986 v 10.5535 c 0.0000,0.7553 0.1049,0.9651 0.7973 0.9651h 1.0910 c 0.0629,-0.0000 0.1678,0.0420 0.1678 0.1678v 0.4616 l -2.8744,-0.0420 l -2.9164,0.0420 v -0.4616 c 0.0210,-0.0629 0.0420,-0.1678 0.1678 -0.1678h 1.2589 c 0.7973,-0.0000 0.7973,-0.3567 0.7973 -0.9651v -7.2175 c 0.0000,-0.7134 0.0000,-1.2169 -0.4616 -1.2169ZM 181.1515,303.6287 ZM 183.3335,301.6355 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 185.7464,303.6287 ZM 190.3413,292.2359 c -0.9022,-0.0000 -2.2240,0.8812 -2.2240 5.7698c 0.0000,1.7205 0.3147,5.1824 2.1611 5.1824c 0.3567,-0.0000 1.3638,-0.2308 1.8044 -1.8673c 0.2728,-1.0071 0.4196,-2.2660 0.4196 -4.0913c 0.0000,-2.6646 -0.6714,-4.1543 -1.2799 -4.6788c -0.2308,-0.2098 -0.5455,-0.3147 -0.8812 -0.3147ZM 190.3413,292.2359 ZM 190.2573,303.8804 c -2.2450,-0.0000 -3.7556,-2.8744 -3.7556 -6.0845c 0.0000,-3.9235 1.8673,-6.2944 3.8396 -6.2944c 0.9022,-0.0000 1.8044,0.5665 2.4128 1.3848c 0.8812,1.1749 1.3428,2.7485 1.3428 4.7208c 0.0000,4.6578 -2.3079,6.2734 -3.8396 6.2734Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 185.5576,315.4463 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 108.7035,92.7678 ZM 113.2984,81.3750 c -0.9022,-0.0000 -2.2240,0.8812 -2.2240 5.7698c 0.0000,1.7205 0.3147,5.1824 2.1611 5.1824c 0.3567,-0.0000 1.3638,-0.2308 1.8044 -1.8673c 0.2728,-1.0071 0.4196,-2.2660 0.4196 -4.0913c 0.0000,-2.6646 -0.6714,-4.1543 -1.2799 -4.6788c -0.2308,-0.2098 -0.5455,-0.3147 -0.8812 -0.3147ZM 113.2984,81.3750 ZM 113.2144,93.0196 c -2.2450,-0.0000 -3.7556,-2.8744 -3.7556 -6.0845c 0.0000,-3.9235 1.8673,-6.2944 3.8396 -6.2944c 0.9022,-0.0000 1.8044,0.5665 2.4128 1.3848c 0.8812,1.1749 1.3428,2.7485 1.3428 4.7208c 0.0000,4.6578 -2.3079,6.2734 -3.8396 6.2734ZM 117.8932,92.7678 ZM 120.0753,90.7746 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 122.4881,92.7678 ZM 128.9713,89.2220 c 0.0000,-2.1611 -1.1749,-3.2311 -2.4758 -3.2311c -0.9651,-0.0000 -1.6995,0.1469 -2.5177 0.4826l 0.6714,-5.7279 c 0.6924,0.0629 1.4057,0.0839 2.1401 0.0839c 1.0491,-0.0000 2.1401,-0.0629 3.2731 -0.1888l 0.1259,0.0629 l -0.3147,1.3638 c -0.8183,0.0839 -1.4897,0.1049 -2.0771 0.1049c -0.9442,-0.0000 -1.6575,-0.0839 -2.3919 -0.1678l -0.3986,3.3150 c 0.4406,-0.1678 1.1959,-0.3147 2.0142 -0.3147c 2.2240,-0.0000 3.4619,1.9303 3.4619 3.8605c 0.0000,2.3499 -1.6365,4.1543 -4.0074 4.1543c -1.1959,-0.0000 -2.9374,-0.6714 -2.9374 -1.4897c 0.0000,-0.3986 0.3357,-0.6714 0.7134 -0.6714c 0.4196,-0.0000 0.6924,0.3147 0.9442 0.6504c 0.3147,0.3777 0.6504,0.7973 1.3218 0.7973c 1.3428,-0.0000 2.4548,-1.2589 2.4548 -3.0842Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 122.2993,104.5855 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 108.7035,134.9400 ZM 113.2984,123.5472 c -0.9022,-0.0000 -2.2240,0.8812 -2.2240 5.7698c 0.0000,1.7205 0.3147,5.1824 2.1611 5.1824c 0.3567,-0.0000 1.3638,-0.2308 1.8044 -1.8673c 0.2728,-1.0071 0.4196,-2.2660 0.4196 -4.0913c 0.0000,-2.6646 -0.6714,-4.1543 -1.2799 -4.6788c -0.2308,-0.2098 -0.5455,-0.3147 -0.8812 -0.3147ZM 113.2984,123.5472 ZM 113.2144,135.1918 c -2.2450,-0.0000 -3.7556,-2.8744 -3.7556 -6.0845c 0.0000,-3.9235 1.8673,-6.2944 3.8396 -6.2944c 0.9022,-0.0000 1.8044,0.5665 2.4128 1.3848c 0.8812,1.1749 1.3428,2.7485 1.3428 4.7208c 0.0000,4.6578 -2.3079,6.2734 -3.8396 6.2734ZM 117.8932,134.9400 ZM 120.0753,132.9468 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 122.4881,134.9400 ZM 127.9013,127.4917 c 0.0000,-0.1469 0.0210,-0.3147 0.2098 -0.4196c 0.2308,-0.1678 0.6085,-0.3567 0.9232 -0.3567c 0.2728,-0.0000 0.2937,0.2308 0.2937 0.6504v 3.3780 h 1.6995 l -0.1259,0.9861 h -1.5736 v 1.7414 c 0.0000,0.5875 0.0839,0.8812 0.6924 0.8812h 0.5665 c 0.1259,-0.0000 0.1469,0.1049 0.1469 0.1469v 0.4616 c 0.0000,-0.0000 -1.3428,-0.0420 -2.2240 -0.0420c -0.7973,-0.0000 -2.0352,0.0420 -2.0352 0.0420v -0.4616 c 0.0000,-0.0420 0.0210,-0.1469 0.1469 -0.1469h 0.5665 c 0.6504,-0.0000 0.7134,-0.2728 0.7134 -0.8812v -1.7414 h -4.1123 c -0.0839,-0.0000 -0.1259,-0.0420 -0.1888 -0.1259l -0.1678,-0.2308 l -0.2518,-0.4406 c -0.0210,-0.0000 -0.0210,-0.0210 -0.0210 -0.0420c 0.0000,-0.0210 0.0210,-0.0420 0.0420 -0.0629c 1.3638,-1.5106 3.7766,-6.1894 4.5319 -7.9099c 0.0210,-0.0839 0.0629,-0.1049 0.1469 -0.1049c 0.0210,-0.0000 0.4826,0.1888 0.7343 0.2308c -0.9442,2.5387 -2.4968,5.2663 -4.0284 7.7001h 3.3150 v -3.2521 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 122.2993,146.7576 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 108.7035,177.1122 ZM 113.2984,165.7194 c -0.9022,-0.0000 -2.2240,0.8812 -2.2240 5.7698c 0.0000,1.7205 0.3147,5.1824 2.1611 5.1824c 0.3567,-0.0000 1.3638,-0.2308 1.8044 -1.8673c 0.2728,-1.0071 0.4196,-2.2660 0.4196 -4.0913c 0.0000,-2.6646 -0.6714,-4.1543 -1.2799 -4.6788c -0.2308,-0.2098 -0.5455,-0.3147 -0.8812 -0.3147ZM 113.2984,165.7194 ZM 113.2144,177.3639 c -2.2450,-0.0000 -3.7556,-2.8744 -3.7556 -6.0845c 0.0000,-3.9235 1.8673,-6.2944 3.8396 -6.2944c 0.9022,-0.0000 1.8044,0.5665 2.4128 1.3848c 0.8812,1.1749 1.3428,2.7485 1.3428 4.7208c 0.0000,4.6578 -2.3079,6.2734 -3.8396 6.2734ZM 117.8932,177.1122 ZM 120.0753,175.1189 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 122.4881,177.1122 ZM 127.0201,165.6355 c -0.5245,-0.0000 -2.0562,0.2937 -2.0562 1.5736c 0.0000,0.3777 -0.1469,1.0281 -0.7134 1.0281c -0.5455,-0.0000 -0.5875,-0.6085 -0.5875 -0.6714c 0.0000,-0.6504 0.8602,-2.5807 3.7766 -2.5807c 2.0352,-0.0000 2.6436,1.2799 2.6436 2.1191c 0.0000,0.5245 -0.1678,1.5736 -2.0562 2.7695c 1.1749,0.1888 2.7276,1.0491 2.7276 3.2311c 0.0000,2.7695 -2.0981,4.2592 -4.4690 4.2592c -1.1959,-0.0000 -2.8744,-0.5245 -2.8744 -1.3218c 0.0000,-0.3147 0.3147,-0.6714 0.7343 -0.6714c 0.3986,-0.0000 0.5875,0.2098 0.7763 0.4826c 0.2308,0.3567 0.6085,0.8602 1.6156 0.8602c 0.6924,-0.0000 2.6646,-0.6924 2.6646 -3.3360c 0.0000,-2.2450 -1.5736,-2.6017 -2.7066 -2.6017c -0.1888,-0.0000 -0.4196,0.0420 -0.6504 0.0839l -0.0839,-0.6294 c 1.6156,-0.2728 2.9583,-1.8463 2.9583 -2.8115c 0.0000,-1.1959 -0.8392,-1.7834 -1.6995 -1.7834Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 122.2993,188.9298 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 108.7035,219.2843 ZM 113.2984,207.8915 c -0.9022,-0.0000 -2.2240,0.8812 -2.2240 5.7698c 0.0000,1.7205 0.3147,5.1824 2.1611 5.1824c 0.3567,-0.0000 1.3638,-0.2308 1.8044 -1.8673c 0.2728,-1.0071 0.4196,-2.2660 0.4196 -4.0913c 0.0000,-2.6646 -0.6714,-4.1543 -1.2799 -4.6788c -0.2308,-0.2098 -0.5455,-0.3147 -0.8812 -0.3147ZM 113.2984,207.8915 ZM 113.2144,219.5361 c -2.2450,-0.0000 -3.7556,-2.8744 -3.7556 -6.0845c 0.0000,-3.9235 1.8673,-6.2944 3.8396 -6.2944c 0.9022,-0.0000 1.8044,0.5665 2.4128 1.3848c 0.8812,1.1749 1.3428,2.7485 1.3428 4.7208c 0.0000,4.6578 -2.3079,6.2734 -3.8396 6.2734ZM 117.8932,219.2843 ZM 120.0753,217.2911 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 122.4881,219.2843 ZM 123.7050,209.9897 c 0.0000,-1.1959 1.1540,-2.8325 3.3570 -2.8325c 1.6156,-0.0000 3.5039,0.6085 3.5039 3.0213c 0.0000,1.5946 -0.8183,2.3919 -1.9512 3.4829l -1.9932,1.9303 c -0.1049,0.1049 -1.5106,1.4897 -1.5106 2.4758h 3.5668 c 0.7134,-0.0000 1.0910,-0.3567 1.3848 -1.5106l 0.5245,0.0839 l -0.4196,2.6436 h -6.4832 c 0.0000,-1.1749 0.1888,-2.0771 2.1401 -4.0703l 1.4687,-1.4477 c 1.1749,-1.1959 1.6575,-2.2240 1.6575 -3.5039c 0.0000,-1.9093 -1.3008,-2.4548 -2.0142 -2.4548c -1.4477,-0.0000 -1.8463,0.7553 -1.8463 1.2589c 0.0000,0.1678 0.0420,0.3357 0.0839 0.4826c 0.0420,0.1469 0.0839,0.2937 0.0839 0.4616c 0.0000,0.5455 -0.4196,0.7553 -0.7553 0.7553c -0.4616,-0.0000 -0.7973,-0.3567 -0.7973 -0.7763Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 122.2993,231.1020 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 108.7035,261.4565 ZM 113.2984,250.0637 c -0.9022,-0.0000 -2.2240,0.8812 -2.2240 5.7698c 0.0000,1.7205 0.3147,5.1824 2.1611 5.1824c 0.3567,-0.0000 1.3638,-0.2308 1.8044 -1.8673c 0.2728,-1.0071 0.4196,-2.2660 0.4196 -4.0913c 0.0000,-2.6646 -0.6714,-4.1543 -1.2799 -4.6788c -0.2308,-0.2098 -0.5455,-0.3147 -0.8812 -0.3147ZM 113.2984,250.0637 ZM 113.2144,261.7083 c -2.2450,-0.0000 -3.7556,-2.8744 -3.7556 -6.0845c 0.0000,-3.9235 1.8673,-6.2944 3.8396 -6.2944c 0.9022,-0.0000 1.8044,0.5665 2.4128 1.3848c 0.8812,1.1749 1.3428,2.7485 1.3428 4.7208c 0.0000,4.6578 -2.3079,6.2734 -3.8396 6.2734ZM 117.8932,261.4565 ZM 120.0753,259.4633 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 122.4881,261.4565 ZM 126.4326,251.4485 c -0.3986,-0.0000 -1.3218,0.3777 -1.7834 0.5875l -0.2518,-0.6504 c 1.8463,-0.8602 2.5597,-1.3008 3.6088 -2.0562h 0.3986 v 10.5535 c 0.0000,0.7553 0.1049,0.9651 0.7973 0.9651h 1.0910 c 0.0629,-0.0000 0.1678,0.0420 0.1678 0.1678v 0.4616 l -2.8744,-0.0420 l -2.9164,0.0420 v -0.4616 c 0.0210,-0.0629 0.0420,-0.1678 0.1678 -0.1678h 1.2589 c 0.7973,-0.0000 0.7973,-0.3567 0.7973 -0.9651v -7.2175 c 0.0000,-0.7134 0.0000,-1.2169 -0.4616 -1.2169Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 122.2993,273.2741 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 108.7035,303.6287 ZM 113.2984,292.2359 c -0.9022,-0.0000 -2.2240,0.8812 -2.2240 5.7698c 0.0000,1.7205 0.3147,5.1824 2.1611 5.1824c 0.3567,-0.0000 1.3638,-0.2308 1.8044 -1.8673c 0.2728,-1.0071 0.4196,-2.2660 0.4196 -4.0913c 0.0000,-2.6646 -0.6714,-4.1543 -1.2799 -4.6788c -0.2308,-0.2098 -0.5455,-0.3147 -0.8812 -0.3147ZM 113.2984,292.2359 ZM 113.2144,303.8804 c -2.2450,-0.0000 -3.7556,-2.8744 -3.7556 -6.0845c 0.0000,-3.9235 1.8673,-6.2944 3.8396 -6.2944c 0.9022,-0.0000 1.8044,0.5665 2.4128 1.3848c 0.8812,1.1749 1.3428,2.7485 1.3428 4.7208c 0.0000,4.6578 -2.3079,6.2734 -3.8396 6.2734ZM 117.8932,303.6287 ZM 120.0753,301.6355 c 0.8392,-0.0000 1.3848,0.8183 1.3848 2.0771c 0.0000,1.4687 -1.0491,2.1611 -2.3079 2.3919l -0.1049,-0.5245 c 1.0910,-0.2728 1.5946,-0.9022 1.5946 -1.3428c 0.0000,-0.4826 -0.3567,-0.5665 -0.7553 -0.6085c -0.3777,-0.0629 -0.9232,-0.2308 -0.9232 -0.9232c 0.0000,-0.5875 0.4616,-1.0700 1.1120 -1.0700ZM 122.4881,303.6287 ZM 127.0830,292.2359 c -0.9022,-0.0000 -2.2240,0.8812 -2.2240 5.7698c 0.0000,1.7205 0.3147,5.1824 2.1611 5.1824c 0.3567,-0.0000 1.3638,-0.2308 1.8044 -1.8673c 0.2728,-1.0071 0.4196,-2.2660 0.4196 -4.0913c 0.0000,-2.6646 -0.6714,-4.1543 -1.2799 -4.6788c -0.2308,-0.2098 -0.5455,-0.3147 -0.8812 -0.3147ZM 127.0830,292.2359 ZM 126.9991,303.8804 c -2.2450,-0.0000 -3.7556,-2.8744 -3.7556 -6.0845c 0.0000,-3.9235 1.8673,-6.2944 3.8396 -6.2944c 0.9022,-0.0000 1.8044,0.5665 2.4128 1.3848c 0.8812,1.1749 1.3428,2.7485 1.3428 4.7208c 0.0000,4.6578 -2.3079,6.2734 -3.8396 6.2734Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 122.2993,315.4463 c 0.0000,-1.1646 -0.9441,-2.1086 -2.1086 -2.1086c -1.1646,-0.0000 -2.1086,0.9441 -2.1086 2.1086c -0.0000,1.1646 0.9441,2.1086 2.1086 2.1086c 1.1646,0.0000 2.1086,-0.9441 2.1086 -2.1086Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="1.9441401258783617" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 151.8198,146.7576 v 168.6887 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(44,160,44)" stroke-width="1.9441401258783617" fill="rgb(44,160,44)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 160.2542,315.4463 c 0.0000,-4.6582 -3.7762,-8.4344 -8.4344 -8.4344c -4.6582,-0.0000 -8.4344,3.7762 -8.4344 8.4344c -0.0000,4.6582 3.7762,8.4344 8.4344 8.4344c 4.6582,0.0000 8.4344,-3.7762 8.4344 -8.4344Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(44,160,44)" stroke-width="1.9441401258783617" fill="rgb(44,160,44)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 160.2542,146.7576 c 0.0000,-4.6582 -3.7762,-8.4344 -8.4344 -8.4344c -4.6582,-0.0000 -8.4344,3.7762 -8.4344 8.4344c -0.0000,4.6582 3.7762,8.4344 8.4344 8.4344c 4.6582,0.0000 8.4344,-3.7762 8.4344 -8.4344Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="7.776560503513447" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.1907,315.4463 l 189.7748,-126.5165 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(188,189,34)" stroke-width="1.9441401258783617" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.3999,197.3642 l -0.0000,-16.8689 h -16.8689 l -0.0000,16.8689 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(188,189,34)" stroke-width="1.9441401258783617" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 128.6251,323.8808 l -0.0000,-16.8689 h -16.8689 l -0.0000,16.8689 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="3.8882802517567234" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.1907,273.2741 h 63.2583 l 63.2583,-168.6887 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(227,119,194)" stroke-width="1.9441401258783617" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.1416,109.4551 l -8.4344,-14.6089 l -8.4344,14.6089 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(227,119,194)" stroke-width="1.9441401258783617" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 191.8834,278.1438 l -8.4344,-14.6089 l -8.4344,14.6089 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(227,119,194)" stroke-width="1.9441401258783617" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 128.6251,278.1438 l -8.4344,-14.6089 l -8.4344,14.6089 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(31,119,180)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 64.3807,315.4463 ZM 35.6190,299.0548 c 0.0000,-5.3327 1.9670,-6.9063 1.9670 -9.5290c 3.1472,-0.3060 4.8956,-0.5682 6.7315 -0.9616l 0.2623,1.3113 c -3.7591,1.1365 -7.3434,3.4532 -7.3434 9.7912c -0.0000,5.9010 5.2016,10.5780 12.8510 10.5780c 5.7698,0.0000 13.2444,-4.1962 13.2444 -11.9768c 0.0000,-2.3604 -0.7868,-4.9393 -2.1855 -6.4255l -6.6878,-0.0000 c -1.3550,-0.0000 -1.9233,0.6557 -1.9233 2.4041l -0.0000,1.1365 c -0.0000,0.1748 -0.1311,0.3497 -0.3497 0.3497l -1.1365,-0.0000 l -0.0874,-0.0874 c 0.0000,-0.0000 0.0874,-3.8028 0.0874 -5.5076c 0.0000,-1.5299 -0.0874,-4.0651 -0.0874 -4.0651l 0.0874,-0.0874 l 1.1365,0.0000 c 0.2186,0.0000 0.3497,0.1311 0.3497 0.3497l -0.0000,0.0437 c -0.0000,1.5299 0.6994,1.9233 1.9233 1.9233l 5.0705,0.0000 c 0.4808,0.0000 0.8305,-0.2186 1.2239 -0.6994c 2.5352,2.9723 4.1525,6.5129 4.1525 11.6708c -0.0000,8.7859 -6.3818,14.7742 -13.9437 14.7742c -9.6164,-0.0000 -15.3425,-7.4745 -15.3425 -14.9928ZM 64.3807,285.1547 ZM 61.2336,281.0022 l -21.8991,-0.0000 c -2.4915,-0.0000 -3.1909,0.4371 -3.1909 1.3113l 0.1748,1.3987 c -0.0000,0.1311 -0.0874,0.2623 -0.2186 0.2623l -1.0928,0.0874 c 0.0000,-0.6994 -0.2623,-2.3167 -0.3934 -3.0598c -0.1748,-0.7868 -0.3497,-1.3987 -0.7431 -2.2730l 0.0000,-0.9616 l 27.3630,0.0000 c 1.2676,0.0000 1.9233,-0.4808 1.9233 -1.8796l 0.0000,-1.0491 c 0.0000,-0.1748 0.1311,-0.3497 0.3497 -0.3497l 0.8305,0.0000 l 0.0874,0.0874 c 0.0000,-0.0000 -0.0874,3.1909 -0.0874 4.8956c -0.0000,1.5299 0.0874,4.7208 0.0874 4.7208l -0.0874,0.0437 l -0.8305,-0.0000 c -0.2186,-0.0000 -0.3497,-0.0874 -0.3497 -0.3060l 0.0000,-1.0491 c 0.0000,-1.4425 -0.6557,-1.8796 -1.9233 -1.8796ZM 64.3807,273.7899 ZM 39.4219,270.3805 c -1.1365,-0.0000 -2.0981,-0.9179 -2.0981 -2.0544c 0.0000,-1.1802 0.9616,-2.0981 2.0981 -2.0981c 1.1802,0.0000 2.0981,0.9179 2.0981 2.0981c -0.0000,1.1365 -0.9179,2.0544 -2.0981 2.0544ZM 39.4219,270.3805 ZM 61.2336,266.2280 c 1.2676,0.0000 1.9233,-0.4808 1.9233 -1.8796l 0.0000,-0.8305 c 0.0000,-0.2186 0.1311,-0.3934 0.3497 -0.3934l 0.8305,0.0000 l 0.0874,0.0874 c 0.0000,-0.0000 -0.0874,3.0160 -0.0874 4.7208c -0.0000,1.5299 0.0874,4.5022 0.0874 4.5022l -0.0874,0.0874 l -0.8305,-0.0000 c -0.2186,-0.0000 -0.3497,-0.1311 -0.3497 -0.3497l 0.0000,-0.8305 c 0.0000,-1.4425 -0.6557,-1.8796 -1.9233 -1.8796l -10.8840,-0.0000 c -2.3167,-0.0000 -2.6664,0.3934 -2.6664 1.0053c -0.0000,0.5682 0.0437,1.0928 0.2186 1.8359l -1.2239,0.2186 c -0.4808,-2.7975 -0.6557,-3.2783 -1.2676 -4.5459c -0.1748,-0.4808 -0.3497,-0.7868 -0.3497 -1.0928l 0.0000,-0.6557 l 16.1730,0.0000 ZM 64.3807,262.2503 ZM 61.2336,246.3396 l -9.5727,-0.0000 c -3.0598,-0.0000 -4.5022,0.5245 -4.5022 2.8412c -0.0000,1.9233 0.7431,3.5843 3.3657 5.8135l 10.7091,0.0000 c 1.2676,0.0000 1.9233,-0.4371 1.9233 -1.8796l 0.0000,-0.6120 c 0.0000,-0.2186 0.1311,-0.3497 0.3497 -0.3497l 0.8305,0.0000 l 0.0874,0.0874 c 0.0000,-0.0000 -0.0874,2.7538 -0.0874 4.4585c -0.0000,1.5736 0.0874,4.5459 0.0874 4.5459l -0.0874,0.0874 l -0.8305,-0.0000 c -0.2186,-0.0000 -0.3497,-0.1311 -0.3497 -0.3497l 0.0000,-0.8305 c 0.0000,-1.4862 -0.6557,-1.8796 -1.9233 -1.8796l -10.8840,-0.0000 c -2.3604,-0.0000 -2.6664,0.3497 -2.6664 0.9616c -0.0000,0.5682 0.0437,1.0928 0.2186 1.8359l -1.2239,0.2186 c -0.3060,-1.8359 -0.5245,-3.1472 -1.2676 -4.5022c -0.2186,-0.4808 -0.3497,-0.8305 -0.3497 -1.1365l 0.0000,-0.6557 l 3.8903,0.1311 l 0.0000,-0.1311 c -3.2783,-2.7975 -3.8903,-4.8956 -3.8903 -7.1249c 0.0000,-3.9340 3.0160,-4.7645 6.9063 -4.7645l 9.2667,0.0000 c 1.2676,0.0000 1.9233,-0.4808 1.9233 -1.8796l 0.0000,-0.8305 c 0.0000,-0.2186 0.1311,-0.3934 0.3497 -0.3934l 0.8305,0.0000 l 0.0874,0.0874 c 0.0000,-0.0000 -0.0874,3.0160 -0.0874 4.7208c -0.0000,1.5299 0.0874,4.2837 0.0874 4.2837l -0.0874,0.0874 l -0.8305,-0.0000 c -0.2186,-0.0000 -0.3497,-0.1311 -0.3497 -0.3497l 0.0000,-0.6120 c 0.0000,-1.4425 -0.6557,-1.8796 -1.9233 -1.8796ZM 64.3807,239.5207 ZM 52.2729,234.5376 l 0.0000,-8.0428 c 0.0000,-0.4371 -0.2186,-0.6120 -0.6120 -0.6120c -4.0651,-0.0000 -5.1142,2.0544 -5.1142 3.6280c -0.0000,1.0053 0.3934,4.2837 5.7261 5.0267ZM 52.2729,234.5376 ZM 60.3156,222.9980 l 0.6994,-0.8742 c 2.2730,1.6610 3.8903,4.2399 3.8903 7.3871c -0.0000,5.9884 -4.4585,8.5236 -9.2230 8.5236c -6.6440,-0.0000 -10.6217,-4.3711 -10.6217 -8.5236c 0.0000,-5.7698 4.5022,-7.1249 8.1739 -7.1249c 0.4808,0.0000 0.7431,0.3060 0.7431 0.7868l -0.0000,11.4959 c 0.2623,0.0437 0.5245,0.0437 0.8742 0.0437c 4.4585,0.0000 7.9117,-3.1035 7.9117 -6.2506c 0.0000,-2.4041 -0.7868,-3.9340 -2.4478 -5.4638ZM 64.3807,209.8848 ZM 64.9053,194.3674 c -0.0000,9.3978 -7.2560,13.9000 -14.2934 13.9000c -8.6110,-0.0000 -14.9928,-6.6878 -14.9928 -13.9437c 0.0000,-5.3764 1.8359,-7.0811 1.9670 -9.5727c 2.4041,-0.1311 4.5022,-0.5245 6.7752 -0.9616l 0.1748,1.3113 c -3.7591,1.1365 -7.2997,3.6717 -7.2997 9.7038c -0.0000,3.4532 3.6717,9.6601 12.5450 9.6601c 6.3818,0.0000 13.3318,-3.2783 13.3318 -10.0535c 0.0000,-4.0651 -1.4425,-7.0374 -4.8519 -10.1409l 0.6557,-1.0053 c 3.8903,2.9723 5.9884,6.8626 5.9884 11.1025ZM 64.3807,181.7350 ZM 33.8706,174.6102 l 14.8180,0.0000 c -2.9286,-2.9286 -3.6280,-5.5076 -3.6280 -7.2123c 0.0000,-3.1472 2.4041,-4.7208 6.9063 -4.7208l 9.2667,0.0000 c 1.2676,0.0000 1.9233,-0.4371 1.9233 -1.8796l 0.0000,-0.8305 c 0.0000,-0.1748 0.1311,-0.3497 0.3497 -0.3497l 0.8305,0.0000 l 0.0874,0.0874 c 0.0000,-0.0000 -0.0874,2.9723 -0.0874 4.7208c -0.0000,1.5299 0.0874,4.5022 0.0874 4.5022l -0.0874,0.0874 l -0.8305,-0.0000 c -0.2186,-0.0000 -0.3497,-0.1311 -0.3497 -0.3497l 0.0000,-0.8305 c 0.0000,-1.4862 -0.6557,-1.8796 -1.9233 -1.8796l -9.7475,-0.0000 c -3.5406,-0.0000 -4.3711,0.9616 -4.3711 3.4094c -0.0000,1.2676 1.1365,3.1472 3.1909 5.2453l 10.9277,0.0000 c 1.2676,0.0000 1.9233,-0.4371 1.9233 -1.8796l 0.0000,-0.8305 c 0.0000,-0.1748 0.1311,-0.3497 0.3497 -0.3497l 0.8305,0.0000 l 0.0874,0.0874 c 0.0000,-0.0000 -0.0874,2.9723 -0.0874 4.6771c -0.0000,1.5736 0.0874,4.5022 0.0874 4.5022l -0.0874,0.0874 l -0.8305,-0.0000 c -0.2186,-0.0000 -0.3497,-0.0874 -0.3497 -0.3060l 0.0000,-0.8305 c 0.0000,-1.4862 -0.6557,-1.8796 -1.9233 -1.8796l -21.8991,-0.0000 c -2.4915,-0.0000 -3.1909,0.3934 -3.1909 1.2676l 0.1748,1.4425 c -0.0000,0.1311 -0.0874,0.2186 -0.2186 0.2186l -1.0928,0.0874 c 0.0000,-0.6994 -0.2623,-2.2730 -0.3934 -3.0160c -0.1748,-0.7868 -0.3497,-1.4425 -0.7431 -2.3167l 0.0000,-0.9616 ZM 64.3807,159.0928 ZM 53.6716,146.3730 l 0.8742,3.4532 c 1.1802,3.8465 3.1909,4.4148 5.1579 4.4148c 1.3550,0.0000 3.4094,-0.6557 3.4094 -3.4094c 0.0000,-1.3113 -1.2676,-3.3220 -2.2293 -4.4585l -7.2123,-0.0000 ZM 53.6716,146.3730 ZM 64.9053,143.5755 c -0.0000,1.6610 -1.4862,2.5789 -2.5352 2.7538l 0.6994,1.0053 c 1.3987,2.0107 1.8359,2.7538 1.8359 4.7645c -0.0000,3.0598 -1.7484,5.2890 -5.0267 5.2890c -3.3220,-0.0000 -5.5950,-2.8412 -6.6440 -6.9937l -1.0053,-4.0214 c -4.9393,-0.0000 -5.8572,2.2730 -5.8572 3.7591c -0.0000,1.6610 0.7431,3.5843 2.0981 3.5843c 0.4808,0.0000 0.7431,-0.0874 0.8742 -0.1311c 0.1748,-0.0874 0.4808,-0.1311 0.7868 -0.1311c 0.5682,0.0000 1.4425,0.4371 1.4425 1.7047c -0.0000,1.0491 -0.6994,1.7484 -1.7484 1.7484c -2.5352,-0.0000 -4.7645,-4.1088 -4.7645 -6.9063c 0.0000,-3.1909 1.3113,-6.8626 7.5183 -6.8626l 6.4255,0.0000 c 2.6664,0.0000 3.8028,-0.0437 3.8028 -1.0491c 0.0000,-0.9616 -1.2239,-1.2239 -2.1855 -1.2676l 0.2186,-1.0928 c 3.1909,0.2623 4.0651,1.6173 4.0651 3.8465ZM 64.3807,139.3793 ZM 61.2336,135.4890 l -10.8840,-0.0000 c -2.1855,-0.0000 -2.6664,0.3060 -2.6664 0.9616c -0.0000,0.5682 0.0437,1.0928 0.2186 1.8359l -1.2239,0.2186 c -0.4808,-2.7538 -0.6120,-3.2346 -1.2676 -4.5459c -0.2186,-0.4371 -0.3497,-0.7868 -0.3497 -1.0928l 0.0000,-0.6557 l 3.9340,0.1311 l 0.0000,-0.1311 c -1.7047,-1.1365 -3.9340,-3.0598 -3.9340 -5.1142c 0.0000,-1.7921 0.8742,-2.4478 2.0107 -2.4478c 1.1365,0.0000 1.8359,0.7431 1.8359 1.8796c -0.0000,0.8742 -0.3497,1.3550 -0.7868 1.7921c -0.2623,0.2623 -0.3934,0.5682 -0.3934 0.8742c -0.0000,0.4808 0.7868,1.4425 2.2730 2.4915c 0.3934,0.3060 0.9616,0.5245 1.5299 0.5245l 9.7038,0.0000 c 1.2676,0.0000 1.9233,-0.4371 1.9233 -1.8796l 0.0000,-1.2676 c 0.0000,-0.2186 0.1311,-0.3934 0.3497 -0.3934l 0.8305,0.0000 l 0.0874,0.0874 c 0.0000,-0.0000 -0.0874,3.4532 -0.0874 5.1579c -0.0000,1.5736 0.0874,4.5459 0.0874 4.5459l -0.0874,0.0437 l -0.8305,-0.0000 c -0.2186,-0.0000 -0.3497,-0.0874 -0.3497 -0.3060l 0.0000,-0.8305 c 0.0000,-1.4862 -0.6557,-1.8796 -1.9233 -1.8796ZM 64.3807,124.2116 ZM 47.2898,117.0430 l 11.1900,0.0000 c 2.7101,0.0000 4.0214,-0.2623 4.0214 -1.4425c 0.0000,-1.1365 -0.3497,-2.0107 -1.2239 -3.1472l 0.7431,-0.7868 c 1.9233,1.7047 2.8849,3.4532 2.8849 5.4638c -0.0000,2.0107 -1.2239,3.1909 -4.3274 3.1909l -13.2881,-0.0000 l -0.0000,2.8412 c -0.0000,0.1311 -0.0437,0.1748 -0.1748 0.1748l -1.3550,-0.0000 c -0.1311,-0.0000 -0.1748,-0.0437 -0.1748 -0.1311c 0.0000,-2.9286 -1.7047,-3.6280 -5.0267 -3.6280l -0.8305,-0.0000 l -0.8742,-2.5352 l 6.7315,0.0000 l 0.0000,-4.8082 c 0.0000,-0.2186 0.0874,-0.3497 0.2623 -0.3497l 0.8742,0.0000 c 0.3934,0.0000 0.5682,0.6120 0.5682 1.0491l -0.0000,4.1088 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 529.2301,303.6511 ZM 533.9298,302.5374 c -0.5385,0.9302 -1.1260,1.2606 -1.8603 1.2606c -1.4687,-0.0000 -2.3866,-1.1138 -2.3866 -2.6926c 0.0000,-1.7379 1.0893,-2.8639 2.4111 -2.8639c 1.1749,-0.0000 1.7991,0.5997 1.7991 1.2484c 0.0000,0.3549 -0.2203,0.5385 -0.4773 0.5385c -0.2570,-0.0000 -0.5018,-0.1346 -0.5385 -0.4406c -0.0490,-0.4039 -0.1224,-0.9302 -0.8445 -0.9302c -0.8078,-0.0000 -1.4075,0.8567 -1.4075 2.1785c 0.0000,1.4320 0.7711,2.4233 1.7135 2.4233c 0.5263,-0.0000 0.9914,-0.3427 1.3708 -0.8934ZM 534.1624,303.6511 ZM 535.1170,296.6626 c 0.0000,-0.3182 0.2570,-0.5875 0.5752 -0.5875c 0.3305,-0.0000 0.5875,0.2693 0.5875 0.5875c 0.0000,0.3305 -0.2570,0.5875 -0.5875 0.5875c -0.3182,-0.0000 -0.5752,-0.2570 -0.5752 -0.5875ZM 535.1170,296.6626 ZM 536.2797,302.7699 c 0.0000,0.3549 0.1346,0.5385 0.5263 0.5385h 0.2325 c 0.0612,-0.0000 0.1102,0.0367 0.1102 0.0979v 0.2325 l -0.0245,0.0245 c 0.0000,-0.0000 -0.8445,-0.0245 -1.3218 -0.0245c -0.4284,-0.0000 -1.2606,0.0245 -1.2606 0.0245l -0.0245,-0.0245 v -0.2325 c 0.0000,-0.0612 0.0367,-0.0979 0.0979 -0.0979h 0.2325 c 0.4039,-0.0000 0.5263,-0.1836 0.5263 -0.5385v -3.0475 c 0.0000,-0.6487 -0.1102,-0.7466 -0.2815 -0.7466c -0.1591,-0.0000 -0.3060,0.0122 -0.5140 0.0612l -0.0612,-0.3427 c 0.7833,-0.1346 0.9179,-0.1836 1.2729 -0.3549c 0.1346,-0.0490 0.2203,-0.0979 0.3060 -0.0979h 0.1836 v 4.5284 ZM 537.3935,303.6511 ZM 538.4828,302.7699 v -3.0475 c 0.0000,-0.6120 -0.0857,-0.7466 -0.2693 -0.7466c -0.1591,-0.0000 -0.3060,0.0122 -0.5140 0.0612l -0.0612,-0.3427 c 0.7711,-0.1346 0.9057,-0.1713 1.2729 -0.3549c 0.1224,-0.0612 0.2203,-0.0979 0.3060 -0.0979h 0.1836 l -0.0367,1.1015 h 0.0367 c 0.3182,-0.4773 0.8567,-1.1015 1.4320 -1.1015c 0.5018,-0.0000 0.6854,0.2448 0.6854 0.5630c 0.0000,0.3182 -0.2081,0.5140 -0.5263 0.5140c -0.2448,-0.0000 -0.3794,-0.0979 -0.5018 -0.2203c -0.0734,-0.0734 -0.1591,-0.1102 -0.2448 -0.1102c -0.1346,-0.0000 -0.4039,0.2203 -0.6976 0.6364c -0.0857,0.1102 -0.1469,0.2693 -0.1469 0.4284v 2.7171 c 0.0000,0.3549 0.1224,0.5385 0.5263 0.5385h 0.3549 c 0.0612,-0.0000 0.1102,0.0367 0.1102 0.0979v 0.2325 l -0.0245,0.0245 c 0.0000,-0.0000 -0.9669,-0.0245 -1.4442 -0.0245c -0.4406,-0.0000 -1.2729,0.0245 -1.2729 0.0245l -0.0122,-0.0245 v -0.2325 c 0.0000,-0.0612 0.0245,-0.0979 0.0857 -0.0979h 0.2325 c 0.4161,-0.0000 0.5263,-0.1836 0.5263 -0.5385ZM 541.6404,303.6511 ZM 546.3402,302.5374 c -0.5385,0.9302 -1.1260,1.2606 -1.8603 1.2606c -1.4687,-0.0000 -2.3866,-1.1138 -2.3866 -2.6926c 0.0000,-1.7379 1.0893,-2.8639 2.4111 -2.8639c 1.1749,-0.0000 1.7991,0.5997 1.7991 1.2484c 0.0000,0.3549 -0.2203,0.5385 -0.4773 0.5385c -0.2570,-0.0000 -0.5018,-0.1346 -0.5385 -0.4406c -0.0490,-0.4039 -0.1224,-0.9302 -0.8445 -0.9302c -0.8078,-0.0000 -1.4075,0.8567 -1.4075 2.1785c 0.0000,1.4320 0.7711,2.4233 1.7135 2.4233c 0.5263,-0.0000 0.9914,-0.3427 1.3708 -0.8934ZM 546.5728,303.6511 ZM 547.7355,302.7699 v -6.1317 c 0.0000,-0.6976 -0.1224,-0.8934 -0.3672 -0.8934l -0.3916,0.0490 c -0.0367,-0.0000 -0.0734,-0.0245 -0.0734 -0.0612l -0.0245,-0.3060 c 0.1958,-0.0000 0.6487,-0.0734 0.8567 -0.1102c 0.2203,-0.0490 0.3916,-0.0979 0.6364 -0.2081h 0.2693 v 7.6616 c 0.0000,0.3549 0.1346,0.5385 0.5263 0.5385h 0.2937 c 0.0490,-0.0000 0.0979,0.0367 0.0979 0.0979v 0.2325 l -0.0245,0.0245 c 0.0000,-0.0000 -0.8934,-0.0245 -1.3708 -0.0245c -0.4284,-0.0000 -1.3218,0.0245 -1.3218 0.0245l -0.0122,-0.0245 v -0.2325 c 0.0000,-0.0612 0.0245,-0.0979 0.0857 -0.0979h 0.2937 c 0.4039,-0.0000 0.5263,-0.1836 0.5263 -0.5385ZM 549.7549,303.6511 ZM 551.1501,300.2609 h 2.2520 c 0.1224,-0.0000 0.1713,-0.0612 0.1713 -0.1713c 0.0000,-1.1382 -0.5752,-1.4320 -1.0158 -1.4320c -0.2815,-0.0000 -1.1994,0.1102 -1.4075 1.6033ZM 551.1501,300.2609 ZM 554.3813,302.5129 l 0.2448,0.1958 c -0.4651,0.6364 -1.1872,1.0893 -2.0684 1.0893c -1.6767,-0.0000 -2.3866,-1.2484 -2.3866 -2.5824c 0.0000,-1.8603 1.2239,-2.9741 2.3866 -2.9741c 1.6156,-0.0000 1.9950,1.2606 1.9950 2.2887c 0.0000,0.1346 -0.0857,0.2081 -0.2203 0.2081h -3.2189 c -0.0122,0.0734 -0.0122,0.1469 -0.0122 0.2448c 0.0000,1.2484 0.8690,2.2153 1.7502 2.2153c 0.6731,-0.0000 1.1015,-0.2203 1.5299 -0.6854Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="1.9441401258783617" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 482.8407,303.6511 h 42.1722 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(44,160,44)" stroke-width="1.9441401258783617" fill="rgb(44,160,44)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 512.3612,303.6511 c 0.0000,-4.6582 -3.7762,-8.4344 -8.4344 -8.4344c -4.6582,-0.0000 -8.4344,3.7762 -8.4344 8.4344c -0.0000,4.6582 3.7762,8.4344 8.4344 8.4344c 4.6582,0.0000 8.4344,-3.7762 8.4344 -8.4344Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 529.2301,277.9492 ZM 529.7563,276.2357 l 0.3305,-0.0122 c 0.0367,0.3060 0.1713,0.8934 0.4406 1.1749c 0.1224,0.1346 0.4528,0.3549 0.9057 0.3549c 0.4284,-0.0000 1.0648,-0.3427 1.0648 -0.9424c 0.0000,-0.5263 -0.2937,-0.8812 -1.2606 -1.2973c -0.8934,-0.3916 -1.3585,-0.6487 -1.3585 -1.5666c 0.0000,-0.8200 0.7221,-1.4075 1.6890 -1.4075c 0.6120,-0.0000 1.0648,0.1102 1.4442 0.3060c 0.0734,0.3916 0.1102,0.8078 0.1346 1.2484l -0.3305,0.0122 c -0.2570,-1.0036 -0.9914,-1.1994 -1.2484 -1.1994c -0.4651,-0.0000 -0.9424,0.1836 -0.9424 0.8567c 0.0000,0.4896 0.2325,0.7343 0.9057 0.9791c 0.9914,0.3672 1.7869,0.8078 1.7869 1.7869c 0.0000,1.2117 -1.2851,1.5666 -1.8603 1.5666c -0.4284,-0.0000 -0.7833,-0.0490 -1.1015 -0.1346c -0.0857,-0.0122 -0.1469,-0.0245 -0.2325 -0.0245c -0.0612,-0.0000 -0.1591,0.0122 -0.2815 0.0367c 0.0000,-0.5140 -0.0367,-1.1382 -0.0857 -1.7379ZM 533.7707,277.9492 ZM 537.9075,273.8369 c -0.3305,-0.5508 -0.7466,-0.8812 -1.2606 -0.8812c -0.9791,-0.0000 -1.5054,0.9424 -1.5054 2.2153c 0.0000,1.8481 1.0770,2.3866 1.7869 2.3866c 0.2325,-0.0000 0.6609,-0.0245 0.9791 -0.2693v -3.4514 ZM 537.9075,273.8369 ZM 537.9075,279.8829 v -2.1908 c -0.1836,0.1591 -0.5752,0.4039 -1.2729 0.4039c -1.7624,-0.0000 -2.4233,-1.5421 -2.4233 -2.6803c 0.0000,-1.6156 0.9914,-2.8762 2.4845 -2.8762c 0.5997,-0.0000 1.1260,0.1713 1.5299 0.5263l 0.1836,-0.2937 c 0.0857,-0.1469 0.1713,-0.2325 0.2570 -0.2325c 0.1346,-0.0000 0.1591,0.1346 0.1591 0.3060v 7.0374 c 0.0000,0.3549 0.1224,0.5385 0.5263 0.5385h 0.2325 c 0.0490,-0.0000 0.0979,0.0367 0.0979 0.0979v 0.2325 l -0.0245,0.0245 c 0.0000,-0.0000 -0.8323,-0.0245 -1.3096 -0.0245c -0.4406,-0.0000 -1.3952,0.0245 -1.3952 0.0245l -0.0245,-0.0245 v -0.2325 c 0.0000,-0.0612 0.0367,-0.0979 0.0979 -0.0979h 0.3549 c 0.4161,-0.0000 0.5263,-0.1836 0.5263 -0.5385ZM 539.8046,277.9492 ZM 545.0551,276.5295 c 0.0000,0.6120 0.0612,0.8078 0.3060 0.8078c 0.1469,-0.0000 0.4161,-0.0245 0.6242 -0.0612l 0.0490,0.3427 c -0.7466,0.1346 -1.3463,0.2570 -1.6278 0.4773h -0.2693 l 0.0367,-0.9057 h -0.0367 c -0.6731,0.7343 -1.2239,0.9057 -1.7257 0.9057c -1.2117,-0.0000 -1.5299,-0.8200 -1.5299 -1.6645v -2.7905 c 0.0000,-0.4039 -0.0857,-0.6120 -0.5385 -0.6120c -0.0490,-0.0000 -0.1346,0.0122 -0.2081 0.0122l -0.0367,-0.0122 v -0.3182 l 0.0367,-0.0367 c 0.0000,-0.0000 0.8323,0.0245 1.2239 0.0245c 0.1713,-0.0000 0.4528,-0.0245 0.4528 -0.0245l -0.0122,0.9791 v 2.6069 c 0.0000,1.0893 0.5630,1.2851 0.9302 1.2851c 0.2815,-0.0000 0.5385,-0.1102 0.7955 -0.2937c 0.2937,-0.2203 0.4896,-0.3916 0.6120 -0.5508v -3.0230 c 0.0000,-0.4406 -0.0612,-0.6487 -0.5140 -0.6487c -0.0734,-0.0000 -0.2081,0.0122 -0.2448 0.0122l -0.0245,-0.0245 v -0.3060 l 0.0245,-0.0367 c 0.0000,-0.0000 0.8690,0.0245 1.2117 0.0245c 0.2815,-0.0000 0.4773,-0.0245 0.4773 -0.0245l -0.0122,0.9669 v 2.8884 ZM 546.1322,277.9492 ZM 549.6937,274.9506 l -0.9669,0.2448 c -1.0770,0.3305 -1.2361,0.8934 -1.2361 1.4442c 0.0000,0.3794 0.1836,0.9546 0.9546 0.9546c 0.3672,-0.0000 0.9302,-0.3549 1.2484 -0.6242v -2.0194 ZM 549.6937,274.9506 ZM 550.4770,278.0960 c -0.4651,-0.0000 -0.7221,-0.4161 -0.7711 -0.7099l -0.2815,0.1958 c -0.5630,0.3916 -0.7711,0.5140 -1.3341 0.5140c -0.8567,-0.0000 -1.4809,-0.4896 -1.4809 -1.4075c 0.0000,-0.9302 0.7955,-1.5666 1.9582 -1.8603l 1.1260,-0.2815 c 0.0000,-1.3830 -0.6364,-1.6400 -1.0526 -1.6400c -0.4651,-0.0000 -1.0036,0.2081 -1.0036 0.5875c 0.0000,0.1346 0.0245,0.2081 0.0367 0.2448c 0.0245,0.0490 0.0367,0.1346 0.0367 0.2203c 0.0000,0.1591 -0.1224,0.4039 -0.4773 0.4039c -0.2937,-0.0000 -0.4896,-0.1958 -0.4896 -0.4896c 0.0000,-0.7099 1.1505,-1.3341 1.9338 -1.3341c 0.8934,-0.0000 1.9215,0.3672 1.9215 2.1051v 1.7991 c 0.0000,0.7466 0.0122,1.0648 0.2937 1.0648c 0.2693,-0.0000 0.3427,-0.3427 0.3549 -0.6120l 0.3060,0.0612 c -0.0734,0.8934 -0.4528,1.1382 -1.0770 1.1382ZM 551.6519,277.9492 ZM 552.7412,277.0680 v -3.0475 c 0.0000,-0.6120 -0.0857,-0.7466 -0.2693 -0.7466c -0.1591,-0.0000 -0.3060,0.0122 -0.5140 0.0612l -0.0612,-0.3427 c 0.7711,-0.1346 0.9057,-0.1713 1.2729 -0.3549c 0.1224,-0.0612 0.2203,-0.0979 0.3060 -0.0979h 0.1836 l -0.0367,1.1015 h 0.0367 c 0.3182,-0.4773 0.8567,-1.1015 1.4320 -1.1015c 0.5018,-0.0000 0.6854,0.2448 0.6854 0.5630c 0.0000,0.3182 -0.2081,0.5140 -0.5263 0.5140c -0.2448,-0.0000 -0.3794,-0.0979 -0.5018 -0.2203c -0.0734,-0.0734 -0.1591,-0.1102 -0.2448 -0.1102c -0.1346,-0.0000 -0.4039,0.2203 -0.6976 0.6364c -0.0857,0.1102 -0.1469,0.2693 -0.1469 0.4284v 2.7171 c 0.0000,0.3549 0.1224,0.5385 0.5263 0.5385h 0.3549 c 0.0612,-0.0000 0.1102,0.0367 0.1102 0.0979v 0.2325 l -0.0245,0.0245 c 0.0000,-0.0000 -0.9669,-0.0245 -1.4442 -0.0245c -0.4406,-0.0000 -1.2729,0.0245 -1.2729 0.0245l -0.0122,-0.0245 v -0.2325 c 0.0000,-0.0612 0.0245,-0.0979 0.0857 -0.0979h 0.2325 c 0.4161,-0.0000 0.5263,-0.1836 0.5263 -0.5385ZM 555.8989,277.9492 ZM 557.2941,274.5590 h 2.2520 c 0.1224,-0.0000 0.1713,-0.0612 0.1713 -0.1713c 0.0000,-1.1382 -0.5752,-1.4320 -1.0158 -1.4320c -0.2815,-0.0000 -1.1994,0.1102 -1.4075 1.6033ZM 557.2941,274.5590 ZM 560.5252,276.8110 l 0.2448,0.1958 c -0.4651,0.6364 -1.1872,1.0893 -2.0684 1.0893c -1.6767,-0.0000 -2.3866,-1.2484 -2.3866 -2.5824c 0.0000,-1.8603 1.2239,-2.9741 2.3866 -2.9741c 1.6156,-0.0000 1.9950,1.2606 1.9950 2.2887c 0.0000,0.1346 -0.0857,0.2081 -0.2203 0.2081h -3.2189 c -0.0122,0.0734 -0.0122,0.1469 -0.0122 0.2448c 0.0000,1.2484 0.8690,2.2153 1.7502 2.2153c 0.6731,-0.0000 1.1015,-0.2203 1.5299 -0.6854Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="7.776560503513447" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 482.8407,277.9492 h 42.1722 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(188,189,34)" stroke-width="1.9441401258783617" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 512.3612,286.3836 l -0.0000,-16.8689 h -16.8689 l -0.0000,16.8689 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 529.2301,255.8120 ZM 531.2373,251.0266 v 3.1332 c 0.0000,0.7588 0.0734,1.1260 0.4039 1.1260c 0.3182,-0.0000 0.5630,-0.0979 0.8812 -0.3427l 0.2203,0.2081 c -0.4773,0.5385 -0.9669,0.8078 -1.5299 0.8078c -0.5630,-0.0000 -0.8934,-0.3427 -0.8934 -1.2117v -3.7207 h -0.7955 c -0.0367,-0.0000 -0.0490,-0.0122 -0.0490 -0.0490v -0.3794 c 0.0000,-0.0367 0.0122,-0.0490 0.0367 -0.0490c 0.8200,-0.0000 1.0158,-0.4773 1.0158 -1.4075v -0.2325 l 0.7099,-0.2448 v 1.8848 h 1.3463 c 0.0612,-0.0000 0.0979,0.0245 0.0979 0.0734v 0.2448 c 0.0000,0.1102 -0.1713,0.1591 -0.2937 0.1591h -1.1505 ZM 532.9262,255.8120 ZM 534.0155,254.9308 v -3.0475 c 0.0000,-0.6120 -0.0857,-0.7466 -0.2693 -0.7466c -0.1591,-0.0000 -0.3060,0.0122 -0.5140 0.0612l -0.0612,-0.3427 c 0.7711,-0.1346 0.9057,-0.1713 1.2729 -0.3549c 0.1224,-0.0612 0.2203,-0.0979 0.3060 -0.0979h 0.1836 l -0.0367,1.1015 h 0.0367 c 0.3182,-0.4773 0.8567,-1.1015 1.4320 -1.1015c 0.5018,-0.0000 0.6854,0.2448 0.6854 0.5630c 0.0000,0.3182 -0.2081,0.5140 -0.5263 0.5140c -0.2448,-0.0000 -0.3794,-0.0979 -0.5018 -0.2203c -0.0734,-0.0734 -0.1591,-0.1102 -0.2448 -0.1102c -0.1346,-0.0000 -0.4039,0.2203 -0.6976 0.6364c -0.0857,0.1102 -0.1469,0.2693 -0.1469 0.4284v 2.7171 c 0.0000,0.3549 0.1224,0.5385 0.5263 0.5385h 0.3549 c 0.0612,-0.0000 0.1102,0.0367 0.1102 0.0979v 0.2325 l -0.0245,0.0245 c 0.0000,-0.0000 -0.9669,-0.0245 -1.4442 -0.0245c -0.4406,-0.0000 -1.2729,0.0245 -1.2729 0.0245l -0.0122,-0.0245 v -0.2325 c 0.0000,-0.0612 0.0245,-0.0979 0.0857 -0.0979h 0.2325 c 0.4161,-0.0000 0.5263,-0.1836 0.5263 -0.5385ZM 537.1732,255.8120 ZM 538.1278,248.8236 c 0.0000,-0.3182 0.2570,-0.5875 0.5752 -0.5875c 0.3305,-0.0000 0.5875,0.2693 0.5875 0.5875c 0.0000,0.3305 -0.2570,0.5875 -0.5875 0.5875c -0.3182,-0.0000 -0.5752,-0.2570 -0.5752 -0.5875ZM 538.1278,248.8236 ZM 539.2905,254.9308 c 0.0000,0.3549 0.1346,0.5385 0.5263 0.5385h 0.2325 c 0.0612,-0.0000 0.1102,0.0367 0.1102 0.0979v 0.2325 l -0.0245,0.0245 c 0.0000,-0.0000 -0.8445,-0.0245 -1.3218 -0.0245c -0.4284,-0.0000 -1.2606,0.0245 -1.2606 0.0245l -0.0245,-0.0245 v -0.2325 c 0.0000,-0.0612 0.0367,-0.0979 0.0979 -0.0979h 0.2325 c 0.4039,-0.0000 0.5263,-0.1836 0.5263 -0.5385v -3.0475 c 0.0000,-0.6487 -0.1102,-0.7466 -0.2815 -0.7466c -0.1591,-0.0000 -0.3060,0.0122 -0.5140 0.0612l -0.0612,-0.3427 c 0.7833,-0.1346 0.9179,-0.1836 1.2729 -0.3549c 0.1346,-0.0490 0.2203,-0.0979 0.3060 -0.0979h 0.1836 v 4.5284 ZM 540.4043,255.8120 ZM 543.9658,252.8135 l -0.9669,0.2448 c -1.0770,0.3305 -1.2361,0.8934 -1.2361 1.4442c 0.0000,0.3794 0.1836,0.9546 0.9546 0.9546c 0.3672,-0.0000 0.9302,-0.3549 1.2484 -0.6242v -2.0194 ZM 543.9658,252.8135 ZM 544.7491,255.9589 c -0.4651,-0.0000 -0.7221,-0.4161 -0.7711 -0.7099l -0.2815,0.1958 c -0.5630,0.3916 -0.7711,0.5140 -1.3341 0.5140c -0.8567,-0.0000 -1.4809,-0.4896 -1.4809 -1.4075c 0.0000,-0.9302 0.7955,-1.5666 1.9582 -1.8603l 1.1260,-0.2815 c 0.0000,-1.3830 -0.6364,-1.6400 -1.0526 -1.6400c -0.4651,-0.0000 -1.0036,0.2081 -1.0036 0.5875c 0.0000,0.1346 0.0245,0.2081 0.0367 0.2448c 0.0245,0.0490 0.0367,0.1346 0.0367 0.2203c 0.0000,0.1591 -0.1224,0.4039 -0.4773 0.4039c -0.2937,-0.0000 -0.4896,-0.1958 -0.4896 -0.4896c 0.0000,-0.7099 1.1505,-1.3341 1.9338 -1.3341c 0.8934,-0.0000 1.9215,0.3672 1.9215 2.1051v 1.7991 c 0.0000,0.7466 0.0122,1.0648 0.2937 1.0648c 0.2693,-0.0000 0.3427,-0.3427 0.3549 -0.6120l 0.3060,0.0612 c -0.0734,0.8934 -0.4528,1.1382 -1.0770 1.1382ZM 545.9241,255.8120 ZM 550.3791,254.9308 v -2.6803 c 0.0000,-0.8567 -0.1469,-1.2606 -0.7955 -1.2606c -0.5385,-0.0000 -1.0036,0.2081 -1.6278 0.9424v 2.9986 c 0.0000,0.3549 0.1224,0.5385 0.5263 0.5385h 0.1713 c 0.0612,-0.0000 0.0979,0.0367 0.0979 0.0979v 0.2325 l -0.0245,0.0245 c 0.0000,-0.0000 -0.7711,-0.0245 -1.2484 -0.0245c -0.4406,-0.0000 -1.2729,0.0245 -1.2729 0.0245l -0.0245,-0.0245 v -0.2325 c 0.0000,-0.0612 0.0367,-0.0979 0.0979 -0.0979h 0.2325 c 0.4161,-0.0000 0.5263,-0.1836 0.5263 -0.5385v -3.0475 c 0.0000,-0.6609 -0.0979,-0.7466 -0.2693 -0.7466c -0.1591,-0.0000 -0.3060,0.0122 -0.5140 0.0612l -0.0612,-0.3427 c 0.5140,-0.0857 0.8812,-0.1469 1.2606 -0.3549c 0.1346,-0.0612 0.2325,-0.0979 0.3182 -0.0979h 0.1836 l -0.0367,1.0893 h 0.0367 c 0.7833,-0.9179 1.3708,-1.0893 1.9950 -1.0893c 1.1015,-0.0000 1.3341,0.8445 1.3341 1.9338v 2.5947 c 0.0000,0.3549 0.1346,0.5385 0.5263 0.5385h 0.2325 c 0.0612,-0.0000 0.1102,0.0367 0.1102 0.0979v 0.2325 l -0.0245,0.0245 c 0.0000,-0.0000 -0.8445,-0.0245 -1.3218 -0.0245c -0.4284,-0.0000 -1.1994,0.0245 -1.1994 0.0245l -0.0245,-0.0245 v -0.2325 c 0.0000,-0.0612 0.0367,-0.0979 0.0979 -0.0979h 0.1713 c 0.4039,-0.0000 0.5263,-0.1836 0.5263 -0.5385ZM 552.2884,255.8120 ZM 556.1559,252.3484 c 0.0000,-1.0158 -0.4773,-1.6033 -1.2117 -1.6033c -0.6364,-0.0000 -1.0648,0.4406 -1.0648 1.3952c 0.0000,0.6364 0.2448,1.6400 1.2239 1.6400c 0.4284,-0.0000 1.0526,-0.2081 1.0526 -1.4320ZM 556.1559,252.3484 ZM 553.8672,255.8977 c -0.3794,0.3549 -0.4651,0.7343 -0.4651 1.1505c 0.0000,0.9179 1.1015,1.1872 1.5176 1.1872c 1.0526,-0.0000 2.3866,-0.3672 2.3866 -1.2484c 0.0000,-0.3182 -0.1713,-0.5263 -0.6487 -0.7588c -0.3427,-0.1713 -0.8445,-0.3060 -1.4320 -0.3060c -0.0979,-0.0000 -0.2325,0.0122 -0.4039 0.0245c -0.1713,0.0122 -0.3549,0.0122 -0.4896 0.0122c -0.1958,-0.0000 -0.2937,-0.0245 -0.4651 -0.0612ZM 553.8672,255.8977 ZM 557.5879,251.0633 c -0.1958,-0.0000 -0.3182,-0.1102 -0.3672 -0.2081c -0.0734,-0.1102 -0.1224,-0.1469 -0.2081 -0.1469c -0.1469,-0.0000 -0.3794,0.1713 -0.4651 0.2937c 0.3427,0.3672 0.5018,0.7221 0.5018 1.2973c 0.0000,1.1994 -0.9791,1.8481 -2.0072 1.8481c -0.4528,-0.0000 -0.8200,-0.0857 -1.1015 -0.2570c -0.1346,0.2081 -0.2081,0.4651 -0.2081 0.7099c 0.0000,0.5263 0.4039,0.6609 0.7466 0.6609c 0.0612,-0.0000 0.2081,-0.0122 0.3794 -0.0245c 0.2815,-0.0367 0.5875,-0.0612 0.7955 -0.0612c 0.4284,-0.0000 1.2361,0.0857 1.7257 0.5018c 0.3305,0.3060 0.5140,0.5997 0.5140 0.9914c 0.0000,1.3218 -1.7379,2.0194 -3.3168 2.0194c -0.8934,-0.0000 -1.8848,-0.3305 -1.8848 -1.3952c 0.0000,-0.5263 0.3305,-1.0893 0.9546 -1.4809c -0.3060,-0.1591 -0.5263,-0.4651 -0.5263 -0.9057c 0.0000,-0.4161 0.1836,-0.9424 0.5140 -1.2361c -0.3305,-0.3305 -0.6120,-0.7466 -0.6120 -1.4197c 0.0000,-1.1260 0.9914,-1.8481 2.0317 -1.8481c 0.6854,-0.0000 1.1138,0.2815 1.2484 0.3794c 0.3060,-0.4161 0.8567,-0.6242 1.1627 -0.6242c 0.3182,-0.0000 0.5385,0.2081 0.5385 0.4651c 0.0000,0.2693 -0.1713,0.4406 -0.4161 0.4406ZM 558.1509,255.8120 ZM 559.3136,254.9308 v -6.1317 c 0.0000,-0.6976 -0.1224,-0.8934 -0.3672 -0.8934l -0.3916,0.0490 c -0.0367,-0.0000 -0.0734,-0.0245 -0.0734 -0.0612l -0.0245,-0.3060 c 0.1958,-0.0000 0.6487,-0.0734 0.8567 -0.1102c 0.2203,-0.0490 0.3916,-0.0979 0.6364 -0.2081h 0.2693 v 7.6616 c 0.0000,0.3549 0.1346,0.5385 0.5263 0.5385h 0.2937 c 0.0490,-0.0000 0.0979,0.0367 0.0979 0.0979v 0.2325 l -0.0245,0.0245 c 0.0000,-0.0000 -0.8934,-0.0245 -1.3708 -0.0245c -0.4284,-0.0000 -1.3218,0.0245 -1.3218 0.0245l -0.0122,-0.0245 v -0.2325 c 0.0000,-0.0612 0.0245,-0.0979 0.0857 -0.0979h 0.2937 c 0.4039,-0.0000 0.5263,-0.1836 0.5263 -0.5385ZM 561.3330,255.8120 ZM 562.7283,252.4218 h 2.2520 c 0.1224,-0.0000 0.1713,-0.0612 0.1713 -0.1713c 0.0000,-1.1382 -0.5752,-1.4320 -1.0158 -1.4320c -0.2815,-0.0000 -1.1994,0.1102 -1.4075 1.6033ZM 562.7283,252.4218 ZM 565.9594,254.6738 l 0.2448,0.1958 c -0.4651,0.6364 -1.1872,1.0893 -2.0684 1.0893c -1.6767,-0.0000 -2.3866,-1.2484 -2.3866 -2.5824c 0.0000,-1.8603 1.2239,-2.9741 2.3866 -2.9741c 1.6156,-0.0000 1.9950,1.2606 1.9950 2.2887c 0.0000,0.1346 -0.0857,0.2081 -0.2203 0.2081h -3.2189 c -0.0122,0.0734 -0.0122,0.1469 -0.0122 0.2448c 0.0000,1.2484 0.8690,2.2153 1.7502 2.2153c 0.6731,-0.0000 1.1015,-0.2203 1.5299 -0.6854Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="3.8882802517567234" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 482.8407,255.8120 h 42.1722 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(227,119,194)" stroke-width="1.9441401258783617" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 512.3612,260.6817 l -8.4344,-14.6089 l -8.4344,14.6089 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.2" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.7776560503513447" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 570.7578,315.4463 l -0.0000,-73.9367 h -92.1037 l -0.0000,73.9367 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 436.4820,315.4463 l -0.0000,-210.8609 h -316.2913 l -0.0000,210.8609 Z"/></g></svg>
diff --git a/other/glyphChart_Example.svg b/other/glyphChart_Example.svg
--- a/other/glyphChart_Example.svg
+++ b/other/glyphChart_Example.svg
@@ -1,3 +1,3 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="150.0000" stroke-opacity="1" viewBox="0 0 450 150" font-size="1" width="450.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 439.4299,135.5959 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 435.1838,139.1429 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 430.9376,142.0612 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 426.6915,144.3215 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 422.4454,145.9014 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.1992,146.7849 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 413.9531,146.9633 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 409.7070,146.4348 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 405.4608,145.2047 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 401.2147,143.2852 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 396.9686,140.6956 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 392.7224,137.4617 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 388.4763,133.6158 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 384.2301,129.1964 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 379.9840,124.2475 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.7379,118.8188 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 371.4917,112.9643 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 367.2456,106.7426 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 362.9995,100.2159 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 358.7533,93.4494 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 354.5072,86.5107 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 350.2610,79.4690 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.0149,72.3949 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 341.7688,65.3589 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 337.5226,58.4313 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 333.2765,51.6814 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 329.0304,45.1767 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 324.7842,38.9820 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 320.5381,33.1593 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 316.2919,27.7669 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 312.0458,22.8585 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 307.7997,18.4832 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.5535,14.6847 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 299.3074,11.5010 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 295.0613,8.9638 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 290.8151,7.0986 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 286.5690,5.9240 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 282.3229,5.4517 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 278.0767,5.6864 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 273.8306,6.6258 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 269.5844,8.2605 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 265.3383,10.5742 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 261.0922,13.5437 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 256.8460,17.1394 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 252.5999,21.3253 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 248.3538,26.0596 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 244.1076,31.2951 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 239.8615,36.9794 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 235.6153,43.0557 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.3692,49.4633 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 227.1231,56.1381 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 222.8769,63.0136 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 218.6308,70.0209 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 214.3847,77.0901 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.1385,84.1506 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 205.8924,91.1318 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 201.6462,97.9638 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 197.4001,104.5786 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 193.1540,110.9100 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 188.9078,116.8946 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 184.6617,122.4728 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.4156,127.5888 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 176.1694,132.1915 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 171.9233,136.2348 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 167.6771,139.6785 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 163.4310,142.4880 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 159.1849,144.6353 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 154.9387,146.0990 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.6926,146.8644 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 146.4465,146.9238 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 142.2003,146.2768 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 137.9542,144.9297 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 133.7081,142.8960 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 129.4619,140.1961 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 125.2158,136.8568 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.9696,132.9117 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 116.7235,128.4000 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 112.4774,123.3668 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 108.2312,117.8626 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 103.9851,111.9422 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 99.7390,105.6648 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 95.4928,99.0931 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 91.2467,92.2929 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 87.0005,85.3319 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.7544,78.2799 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 78.5083,71.2072 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.2621,64.1845 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 70.0160,57.2820 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 65.7699,50.5687 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 61.5237,44.1116 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 57.2776,37.9753 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 53.0314,32.2210 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 48.7853,26.9063 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 44.5392,22.0842 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 40.2930,17.8030 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 36.0469,14.1054 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 31.8008,11.0284 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 27.5546,8.6026 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 23.3085,6.8524 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 19.0624,5.7953 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 14.8162,5.4417 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 441.5530,113.4889 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 437.3069,107.3682 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 433.0607,100.9240 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 428.8146,94.2206 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 424.5684,87.3250 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 420.3223,80.3062 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 416.0762,73.2342 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 411.8300,66.1798 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 407.5839,59.2133 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 403.3378,52.4045 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 399.0916,45.8213 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 394.8455,39.5295 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 390.5993,33.5921 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 386.3532,28.0682 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 382.1071,23.0131 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 377.8609,18.4774 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 373.6148,14.5062 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 369.3687,11.1394 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 365.1225,8.4106 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 360.8764,6.3469 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 356.6302,4.9691 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 352.3841,4.2909 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 348.1380,4.3191 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 343.8918,5.0533 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 339.6457,6.4863 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 335.3996,8.6038 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 331.1534,11.3846 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 326.9073,14.8008 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 322.6612,18.8184 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.4150,23.3973 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 314.1689,28.4916 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 309.9227,34.0505 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 305.6766,40.0184 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 301.4305,46.3357 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 297.1843,52.9393 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 292.9382,59.7632 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 288.6921,66.7392 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 284.4459,73.7977 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 280.1998,80.8680 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 275.9536,87.8796 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 271.7075,94.7623 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 267.4614,101.4475 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 263.2152,107.8683 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 258.9691,113.9606 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 254.7230,119.6634 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 250.4768,124.9199 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.2307,129.6775 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 241.9845,133.8886 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 237.7384,137.5112 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 233.4923,140.5091 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 229.2461,142.8523 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,144.5174 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 220.7539,145.4879 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 216.5077,145.7539 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 212.2616,145.3128 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 208.0155,144.1691 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 203.7693,142.3341 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 199.5232,139.8262 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.2770,136.6705 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 191.0309,132.8985 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 186.7848,128.5478 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 182.5386,123.6620 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 178.2925,118.2898 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 174.0464,112.4850 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 169.8002,106.3055 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.5541,99.8131 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 161.3079,93.0727 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 157.0618,86.1516 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 152.8157,79.1189 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 148.5695,72.0449 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 144.3234,65.0003 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 140.0773,58.0556 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.8311,51.2800 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 131.5850,44.7412 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 127.3388,38.5047 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 123.0927,32.6328 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 118.8466,27.1840 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 114.6004,22.2128 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 110.3543,17.7690 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 106.1082,13.8969 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 101.8620,10.6351 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 97.6159,8.0164 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 93.3698,6.0668 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 89.1236,4.8059 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 84.8775,4.2461 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 80.6313,4.3932 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 76.3852,5.2457 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 72.1391,6.7950 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 67.8929,9.0257 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 63.6468,11.9154 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 59.4007,15.4353 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 55.1545,19.5503 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 50.9084,24.2191 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 46.6622,29.3953 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 42.4161,35.0269 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 38.1700,41.0579 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 33.9238,47.4278 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 29.6777,54.0732 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 25.4316,60.9275 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 21.1854,67.9222 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 16.9393,74.9876 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g></svg>
+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="150.0000" stroke-opacity="1" viewBox="0 0 450 150" font-size="1" width="450.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 439.4299,135.5959 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 435.1838,139.1429 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 430.9376,142.0612 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 426.6915,144.3215 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 422.4454,145.9014 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.1992,146.7849 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 413.9531,146.9633 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 409.7070,146.4348 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 405.4608,145.2047 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 401.2147,143.2852 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 396.9686,140.6956 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 392.7224,137.4617 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 388.4763,133.6158 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 384.2301,129.1964 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 379.9840,124.2475 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.7379,118.8188 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 371.4917,112.9643 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 367.2456,106.7426 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 362.9995,100.2159 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 358.7533,93.4494 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 354.5072,86.5107 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 350.2610,79.4690 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.0149,72.3949 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 341.7688,65.3589 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 337.5226,58.4313 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 333.2765,51.6814 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 329.0304,45.1767 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 324.7842,38.9820 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 320.5381,33.1593 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 316.2919,27.7669 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 312.0458,22.8585 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 307.7997,18.4832 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.5535,14.6847 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 299.3074,11.5010 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 295.0613,8.9638 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 290.8151,7.0986 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 286.5690,5.9240 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 282.3229,5.4517 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 278.0767,5.6864 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 273.8306,6.6258 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 269.5844,8.2605 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 265.3383,10.5742 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 261.0922,13.5437 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 256.8460,17.1394 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 252.5999,21.3253 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 248.3538,26.0596 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 244.1076,31.2951 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 239.8615,36.9794 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 235.6153,43.0557 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.3692,49.4633 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 227.1231,56.1381 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 222.8769,63.0136 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 218.6308,70.0209 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 214.3847,77.0901 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.1385,84.1506 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 205.8924,91.1318 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 201.6462,97.9638 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 197.4001,104.5786 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 193.1540,110.9100 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 188.9078,116.8946 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 184.6617,122.4728 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.4156,127.5888 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 176.1694,132.1915 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 171.9233,136.2348 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 167.6771,139.6785 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 163.4310,142.4880 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 159.1849,144.6353 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 154.9387,146.0990 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.6926,146.8644 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 146.4465,146.9238 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 142.2003,146.2768 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 137.9542,144.9297 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 133.7081,142.8960 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 129.4619,140.1961 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 125.2158,136.8568 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.9696,132.9117 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 116.7235,128.4000 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 112.4774,123.3668 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 108.2312,117.8626 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 103.9851,111.9422 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 99.7390,105.6648 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 95.4928,99.0931 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 91.2467,92.2929 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 87.0005,85.3319 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 82.7544,78.2799 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 78.5083,71.2072 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.2621,64.1845 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 70.0160,57.2820 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 65.7699,50.5687 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 61.5237,44.1116 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 57.2776,37.9753 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 53.0314,32.2210 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 48.7853,26.9063 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 44.5392,22.0842 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 40.2930,17.8030 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 36.0469,14.1054 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 31.8008,11.0284 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 27.5546,8.6026 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 23.3085,6.8524 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 19.0624,5.7953 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 14.8162,5.4417 l -2.1231,-3.6773 l -2.1231,3.6773 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 441.5530,113.4889 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 437.3069,107.3682 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 433.0607,100.9240 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 428.8146,94.2206 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 424.5684,87.3250 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 420.3223,80.3062 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 416.0762,73.2342 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 411.8300,66.1798 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 407.5839,59.2133 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 403.3378,52.4045 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 399.0916,45.8213 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 394.8455,39.5295 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 390.5993,33.5921 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 386.3532,28.0682 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 382.1071,23.0131 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 377.8609,18.4774 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 373.6148,14.5062 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 369.3687,11.1394 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 365.1225,8.4106 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 360.8764,6.3469 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 356.6302,4.9691 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 352.3841,4.2909 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 348.1380,4.3191 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 343.8918,5.0533 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 339.6457,6.4863 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 335.3996,8.6038 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 331.1534,11.3846 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 326.9073,14.8008 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 322.6612,18.8184 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.4150,23.3973 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 314.1689,28.4916 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 309.9227,34.0505 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 305.6766,40.0184 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 301.4305,46.3357 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 297.1843,52.9393 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 292.9382,59.7632 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 288.6921,66.7392 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 284.4459,73.7977 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 280.1998,80.8680 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 275.9536,87.8796 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 271.7075,94.7623 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 267.4614,101.4475 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 263.2152,107.8683 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 258.9691,113.9606 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 254.7230,119.6634 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 250.4768,124.9199 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.2307,129.6775 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 241.9845,133.8886 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 237.7384,137.5112 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 233.4923,140.5091 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 229.2461,142.8523 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,144.5174 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 220.7539,145.4879 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 216.5077,145.7539 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 212.2616,145.3128 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 208.0155,144.1691 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 203.7693,142.3341 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 199.5232,139.8262 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.2770,136.6705 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 191.0309,132.8985 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 186.7848,128.5478 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 182.5386,123.6620 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 178.2925,118.2898 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 174.0464,112.4850 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 169.8002,106.3055 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.5541,99.8131 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 161.3079,93.0727 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 157.0618,86.1516 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 152.8157,79.1189 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 148.5695,72.0449 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 144.3234,65.0003 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 140.0773,58.0556 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.8311,51.2800 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 131.5850,44.7412 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 127.3388,38.5047 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 123.0927,32.6328 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 118.8466,27.1840 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 114.6004,22.2128 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 110.3543,17.7690 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 106.1082,13.8969 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 101.8620,10.6351 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 97.6159,8.0164 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 93.3698,6.0668 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 89.1236,4.8059 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 84.8775,4.2461 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 80.6313,4.3932 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 76.3852,5.2457 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 72.1391,6.7950 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 67.8929,9.0257 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 63.6468,11.9154 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 59.4007,15.4353 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 55.1545,19.5503 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 50.9084,24.2191 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 46.6622,29.3953 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 42.4161,35.0269 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 38.1700,41.0579 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 33.9238,47.4278 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 29.6777,54.0732 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 25.4316,60.9275 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 21.1854,67.9222 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.8232612907822463" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 16.9393,74.9876 c 0.0000,-2.3451 -1.9011,-4.2461 -4.2461 -4.2461c -2.3451,-0.0000 -4.2461,1.9011 -4.2461 4.2461c -0.0000,2.3451 1.9011,4.2461 4.2461 4.2461c 2.3451,0.0000 4.2461,-1.9011 4.2461 -4.2461Z"/></g></svg>
diff --git a/other/glyphHudExample.svg b/other/glyphHudExample.svg
--- a/other/glyphHudExample.svg
+++ b/other/glyphHudExample.svg
@@ -1,3 +1,3 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="400.0000" stroke-opacity="1" viewBox="0 0 600 400" font-size="1" width="600.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 542.5948,246.1163 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 538.2881,249.7139 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 533.9814,252.6738 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 529.6748,254.9664 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 525.3681,256.5688 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 521.0614,257.4649 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 516.7547,257.6459 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 512.4480,257.1098 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 508.1413,255.8621 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 503.8346,253.9153 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 499.5279,251.2887 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 495.2212,248.0087 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.9145,244.1080 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 486.6078,239.6255 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 482.3011,234.6061 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 477.9944,229.0999 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 473.6877,223.1619 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 469.3810,216.8515 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 465.0743,210.2318 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 460.7676,203.3687 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 456.4609,196.3310 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 452.1542,189.1889 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.8475,182.0139 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 443.5408,174.8775 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 439.2341,167.8512 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 434.9274,161.0050 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 430.6207,154.4075 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 426.3140,148.1245 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 422.0073,142.2188 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 417.7006,136.7494 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 413.3939,131.7710 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 409.0872,127.3333 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.7806,123.4806 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 400.4739,120.2515 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 396.1672,117.6782 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 391.8605,115.7864 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 387.5538,114.5950 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 383.2471,114.1160 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 378.9404,114.3540 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 374.6337,115.3068 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 370.3270,116.9649 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 366.0203,119.3115 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.7136,122.3234 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 357.4069,125.9703 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 353.1002,130.2160 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 348.7935,135.0178 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 344.4868,140.3280 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 340.1801,146.0933 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 335.8734,152.2563 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 331.5667,158.7552 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 327.2600,165.5253 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 322.9533,172.4988 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.6466,179.6061 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 314.3399,186.7761 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 310.0332,193.9373 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 305.7265,201.0180 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 301.4198,207.9475 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 297.1131,214.6566 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 292.8064,221.0783 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 288.4997,227.1483 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 284.1930,232.8061 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 279.8864,237.9950 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 275.5797,242.6633 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 271.2730,246.7644 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 266.9663,250.2571 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 262.6596,253.1067 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 258.3529,255.2846 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 254.0462,256.7692 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 249.7395,257.5455 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 245.4328,257.6058 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 241.1261,256.9495 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 236.8194,255.5832 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 232.5127,253.5206 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 228.2060,250.7821 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 223.8993,247.3952 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 219.5926,243.3938 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 215.2859,238.8177 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.9792,233.7128 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 206.6725,228.1301 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 202.3658,222.1252 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 198.0591,215.7583 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 193.7524,209.0929 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 189.4457,202.1957 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 185.1390,195.1355 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.8323,187.9828 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 176.5256,180.8093 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 172.2189,173.6865 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 167.9122,166.6855 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 163.6055,159.8765 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 159.2988,153.3273 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 154.9922,147.1034 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.6855,141.2671 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 146.3788,135.8765 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 142.0721,130.9857 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 137.7654,126.6434 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 133.4587,122.8931 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 129.1520,119.7722 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 124.8453,117.3118 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.5386,115.5367 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 116.2319,114.4644 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 111.9252,114.1058 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 544.7482,223.6940 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 540.4415,217.4860 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 536.1348,210.9499 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 531.8281,204.1509 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 527.5214,197.1570 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 523.2147,190.0381 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 518.9080,182.8652 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 514.6013,175.7102 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 510.2946,168.6444 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 505.9879,161.7384 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 501.6812,155.0613 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 497.3745,148.6798 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 493.0678,142.6577 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 488.7611,137.0550 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 484.4544,131.9279 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 480.1477,127.3274 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 475.8410,123.2996 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 471.5343,119.8848 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 467.2277,117.1170 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 462.9210,115.0239 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 458.6143,113.6265 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 454.3076,112.9386 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 450.0009,112.9672 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 445.6942,113.7119 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 441.3875,115.1654 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 437.0808,117.3130 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.7741,120.1334 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 428.4674,123.5984 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 424.1607,127.6733 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 419.8540,132.3175 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 415.5473,137.4845 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 411.2406,143.1226 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 406.9339,149.1757 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 402.6272,155.5831 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 398.3205,162.2809 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 394.0138,169.2021 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.7071,176.2776 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 385.4004,183.4367 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 381.0937,190.6079 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 376.7870,197.7194 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 372.4803,204.7004 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 368.1736,211.4809 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 363.8669,217.9933 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 359.5602,224.1724 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 355.2535,229.9566 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 350.9468,235.2880 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.6401,240.1135 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 342.3335,244.3846 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 338.0268,248.0589 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 333.7201,251.0996 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 329.4134,253.4762 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 325.1067,255.1651 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 320.8000,256.1494 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 316.4933,256.4192 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 312.1866,255.9718 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 307.8799,254.8118 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.5732,252.9506 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 299.2665,250.4070 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 294.9598,247.2062 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 290.6531,243.3804 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 286.3464,238.9677 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 282.0397,234.0122 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 277.7330,228.5634 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 273.4263,222.6758 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 269.1196,216.4082 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 264.8129,209.8232 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5062,202.9866 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 256.1995,195.9668 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 251.8928,188.8338 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 247.5861,181.6589 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 243.2794,174.5139 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 238.9727,167.4701 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 234.6660,160.5978 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 230.3593,153.9659 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 226.0526,147.6404 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 221.7459,141.6847 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.4393,136.1582 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 213.1326,131.1161 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 208.8259,126.6089 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 204.5192,122.6816 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 200.2125,119.3733 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.9058,116.7172 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 191.5991,114.7398 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 187.2924,113.4609 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 182.9857,112.8932 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 178.6790,113.0424 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 174.3723,113.9070 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 170.0656,115.4784 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.7589,117.7409 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 161.4522,120.6718 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 157.1455,124.2420 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 152.8388,128.4156 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 148.5321,133.1511 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 144.2254,138.4010 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 139.9187,144.1130 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.6120,150.2300 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 131.3053,156.6908 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 126.9986,163.4309 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 122.6919,170.3829 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 118.3852,177.4775 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 114.0785,184.6436 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(31,119,180)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 56.1595,256.4192 ZM 36.5782,245.2596 c 0.0000,-3.6306 1.3391,-4.7019 1.3391 -6.4874c 2.1426,-0.2083 3.3330,-0.3869 4.5829 -0.6547l 0.1786,0.8928 c -2.5593,0.7737 -4.9995,2.3509 -4.9995 6.6660c -0.0000,4.0174 3.5413,7.2016 8.7491 7.2016c 3.9282,0.0000 9.0169,-2.8568 9.0169 -8.1539c 0.0000,-1.6070 -0.5357,-3.3627 -1.4879 -4.3745l -4.5531,-0.0000 c -0.9225,-0.0000 -1.3094,0.4464 -1.3094 1.6367l -0.0000,0.7737 c -0.0000,0.1190 -0.0893,0.2381 -0.2381 0.2381l -0.7737,-0.0000 l -0.0595,-0.0595 c 0.0000,-0.0000 0.0595,-2.5890 0.0595 -3.7496c 0.0000,-1.0416 -0.0595,-2.7676 -0.0595 -2.7676l 0.0595,-0.0595 l 0.7737,0.0000 c 0.1488,0.0000 0.2381,0.0893 0.2381 0.2381l -0.0000,0.0298 c -0.0000,1.0416 0.4761,1.3094 1.3094 1.3094l 3.4520,0.0000 c 0.3273,0.0000 0.5654,-0.1488 0.8332 -0.4761c 1.7260,2.0236 2.8271,4.4341 2.8271 7.9456c -0.0000,5.9815 -4.3448,10.0585 -9.4931 10.0585c -6.5469,-0.0000 -10.4453,-5.0888 -10.4453 -10.2073ZM 56.1595,235.7963 ZM 54.0169,232.9692 l -14.9092,-0.0000 c -1.6963,-0.0000 -2.1724,0.2976 -2.1724 0.8928l 0.1190,0.9523 c -0.0000,0.0893 -0.0595,0.1786 -0.1488 0.1786l -0.7440,0.0595 c 0.0000,-0.4761 -0.1786,-1.5772 -0.2678 -2.0831c -0.1190,-0.5357 -0.2381,-0.9523 -0.5059 -1.5475l 0.0000,-0.6547 l 18.6290,0.0000 c 0.8630,0.0000 1.3094,-0.3273 1.3094 -1.2796l 0.0000,-0.7142 c 0.0000,-0.1190 0.0893,-0.2381 0.2381 -0.2381l 0.5654,0.0000 l 0.0595,0.0595 c 0.0000,-0.0000 -0.0595,2.1724 -0.0595 3.3330c -0.0000,1.0416 0.0595,3.2140 0.0595 3.2140l -0.0595,0.0298 l -0.5654,-0.0000 c -0.1488,-0.0000 -0.2381,-0.0595 -0.2381 -0.2083l 0.0000,-0.7142 c 0.0000,-0.9820 -0.4464,-1.2796 -1.3094 -1.2796ZM 56.1595,228.0590 ZM 43.9584,221.8692 c 0.1488,0.0000 0.2381,0.1786 0.2381 0.3273c -0.0000,0.8928 0.1786,1.2796 0.6547 1.2796c 0.1786,0.0000 0.4166,-0.0595 0.6845 -0.1786l 7.6778,-3.2735 l -7.5587,-3.3032 c -0.2678,-0.1488 -0.5059,-0.2083 -0.6845 -0.2083c -0.6249,-0.0000 -0.7737,0.5952 -0.7737 1.2499l -0.0000,0.1190 c -0.0000,0.1488 -0.1190,0.2976 -0.2083 0.2976l -0.5654,-0.0000 l -0.0893,-0.0595 c 0.0000,-0.0000 0.0595,-1.7558 0.0595 -2.7973c 0.0000,-0.8332 -0.0595,-2.0534 -0.0595 -2.0534l 0.0595,-0.0893 l 0.5654,0.0000 c 0.1488,0.0000 0.2381,0.1190 0.2381 0.3273c -0.0000,1.1308 1.1606,1.6963 2.0236 2.1129c 3.3330,1.5772 6.3981,2.8866 12.1416 5.2673c 2.1426,0.8928 4.6424,1.9641 4.6424 4.0770c -0.0000,0.5654 -0.3273,1.7260 -1.3987 1.7260c -0.8928,-0.0000 -1.1606,-0.6547 -1.1606 -1.1308c 0.0000,-0.4464 0.1786,-0.7440 0.4166 -0.9225c 0.2976,-0.2976 0.5059,-0.5059 0.5059 -0.8035c 0.0000,-0.4464 -2.5593,-1.4879 -4.3745 -2.2319c -0.3571,-0.1786 -0.6547,-0.2381 -0.9225 -0.2381c -0.2976,-0.0000 -1.1011,0.2678 -1.6963 0.5059l -8.7193,3.7496 c -1.1308,0.4761 -1.4582,0.8035 -1.4582 1.8153c -0.0000,0.1786 -0.0893,0.2976 -0.2083 0.2976l -0.5952,-0.0000 l -0.0595,-0.0595 c 0.0000,-0.0000 0.0595,-1.3094 0.0595 -2.2022c 0.0000,-1.3987 -0.0595,-3.5413 -0.0595 -3.5413l 0.0893,-0.0595 l 0.5357,0.0000 ZM 56.1595,212.9118 ZM 46.8153,208.4777 l 7.4099,0.0000 c 1.2201,-1.0416 1.2796,-2.0236 1.2796 -2.4997c 0.0000,-3.1842 -2.9759,-3.8984 -5.5351 -3.8984c -3.6008,-0.0000 -5.5947,1.4582 -5.5947 3.2735c -0.0000,1.0118 0.8630,2.4700 2.4402 3.1247ZM 46.8153,208.4777 ZM 60.8614,210.6798 l -14.7306,-0.0000 c -1.1308,-0.0000 -1.3391,0.2678 -1.3391 0.6845c -0.0000,0.3869 0.0298,0.7440 0.1488 1.2499l -0.8332,0.1488 c -0.3273,-1.9046 -0.4464,-2.2617 -0.8630 -3.0949c -0.1488,-0.3273 -0.2381,-0.5357 -0.2381 -0.7440l 0.0000,-0.4464 l 2.3807,0.0893 l 0.0000,-0.0893 c -2.0831,-1.3689 -2.3807,-2.9759 -2.3807 -3.9282c 0.0000,-2.8866 3.0056,-4.7912 6.1601 -4.7912c 2.4105,0.0000 4.2555,0.7440 5.6244 2.0831c 1.1606,1.1606 1.7260,2.3807 1.7260 3.9579c -0.0000,1.0713 -0.2381,1.9046 -0.6547 2.6783l 4.9995,0.0000 c 0.8630,0.0000 1.3094,-0.3273 1.3094 -1.2796l 0.0000,-0.5654 c 0.0000,-0.1488 0.0893,-0.2678 0.2381 -0.2678l 0.5654,0.0000 l 0.0595,0.0595 c 0.0000,-0.0000 -0.0595,2.0534 -0.0595 3.2140c -0.0000,1.0416 0.0595,3.0652 0.0595 3.0652l -0.0595,0.0595 l -0.5654,-0.0000 c -0.1488,-0.0000 -0.2381,-0.0893 -0.2381 -0.2381l 0.0000,-0.5654 c 0.0000,-0.9820 -0.4464,-1.2796 -1.3094 -1.2796ZM 56.1595,198.6573 ZM 35.3879,193.8066 l 10.0882,0.0000 c -1.9938,-1.9938 -2.4700,-3.7496 -2.4700 -4.9102c 0.0000,-2.1426 1.6367,-3.2140 4.7019 -3.2140l 6.3089,0.0000 c 0.8630,0.0000 1.3094,-0.2976 1.3094 -1.2796l 0.0000,-0.5654 c 0.0000,-0.1190 0.0893,-0.2381 0.2381 -0.2381l 0.5654,0.0000 l 0.0595,0.0595 c 0.0000,-0.0000 -0.0595,2.0236 -0.0595 3.2140c -0.0000,1.0416 0.0595,3.0652 0.0595 3.0652l -0.0595,0.0595 l -0.5654,-0.0000 c -0.1488,-0.0000 -0.2381,-0.0893 -0.2381 -0.2381l 0.0000,-0.5654 c 0.0000,-1.0118 -0.4464,-1.2796 -1.3094 -1.2796l -6.6362,-0.0000 c -2.4105,-0.0000 -2.9759,0.6547 -2.9759 2.3212c -0.0000,0.8630 0.7737,2.1426 2.1724 3.5711l 7.4397,0.0000 c 0.8630,0.0000 1.3094,-0.2976 1.3094 -1.2796l 0.0000,-0.5654 c 0.0000,-0.1190 0.0893,-0.2381 0.2381 -0.2381l 0.5654,0.0000 l 0.0595,0.0595 c 0.0000,-0.0000 -0.0595,2.0236 -0.0595 3.1842c -0.0000,1.0713 0.0595,3.0652 0.0595 3.0652l -0.0595,0.0595 l -0.5654,-0.0000 c -0.1488,-0.0000 -0.2381,-0.0595 -0.2381 -0.2083l 0.0000,-0.5654 c 0.0000,-1.0118 -0.4464,-1.2796 -1.3094 -1.2796l -14.9092,-0.0000 c -1.6963,-0.0000 -2.1724,0.2678 -2.1724 0.8630l 0.1190,0.9820 c -0.0000,0.0893 -0.0595,0.1488 -0.1488 0.1488l -0.7440,0.0595 c 0.0000,-0.4761 -0.1786,-1.5475 -0.2678 -2.0534c -0.1190,-0.5357 -0.2381,-0.9820 -0.5059 -1.5772l 0.0000,-0.6547 ZM 56.1595,175.8025 ZM 56.5166,165.2381 c -0.0000,6.3981 -4.9400,9.4633 -9.7311 9.4633c -5.8625,-0.0000 -10.2073,-4.5531 -10.2073 -9.4931c 0.0000,-3.6603 1.2499,-4.8209 1.3391 -6.5172c 1.6367,-0.0893 3.0652,-0.3571 4.6126 -0.6547l 0.1190,0.8928 c -2.5593,0.7737 -4.9697,2.4997 -4.9697 6.6065c -0.0000,2.3509 2.4997,6.5767 8.5408 6.5767c 4.3448,0.0000 9.0764,-2.2319 9.0764 -6.8445c 0.0000,-2.7676 -0.9820,-4.7912 -3.3032 -6.9040l 0.4464,-0.6845 c 2.6485,2.0236 4.0770,4.6721 4.0770 7.5587ZM 56.1595,156.6378 ZM 35.3879,151.7871 l 10.0882,0.0000 c -1.9938,-1.9938 -2.4700,-3.7496 -2.4700 -4.9102c 0.0000,-2.1426 1.6367,-3.2140 4.7019 -3.2140l 6.3089,0.0000 c 0.8630,0.0000 1.3094,-0.2976 1.3094 -1.2796l 0.0000,-0.5654 c 0.0000,-0.1190 0.0893,-0.2381 0.2381 -0.2381l 0.5654,0.0000 l 0.0595,0.0595 c 0.0000,-0.0000 -0.0595,2.0236 -0.0595 3.2140c -0.0000,1.0416 0.0595,3.0652 0.0595 3.0652l -0.0595,0.0595 l -0.5654,-0.0000 c -0.1488,-0.0000 -0.2381,-0.0893 -0.2381 -0.2381l 0.0000,-0.5654 c 0.0000,-1.0118 -0.4464,-1.2796 -1.3094 -1.2796l -6.6362,-0.0000 c -2.4105,-0.0000 -2.9759,0.6547 -2.9759 2.3212c -0.0000,0.8630 0.7737,2.1426 2.1724 3.5711l 7.4397,0.0000 c 0.8630,0.0000 1.3094,-0.2976 1.3094 -1.2796l 0.0000,-0.5654 c 0.0000,-0.1190 0.0893,-0.2381 0.2381 -0.2381l 0.5654,0.0000 l 0.0595,0.0595 c 0.0000,-0.0000 -0.0595,2.0236 -0.0595 3.1842c -0.0000,1.0713 0.0595,3.0652 0.0595 3.0652l -0.0595,0.0595 l -0.5654,-0.0000 c -0.1488,-0.0000 -0.2381,-0.0595 -0.2381 -0.2083l 0.0000,-0.5654 c 0.0000,-1.0118 -0.4464,-1.2796 -1.3094 -1.2796l -14.9092,-0.0000 c -1.6963,-0.0000 -2.1724,0.2678 -2.1724 0.8630l 0.1190,0.9820 c -0.0000,0.0893 -0.0595,0.1488 -0.1488 0.1488l -0.7440,0.0595 c 0.0000,-0.4761 -0.1786,-1.5475 -0.2678 -2.0534c -0.1190,-0.5357 -0.2381,-0.9820 -0.5059 -1.5772l 0.0000,-0.6547 ZM 56.1595,141.2228 ZM 48.8686,132.5629 l 0.5952,2.3509 c 0.8035,2.6188 2.1724,3.0056 3.5115 3.0056c 0.9225,0.0000 2.3212,-0.4464 2.3212 -2.3212c 0.0000,-0.8928 -0.8630,-2.2617 -1.5177 -3.0354l -4.9102,-0.0000 ZM 48.8686,132.5629 ZM 56.5166,130.6584 c -0.0000,1.1308 -1.0118,1.7558 -1.7260 1.8748l 0.4761,0.6845 c 0.9523,1.3689 1.2499,1.8748 1.2499 3.2437c -0.0000,2.0831 -1.1904,3.6008 -3.4223 3.6008c -2.2617,-0.0000 -3.8091,-1.9343 -4.5233 -4.7614l -0.6845,-2.7378 c -3.3627,-0.0000 -3.9877,1.5475 -3.9877 2.5593c -0.0000,1.1308 0.5059,2.4402 1.4284 2.4402c 0.3273,0.0000 0.5059,-0.0595 0.5952 -0.0893c 0.1190,-0.0595 0.3273,-0.0893 0.5357 -0.0893c 0.3869,0.0000 0.9820,0.2976 0.9820 1.1606c -0.0000,0.7142 -0.4761,1.1904 -1.1904 1.1904c -1.7260,-0.0000 -3.2437,-2.7973 -3.2437 -4.7019c 0.0000,-2.1724 0.8928,-4.6721 5.1185 -4.6721l 4.3745,0.0000 c 1.8153,0.0000 2.5890,-0.0298 2.5890 -0.7142c 0.0000,-0.6547 -0.8332,-0.8332 -1.4879 -0.8630l 0.1488,-0.7440 c 2.1724,0.1786 2.7676,1.1011 2.7676 2.6188ZM 56.1595,127.8015 ZM 54.0169,125.1530 l -7.4099,-0.0000 c -1.4879,-0.0000 -1.8153,0.2083 -1.8153 0.6547c -0.0000,0.3869 0.0298,0.7440 0.1488 1.2499l -0.8332,0.1488 c -0.3273,-1.8748 -0.4166,-2.2022 -0.8630 -3.0949c -0.1488,-0.2976 -0.2381,-0.5357 -0.2381 -0.7440l 0.0000,-0.4464 l 2.6783,0.0893 l 0.0000,-0.0893 c -1.1606,-0.7737 -2.6783,-2.0831 -2.6783 -3.4818c 0.0000,-1.2201 0.5952,-1.6665 1.3689 -1.6665c 0.7737,0.0000 1.2499,0.5059 1.2499 1.2796c -0.0000,0.5952 -0.2381,0.9225 -0.5357 1.2201c -0.1786,0.1786 -0.2678,0.3869 -0.2678 0.5952c -0.0000,0.3273 0.5357,0.9820 1.5475 1.6963c 0.2678,0.2083 0.6547,0.3571 1.0416 0.3571l 6.6065,0.0000 c 0.8630,0.0000 1.3094,-0.2976 1.3094 -1.2796l 0.0000,-0.8630 c 0.0000,-0.1488 0.0893,-0.2678 0.2381 -0.2678l 0.5654,0.0000 l 0.0595,0.0595 c 0.0000,-0.0000 -0.0595,2.3509 -0.0595 3.5115c -0.0000,1.0713 0.0595,3.0949 0.0595 3.0949l -0.0595,0.0298 l -0.5654,-0.0000 c -0.1488,-0.0000 -0.2381,-0.0595 -0.2381 -0.2083l 0.0000,-0.5654 c 0.0000,-1.0118 -0.4464,-1.2796 -1.3094 -1.2796ZM 56.1595,117.4752 ZM 44.5238,112.5948 l 7.6183,0.0000 c 1.8450,0.0000 2.7378,-0.1786 2.7378 -0.9820c 0.0000,-0.7737 -0.2381,-1.3689 -0.8332 -2.1426l 0.5059,-0.5357 c 1.3094,1.1606 1.9641,2.3509 1.9641 3.7199c -0.0000,1.3689 -0.8332,2.1724 -2.9461 2.1724l -9.0467,-0.0000 l -0.0000,1.9343 c -0.0000,0.0893 -0.0298,0.1190 -0.1190 0.1190l -0.9225,-0.0000 c -0.0893,-0.0000 -0.1190,-0.0298 -0.1190 -0.0893c 0.0000,-1.9938 -1.1606,-2.4700 -3.4223 -2.4700l -0.5654,-0.0000 l -0.5952,-1.7260 l 4.5829,0.0000 l 0.0000,-3.2735 c 0.0000,-0.1488 0.0595,-0.2381 0.1786 -0.2381l 0.5952,0.0000 c 0.2678,0.0000 0.3869,0.4166 0.3869 0.7142l -0.0000,2.7973 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 562.1769,137.6800 ZM 565.3766,136.9218 c -0.3666,0.6333 -0.7666,0.8582 -1.2665 0.8582c -0.9999,-0.0000 -1.6248,-0.7583 -1.6248 -1.8331c 0.0000,-1.1832 0.7416,-1.9498 1.6415 -1.9498c 0.7999,-0.0000 1.2249,0.4083 1.2249 0.8499c 0.0000,0.2416 -0.1500,0.3666 -0.3250 0.3666c -0.1750,-0.0000 -0.3416,-0.0917 -0.3666 -0.3000c -0.0333,-0.2750 -0.0833,-0.6333 -0.5749 -0.6333c -0.5499,-0.0000 -0.9582,0.5833 -0.9582 1.4832c 0.0000,0.9749 0.5249,1.6498 1.1665 1.6498c 0.3583,-0.0000 0.6749,-0.2333 0.9332 -0.6083ZM 565.5349,137.6800 ZM 565.8182,135.9719 c 0.0000,-1.1415 0.6166,-1.9748 1.7248 -1.9748c 1.2332,-0.0000 1.7082,1.0332 1.7082 1.8998c 0.0000,0.8332 -0.5416,1.8831 -1.7248 1.8831c -1.1166,-0.0000 -1.7082,-0.9582 -1.7082 -1.8081ZM 565.8182,135.9719 ZM 567.4514,134.2720 c -0.6666,-0.0000 -0.9749,0.7833 -0.9749 1.5082c 0.0000,0.6416 0.3666,1.7082 1.1915 1.7082c 0.3750,-0.0000 0.9249,-0.2250 0.9249 -1.3249c 0.0000,-1.2249 -0.4583,-1.8915 -1.1415 -1.8915ZM 569.5262,137.6800 ZM 569.8845,136.5135 l 0.2250,-0.0083 c 0.0250,0.2083 0.1167,0.6083 0.3000 0.7999c 0.0833,0.0917 0.3083,0.2416 0.6166 0.2416c 0.2916,-0.0000 0.7249,-0.2333 0.7249 -0.6416c 0.0000,-0.3583 -0.2000,-0.5999 -0.8582 -0.8832c -0.6083,-0.2666 -0.9249,-0.4416 -0.9249 -1.0666c 0.0000,-0.5583 0.4916,-0.9582 1.1499 -0.9582c 0.4166,-0.0000 0.7249,0.0750 0.9832 0.2083c 0.0500,0.2666 0.0750,0.5499 0.0917 0.8499l -0.2250,0.0083 c -0.1750,-0.6833 -0.6749,-0.8166 -0.8499 -0.8166c -0.3166,-0.0000 -0.6416,0.1250 -0.6416 0.5833c 0.0000,0.3333 0.1583,0.4999 0.6166 0.6666c 0.6749,0.2500 1.2165,0.5499 1.2165 1.2165c 0.0000,0.8249 -0.8749,1.0666 -1.2665 1.0666c -0.2916,-0.0000 -0.5333,-0.0333 -0.7499 -0.0917c -0.0583,-0.0083 -0.1000,-0.0167 -0.1583 -0.0167c -0.0417,-0.0000 -0.1083,0.0083 -0.1916 0.0250c 0.0000,-0.3500 -0.0250,-0.7749 -0.0583 -1.1832Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 559.3058,138.9233 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 564.3303,121.6174 ZM 564.6886,120.4509 l 0.2250,-0.0083 c 0.0250,0.2083 0.1167,0.6083 0.3000 0.7999c 0.0833,0.0917 0.3083,0.2416 0.6166 0.2416c 0.2916,-0.0000 0.7249,-0.2333 0.7249 -0.6416c 0.0000,-0.3583 -0.2000,-0.5999 -0.8582 -0.8832c -0.6083,-0.2666 -0.9249,-0.4416 -0.9249 -1.0666c 0.0000,-0.5583 0.4916,-0.9582 1.1499 -0.9582c 0.4166,-0.0000 0.7249,0.0750 0.9832 0.2083c 0.0500,0.2666 0.0750,0.5499 0.0917 0.8499l -0.2250,0.0083 c -0.1750,-0.6833 -0.6749,-0.8166 -0.8499 -0.8166c -0.3166,-0.0000 -0.6416,0.1250 -0.6416 0.5833c 0.0000,0.3333 0.1583,0.4999 0.6166 0.6666c 0.6749,0.2500 1.2165,0.5499 1.2165 1.2165c 0.0000,0.8249 -0.8749,1.0666 -1.2665 1.0666c -0.2916,-0.0000 -0.5333,-0.0333 -0.7499 -0.0917c -0.0583,-0.0083 -0.1000,-0.0167 -0.1583 -0.0167c -0.0417,-0.0000 -0.1083,0.0083 -0.1916 0.0250c 0.0000,-0.3500 -0.0250,-0.7749 -0.0583 -1.1832ZM 567.4216,121.6174 ZM 568.0715,116.8596 c 0.0000,-0.2166 0.1750,-0.4000 0.3916 -0.4000c 0.2250,-0.0000 0.4000,0.1833 0.4000 0.4000c 0.0000,0.2250 -0.1750,0.4000 -0.4000 0.4000c -0.2166,-0.0000 -0.3916,-0.1750 -0.3916 -0.4000ZM 568.0715,116.8596 ZM 568.8631,121.0175 c 0.0000,0.2416 0.0917,0.3666 0.3583 0.3666h 0.1583 c 0.0417,-0.0000 0.0750,0.0250 0.0750 0.0667v 0.1583 l -0.0167,0.0167 c 0.0000,-0.0000 -0.5749,-0.0167 -0.8999 -0.0167c -0.2916,-0.0000 -0.8582,0.0167 -0.8582 0.0167l -0.0167,-0.0167 v -0.1583 c 0.0000,-0.0417 0.0250,-0.0667 0.0667 -0.0667h 0.1583 c 0.2750,-0.0000 0.3583,-0.1250 0.3583 -0.3666v -2.0748 c 0.0000,-0.4416 -0.0750,-0.5083 -0.1916 -0.5083c -0.1083,-0.0000 -0.2083,0.0083 -0.3500 0.0417l -0.0417,-0.2333 c 0.5333,-0.0917 0.6249,-0.1250 0.8666 -0.2416c 0.0917,-0.0333 0.1500,-0.0667 0.2083 -0.0667h 0.1250 v 3.0830 ZM 569.6214,121.6174 ZM 572.6544,121.0175 v -1.8248 c 0.0000,-0.5833 -0.1000,-0.8582 -0.5416 -0.8582c -0.3666,-0.0000 -0.6833,0.1417 -1.1082 0.6416v 2.0415 c 0.0000,0.2416 0.0833,0.3666 0.3583 0.3666h 0.1167 c 0.0417,-0.0000 0.0667,0.0250 0.0667 0.0667v 0.1583 l -0.0167,0.0167 c 0.0000,-0.0000 -0.5249,-0.0167 -0.8499 -0.0167c -0.3000,-0.0000 -0.8666,0.0167 -0.8666 0.0167l -0.0167,-0.0167 v -0.1583 c 0.0000,-0.0417 0.0250,-0.0667 0.0667 -0.0667h 0.1583 c 0.2833,-0.0000 0.3583,-0.1250 0.3583 -0.3666v -2.0748 c 0.0000,-0.4500 -0.0667,-0.5083 -0.1833 -0.5083c -0.1083,-0.0000 -0.2083,0.0083 -0.3500 0.0417l -0.0417,-0.2333 c 0.3500,-0.0583 0.5999,-0.1000 0.8582 -0.2416c 0.0917,-0.0417 0.1583,-0.0667 0.2166 -0.0667h 0.1250 l -0.0250,0.7416 h 0.0250 c 0.5333,-0.6249 0.9332,-0.7416 1.3582 -0.7416c 0.7499,-0.0000 0.9082,0.5749 0.9082 1.3165v 1.7665 c 0.0000,0.2416 0.0917,0.3666 0.3583 0.3666h 0.1583 c 0.0417,-0.0000 0.0750,0.0250 0.0750 0.0667v 0.1583 l -0.0167,0.0167 c 0.0000,-0.0000 -0.5749,-0.0167 -0.8999 -0.0167c -0.2916,-0.0000 -0.8166,0.0167 -0.8166 0.0167l -0.0167,-0.0167 v -0.1583 c 0.0000,-0.0417 0.0250,-0.0667 0.0667 -0.0667h 0.1167 c 0.2750,-0.0000 0.3583,-0.1250 0.3583 -0.3666Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 561.4591,121.6174 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.2" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.6897903241456126" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 575.0097,141.5853 l -0.0000,-28.7227 h -23.2194 l -0.0000,28.7227 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 91.2452,260.6759 l -0.0000,-143.5566 h -2.8711 l -0.0000,143.5566 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.3577,117.1193 ZM 76.1479,112.5769 c -0.1809,-0.0000 -0.5999,0.1714 -0.8094 0.2666l -0.1143,-0.2952 c 0.8380,-0.3904 1.1618,-0.5904 1.6379 -0.9332h 0.1809 v 4.7900 c 0.0000,0.3428 0.0476,0.4380 0.3619 0.4380h 0.4952 c 0.0286,-0.0000 0.0762,0.0190 0.0762 0.0762v 0.2095 l -1.3046,-0.0190 l -1.3237,0.0190 v -0.2095 c 0.0095,-0.0286 0.0190,-0.0762 0.0762 -0.0762h 0.5714 c 0.3619,-0.0000 0.3619,-0.1619 0.3619 -0.4380v -3.2759 c 0.0000,-0.3238 0.0000,-0.5523 -0.2095 -0.5523ZM 78.5286,117.1193 ZM 79.0714,116.7289 c 0.0000,-0.2762 0.2285,-0.5047 0.5047 -0.5047c 0.2762,-0.0000 0.5047,0.2285 0.5047 0.5047c 0.0000,0.2762 -0.2285,0.5047 -0.5047 0.5047c -0.2762,-0.0000 -0.5047,-0.2285 -0.5047 -0.5047ZM 80.6141,117.1193 ZM 82.6996,111.9484 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 82.6996,111.9484 ZM 82.6616,117.2336 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 86.9385,117.1193 h 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.3577,131.4755 ZM 76.4431,126.3046 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 76.4431,126.3046 ZM 76.4051,131.5898 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473ZM 78.5286,131.4755 ZM 79.0714,131.0851 c 0.0000,-0.2762 0.2285,-0.5047 0.5047 -0.5047c 0.2762,-0.0000 0.5047,0.2285 0.5047 0.5047c 0.0000,0.2762 -0.2285,0.5047 -0.5047 0.5047c -0.2762,-0.0000 -0.5047,-0.2285 -0.5047 -0.5047ZM 80.6141,131.4755 ZM 82.7282,126.1999 c -0.5428,-0.0000 -0.8951,0.4285 -0.8951 0.8475c 0.0000,0.2762 0.1143,0.6095 0.6856 0.9809l 0.2762,0.1714 c 0.2476,-0.1809 0.8285,-0.6190 0.8285 -1.1046c 0.0000,-0.4190 -0.3047,-0.8951 -0.8951 -0.8951ZM 82.7282,126.1999 ZM 84.1852,127.1045 c 0.0000,0.5809 -0.6571,1.0380 -1.0570 1.3046l 0.5523,0.3619 c 0.4666,0.3047 0.7047,0.7237 0.7047 1.2475c 0.0000,0.6856 -0.5618,1.5713 -1.7427 1.5713c -0.9523,-0.0000 -1.6094,-0.5047 -1.6094 -1.4284c 0.0000,-0.3523 0.1524,-0.7618 0.5238 -1.0856c 0.2285,-0.2000 0.4285,-0.3714 0.6571 -0.5428l -0.1619,-0.0952 c -0.5523,-0.3428 -0.8285,-0.7142 -0.8285 -1.2189c 0.0000,-0.6952 0.6285,-1.2475 1.5522 -1.2475c 0.8856,-0.0000 1.4094,0.4857 1.4094 1.1332ZM 84.1852,127.1045 ZM 82.6616,131.3231 c 0.4095,-0.0000 1.1237,-0.2190 1.1237 -1.1237c 0.0000,-0.4285 -0.2666,-0.8571 -0.8285 -1.1999l -0.4190,-0.2571 c -0.7713,0.5142 -0.9428,1.1523 -0.9428 1.4189c 0.0000,0.8094 0.6571,1.1618 1.0666 1.1618Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 86.9385,131.4755 h 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.3577,145.8317 ZM 76.4431,140.6608 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 76.4431,140.6608 ZM 76.4051,145.9460 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473ZM 78.5286,145.8317 ZM 79.0714,145.4413 c 0.0000,-0.2762 0.2285,-0.5047 0.5047 -0.5047c 0.2762,-0.0000 0.5047,0.2285 0.5047 0.5047c 0.0000,0.2762 -0.2285,0.5047 -0.5047 0.5047c -0.2762,-0.0000 -0.5047,-0.2285 -0.5047 -0.5047ZM 80.6141,145.8317 ZM 81.7188,143.3367 c -0.0095,0.0952 -0.0095,0.2381 -0.0095 0.3333c 0.0000,1.5998 0.7142,1.9998 1.1904 1.9998c 0.4380,-0.0000 0.9047,-0.4095 0.9047 -1.3999c 0.0000,-0.4476 -0.2285,-1.3618 -1.1427 -1.3618c -0.2000,-0.0000 -0.5618,0.0190 -0.9428 0.4285ZM 81.7188,143.3367 ZM 84.2138,140.5751 c -0.6190,0.0571 -1.1523,0.2190 -1.6094 0.6666c -0.4380,0.4285 -0.7523,1.0666 -0.8571 1.8284c 0.2190,-0.2666 0.7428,-0.4666 1.1046 -0.4666c 1.4094,-0.0000 1.5903,1.1618 1.5903 1.5998c 0.0000,0.6476 -0.3238,1.7427 -1.6379 1.7427c -0.6952,-0.0000 -1.7522,-0.4095 -1.7522 -2.3045c 0.0000,-0.8761 0.2952,-1.7332 0.9523 -2.3902c 0.6095,-0.6190 1.2475,-0.8761 2.1807 -0.9237Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 86.9385,145.8317 h 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.3577,160.1879 ZM 76.4431,155.0170 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 76.4431,155.0170 ZM 76.4051,160.3022 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473ZM 78.5286,160.1879 ZM 79.0714,159.7975 c 0.0000,-0.2762 0.2285,-0.5047 0.5047 -0.5047c 0.2762,-0.0000 0.5047,0.2285 0.5047 0.5047c 0.0000,0.2762 -0.2285,0.5047 -0.5047 0.5047c -0.2762,-0.0000 -0.5047,-0.2285 -0.5047 -0.5047ZM 80.6141,160.1879 ZM 83.0710,156.8073 c 0.0000,-0.0667 0.0095,-0.1428 0.0952 -0.1905c 0.1048,-0.0762 0.2762,-0.1619 0.4190 -0.1619c 0.1238,-0.0000 0.1333,0.1048 0.1333 0.2952v 1.5332 h 0.7713 l -0.0571,0.4476 h -0.7142 v 0.7904 c 0.0000,0.2666 0.0381,0.4000 0.3143 0.4000h 0.2571 c 0.0571,-0.0000 0.0667,0.0476 0.0667 0.0667v 0.2095 c 0.0000,-0.0000 -0.6095,-0.0190 -1.0094 -0.0190c -0.3619,-0.0000 -0.9237,0.0190 -0.9237 0.0190v -0.2095 c 0.0000,-0.0190 0.0095,-0.0667 0.0667 -0.0667h 0.2571 c 0.2952,-0.0000 0.3238,-0.1238 0.3238 -0.4000v -0.7904 h -1.8665 c -0.0381,-0.0000 -0.0571,-0.0190 -0.0857 -0.0571l -0.0762,-0.1048 l -0.1143,-0.2000 c -0.0095,-0.0000 -0.0095,-0.0095 -0.0095 -0.0190c 0.0000,-0.0095 0.0095,-0.0190 0.0190 -0.0286c 0.6190,-0.6856 1.7141,-2.8092 2.0569 -3.5901c 0.0095,-0.0381 0.0286,-0.0476 0.0667 -0.0476c 0.0095,-0.0000 0.2190,0.0857 0.3333 0.1048c -0.4285,1.1523 -1.1332,2.3902 -1.8284 3.4949h 1.5046 v -1.4760 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 86.9385,160.1879 h 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.3577,174.5441 ZM 76.4431,169.3732 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 76.4431,169.3732 ZM 76.4051,174.6584 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473ZM 78.5286,174.5441 ZM 79.0714,174.1537 c 0.0000,-0.2762 0.2285,-0.5047 0.5047 -0.5047c 0.2762,-0.0000 0.5047,0.2285 0.5047 0.5047c 0.0000,0.2762 -0.2285,0.5047 -0.5047 0.5047c -0.2762,-0.0000 -0.5047,-0.2285 -0.5047 -0.5047ZM 80.6141,174.5441 ZM 81.1665,170.3255 c 0.0000,-0.5428 0.5238,-1.2856 1.5237 -1.2856c 0.7333,-0.0000 1.5903,0.2762 1.5903 1.3713c 0.0000,0.7237 -0.3714,1.0856 -0.8856 1.5808l -0.9047,0.8761 c -0.0476,0.0476 -0.6856,0.6761 -0.6856 1.1237h 1.6189 c 0.3238,-0.0000 0.4952,-0.1619 0.6285 -0.6856l 0.2381,0.0381 l -0.1905,1.1999 h -2.9426 c 0.0000,-0.5333 0.0857,-0.9428 0.9713 -1.8474l 0.6666,-0.6571 c 0.5333,-0.5428 0.7523,-1.0094 0.7523 -1.5903c 0.0000,-0.8666 -0.5904,-1.1142 -0.9142 -1.1142c -0.6571,-0.0000 -0.8380,0.3428 -0.8380 0.5714c 0.0000,0.0762 0.0190,0.1524 0.0381 0.2190c 0.0190,0.0667 0.0381,0.1333 0.0381 0.2095c 0.0000,0.2476 -0.1905,0.3428 -0.3428 0.3428c -0.2095,-0.0000 -0.3619,-0.1619 -0.3619 -0.3523Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 86.9385,174.5441 h 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.3577,188.9003 ZM 76.4431,183.7294 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 76.4431,183.7294 ZM 76.4051,189.0146 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473ZM 78.5286,188.9003 ZM 79.0714,188.5099 c 0.0000,-0.2762 0.2285,-0.5047 0.5047 -0.5047c 0.2762,-0.0000 0.5047,0.2285 0.5047 0.5047c 0.0000,0.2762 -0.2285,0.5047 -0.5047 0.5047c -0.2762,-0.0000 -0.5047,-0.2285 -0.5047 -0.5047ZM 80.6141,188.9003 ZM 82.6996,183.7294 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 82.6996,183.7294 ZM 82.6616,189.0146 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 86.9385,188.9003 h 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 71.1866,203.2565 ZM 73.7958,201.0092 h -2.1522 c -0.0857,-0.0000 -0.1428,-0.0762 -0.1428 -0.1619c 0.0000,-0.1524 0.1238,-0.3523 0.2381 -0.3523h 2.1807 c 0.0952,-0.0000 0.1333,0.0857 0.1333 0.1714c 0.0000,0.1048 -0.1333,0.3428 -0.2571 0.3428ZM 74.3577,203.2565 ZM 76.4431,198.0856 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 76.4431,198.0856 ZM 76.4051,203.3708 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473ZM 78.5286,203.2565 ZM 79.0714,202.8661 c 0.0000,-0.2762 0.2285,-0.5047 0.5047 -0.5047c 0.2762,-0.0000 0.5047,0.2285 0.5047 0.5047c 0.0000,0.2762 -0.2285,0.5047 -0.5047 0.5047c -0.2762,-0.0000 -0.5047,-0.2285 -0.5047 -0.5047ZM 80.6141,203.2565 ZM 81.1665,199.0379 c 0.0000,-0.5428 0.5238,-1.2856 1.5237 -1.2856c 0.7333,-0.0000 1.5903,0.2762 1.5903 1.3713c 0.0000,0.7237 -0.3714,1.0856 -0.8856 1.5808l -0.9047,0.8761 c -0.0476,0.0476 -0.6856,0.6761 -0.6856 1.1237h 1.6189 c 0.3238,-0.0000 0.4952,-0.1619 0.6285 -0.6856l 0.2381,0.0381 l -0.1905,1.1999 h -2.9426 c 0.0000,-0.5333 0.0857,-0.9428 0.9713 -1.8474l 0.6666,-0.6571 c 0.5333,-0.5428 0.7523,-1.0094 0.7523 -1.5903c 0.0000,-0.8666 -0.5904,-1.1142 -0.9142 -1.1142c -0.6571,-0.0000 -0.8380,0.3428 -0.8380 0.5714c 0.0000,0.0762 0.0190,0.1524 0.0381 0.2190c 0.0190,0.0667 0.0381,0.1333 0.0381 0.2095c 0.0000,0.2476 -0.1905,0.3428 -0.3428 0.3428c -0.2095,-0.0000 -0.3619,-0.1619 -0.3619 -0.3523Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 86.9385,203.2565 h 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 71.1866,217.6127 ZM 73.7958,215.3654 h -2.1522 c -0.0857,-0.0000 -0.1428,-0.0762 -0.1428 -0.1619c 0.0000,-0.1524 0.1238,-0.3523 0.2381 -0.3523h 2.1807 c 0.0952,-0.0000 0.1333,0.0857 0.1333 0.1714c 0.0000,0.1048 -0.1333,0.3428 -0.2571 0.3428ZM 74.3577,217.6127 ZM 76.4431,212.4419 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 76.4431,212.4419 ZM 76.4051,217.7270 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473ZM 78.5286,217.6127 ZM 79.0714,217.2223 c 0.0000,-0.2762 0.2285,-0.5047 0.5047 -0.5047c 0.2762,-0.0000 0.5047,0.2285 0.5047 0.5047c 0.0000,0.2762 -0.2285,0.5047 -0.5047 0.5047c -0.2762,-0.0000 -0.5047,-0.2285 -0.5047 -0.5047ZM 80.6141,217.6127 ZM 83.0710,214.2321 c 0.0000,-0.0667 0.0095,-0.1428 0.0952 -0.1905c 0.1048,-0.0762 0.2762,-0.1619 0.4190 -0.1619c 0.1238,-0.0000 0.1333,0.1048 0.1333 0.2952v 1.5332 h 0.7713 l -0.0571,0.4476 h -0.7142 v 0.7904 c 0.0000,0.2666 0.0381,0.4000 0.3143 0.4000h 0.2571 c 0.0571,-0.0000 0.0667,0.0476 0.0667 0.0667v 0.2095 c 0.0000,-0.0000 -0.6095,-0.0190 -1.0094 -0.0190c -0.3619,-0.0000 -0.9237,0.0190 -0.9237 0.0190v -0.2095 c 0.0000,-0.0190 0.0095,-0.0667 0.0667 -0.0667h 0.2571 c 0.2952,-0.0000 0.3238,-0.1238 0.3238 -0.4000v -0.7904 h -1.8665 c -0.0381,-0.0000 -0.0571,-0.0190 -0.0857 -0.0571l -0.0762,-0.1048 l -0.1143,-0.2000 c -0.0095,-0.0000 -0.0095,-0.0095 -0.0095 -0.0190c 0.0000,-0.0095 0.0095,-0.0190 0.0190 -0.0286c 0.6190,-0.6856 1.7141,-2.8092 2.0569 -3.5901c 0.0095,-0.0381 0.0286,-0.0476 0.0667 -0.0476c 0.0095,-0.0000 0.2190,0.0857 0.3333 0.1048c -0.4285,1.1523 -1.1332,2.3902 -1.8284 3.4949h 1.5046 v -1.4760 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 86.9385,217.6127 h 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 71.1866,231.9690 ZM 73.7958,229.7216 h -2.1522 c -0.0857,-0.0000 -0.1428,-0.0762 -0.1428 -0.1619c 0.0000,-0.1524 0.1238,-0.3523 0.2381 -0.3523h 2.1807 c 0.0952,-0.0000 0.1333,0.0857 0.1333 0.1714c 0.0000,0.1048 -0.1333,0.3428 -0.2571 0.3428ZM 74.3577,231.9690 ZM 76.4431,226.7981 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 76.4431,226.7981 ZM 76.4051,232.0832 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473ZM 78.5286,231.9690 ZM 79.0714,231.5785 c 0.0000,-0.2762 0.2285,-0.5047 0.5047 -0.5047c 0.2762,-0.0000 0.5047,0.2285 0.5047 0.5047c 0.0000,0.2762 -0.2285,0.5047 -0.5047 0.5047c -0.2762,-0.0000 -0.5047,-0.2285 -0.5047 -0.5047ZM 80.6141,231.9690 ZM 81.7188,229.4740 c -0.0095,0.0952 -0.0095,0.2381 -0.0095 0.3333c 0.0000,1.5998 0.7142,1.9998 1.1904 1.9998c 0.4380,-0.0000 0.9047,-0.4095 0.9047 -1.3999c 0.0000,-0.4476 -0.2285,-1.3618 -1.1427 -1.3618c -0.2000,-0.0000 -0.5618,0.0190 -0.9428 0.4285ZM 81.7188,229.4740 ZM 84.2138,226.7124 c -0.6190,0.0571 -1.1523,0.2190 -1.6094 0.6666c -0.4380,0.4285 -0.7523,1.0666 -0.8571 1.8284c 0.2190,-0.2666 0.7428,-0.4666 1.1046 -0.4666c 1.4094,-0.0000 1.5903,1.1618 1.5903 1.5998c 0.0000,0.6476 -0.3238,1.7427 -1.6379 1.7427c -0.6952,-0.0000 -1.7522,-0.4095 -1.7522 -2.3045c 0.0000,-0.8761 0.2952,-1.7332 0.9523 -2.3902c 0.6095,-0.6190 1.2475,-0.8761 2.1807 -0.9237Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 86.9385,231.9690 h 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 71.1866,246.3252 ZM 73.7958,244.0778 h -2.1522 c -0.0857,-0.0000 -0.1428,-0.0762 -0.1428 -0.1619c 0.0000,-0.1524 0.1238,-0.3523 0.2381 -0.3523h 2.1807 c 0.0952,-0.0000 0.1333,0.0857 0.1333 0.1714c 0.0000,0.1048 -0.1333,0.3428 -0.2571 0.3428ZM 74.3577,246.3252 ZM 76.4431,241.1543 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 76.4431,241.1543 ZM 76.4051,246.4394 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473ZM 78.5286,246.3252 ZM 79.0714,245.9347 c 0.0000,-0.2762 0.2285,-0.5047 0.5047 -0.5047c 0.2762,-0.0000 0.5047,0.2285 0.5047 0.5047c 0.0000,0.2762 -0.2285,0.5047 -0.5047 0.5047c -0.2762,-0.0000 -0.5047,-0.2285 -0.5047 -0.5047ZM 80.6141,246.3252 ZM 82.7282,241.0495 c -0.5428,-0.0000 -0.8951,0.4285 -0.8951 0.8475c 0.0000,0.2762 0.1143,0.6095 0.6856 0.9809l 0.2762,0.1714 c 0.2476,-0.1809 0.8285,-0.6190 0.8285 -1.1046c 0.0000,-0.4190 -0.3047,-0.8951 -0.8951 -0.8951ZM 82.7282,241.0495 ZM 84.1852,241.9542 c 0.0000,0.5809 -0.6571,1.0380 -1.0570 1.3046l 0.5523,0.3619 c 0.4666,0.3047 0.7047,0.7237 0.7047 1.2475c 0.0000,0.6856 -0.5618,1.5713 -1.7427 1.5713c -0.9523,-0.0000 -1.6094,-0.5047 -1.6094 -1.4284c 0.0000,-0.3523 0.1524,-0.7618 0.5238 -1.0856c 0.2285,-0.2000 0.4285,-0.3714 0.6571 -0.5428l -0.1619,-0.0952 c -0.5523,-0.3428 -0.8285,-0.7142 -0.8285 -1.2189c 0.0000,-0.6952 0.6285,-1.2475 1.5522 -1.2475c 0.8856,-0.0000 1.4094,0.4857 1.4094 1.1332ZM 84.1852,241.9542 ZM 82.6616,246.1728 c 0.4095,-0.0000 1.1237,-0.2190 1.1237 -1.1237c 0.0000,-0.4285 -0.2666,-0.8571 -0.8285 -1.1999l -0.4190,-0.2571 c -0.7713,0.5142 -0.9428,1.1523 -0.9428 1.4189c 0.0000,0.8094 0.6571,1.1618 1.0666 1.1618Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 86.9385,246.3252 h 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 538.3560,273.6459 l -0.0000,-2.8711 h -430.6697 l -0.0000,2.8711 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 532.0995,285.7483 ZM 533.8898,281.2059 c -0.1809,-0.0000 -0.5999,0.1714 -0.8094 0.2666l -0.1143,-0.2952 c 0.8380,-0.3904 1.1618,-0.5904 1.6379 -0.9332h 0.1809 v 4.7900 c 0.0000,0.3428 0.0476,0.4380 0.3619 0.4380h 0.4952 c 0.0286,-0.0000 0.0762,0.0190 0.0762 0.0762v 0.2095 l -1.3046,-0.0190 l -1.3237,0.0190 v -0.2095 c 0.0095,-0.0286 0.0190,-0.0762 0.0762 -0.0762h 0.5714 c 0.3619,-0.0000 0.3619,-0.1619 0.3619 -0.4380v -3.2759 c 0.0000,-0.3238 0.0000,-0.5523 -0.2095 -0.5523ZM 536.2705,285.7483 ZM 538.3560,280.5774 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 538.3560,280.5774 ZM 538.3179,285.8625 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473ZM 540.4415,285.7483 ZM 542.5270,280.5774 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 542.5270,280.5774 ZM 542.4889,285.8625 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 538.3560,270.7748 v 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 491.1180,285.7483 ZM 494.1558,282.8533 c 0.0000,-0.0952 0.0095,-0.2381 0.0095 -0.3333c 0.0000,-1.5998 -0.7142,-1.9998 -1.1999 -1.9998c -0.4380,-0.0000 -0.8951,0.4095 -0.8951 1.3999c 0.0000,0.4571 0.2285,1.3618 1.1332 1.3618c 0.2000,-0.0000 0.5618,-0.0190 0.9523 -0.4285ZM 494.1558,282.8533 ZM 491.6513,285.6149 c 0.6285,-0.0571 1.1523,-0.2190 1.6189 -0.6666c 0.4285,-0.4285 0.7428,-1.0666 0.8571 -1.8284c -0.2190,0.2666 -0.7523,0.4666 -1.1046 0.4666c -1.4094,-0.0000 -1.5998,-1.1618 -1.5998 -1.5998c 0.0000,-0.6476 0.3238,-1.7427 1.6379 -1.7427c 0.7047,-0.0000 1.7617,0.4095 1.7617 2.3045c 0.0000,0.8761 -0.3047,1.7332 -0.9523 2.3902c -0.6095,0.6190 -1.2570,0.8761 -2.1902 0.9237ZM 495.2890,285.7483 ZM 497.3745,280.5774 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 497.3745,280.5774 ZM 497.3364,285.8625 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 495.2890,270.7748 v 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 448.0511,285.7483 ZM 450.1651,280.4726 c -0.5428,-0.0000 -0.8951,0.4285 -0.8951 0.8475c 0.0000,0.2762 0.1143,0.6095 0.6856 0.9809l 0.2762,0.1714 c 0.2476,-0.1809 0.8285,-0.6190 0.8285 -1.1046c 0.0000,-0.4190 -0.3047,-0.8951 -0.8951 -0.8951ZM 450.1651,280.4726 ZM 451.6221,281.3773 c 0.0000,0.5809 -0.6571,1.0380 -1.0570 1.3046l 0.5523,0.3619 c 0.4666,0.3047 0.7047,0.7237 0.7047 1.2475c 0.0000,0.6856 -0.5618,1.5713 -1.7427 1.5713c -0.9523,-0.0000 -1.6094,-0.5047 -1.6094 -1.4284c 0.0000,-0.3523 0.1524,-0.7618 0.5238 -1.0856c 0.2285,-0.2000 0.4285,-0.3714 0.6571 -0.5428l -0.1619,-0.0952 c -0.5523,-0.3428 -0.8285,-0.7142 -0.8285 -1.2189c 0.0000,-0.6952 0.6285,-1.2475 1.5522 -1.2475c 0.8856,-0.0000 1.4094,0.4857 1.4094 1.1332ZM 451.6221,281.3773 ZM 450.0985,285.5959 c 0.4095,-0.0000 1.1237,-0.2190 1.1237 -1.1237c 0.0000,-0.4285 -0.2666,-0.8571 -0.8285 -1.1999l -0.4190,-0.2571 c -0.7713,0.5142 -0.9428,1.1523 -0.9428 1.4189c 0.0000,0.8094 0.6571,1.1618 1.0666 1.1618ZM 452.2221,285.7483 ZM 454.3076,280.5774 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 454.3076,280.5774 ZM 454.2695,285.8625 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 452.2221,270.7748 v 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.9841,285.7483 ZM 406.4125,280.9107 c -0.4190,-0.0000 -0.5618,0.1714 -0.7428 0.6571l -0.2476,-0.0381 c 0.1143,-0.3904 0.2095,-0.7523 0.2381 -1.2856h 0.2000 c 0.0381,0.0571 0.0667,0.1048 0.2857 0.1048h 1.8093 c 0.3428,-0.0000 0.5428,-0.0095 0.6952 -0.0571l 0.1428,0.0667 c -1.0094,2.4569 -1.5427,3.9424 -2.0569 5.4756l -0.6190,0.0286 l -0.0286,-0.0571 c 0.6095,-1.3713 1.3332,-3.1425 2.0379 -4.8947h -1.7141 ZM 409.1551,285.7483 ZM 411.2406,280.5774 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 411.2406,280.5774 ZM 411.2025,285.8625 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 409.1551,270.7748 v 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.9171,285.7483 ZM 363.0218,283.2533 c -0.0095,0.0952 -0.0095,0.2381 -0.0095 0.3333c 0.0000,1.5998 0.7142,1.9998 1.1904 1.9998c 0.4380,-0.0000 0.9047,-0.4095 0.9047 -1.3999c 0.0000,-0.4476 -0.2285,-1.3618 -1.1427 -1.3618c -0.2000,-0.0000 -0.5618,0.0190 -0.9428 0.4285ZM 363.0218,283.2533 ZM 365.5168,280.4917 c -0.6190,0.0571 -1.1523,0.2190 -1.6094 0.6666c -0.4380,0.4285 -0.7523,1.0666 -0.8571 1.8284c 0.2190,-0.2666 0.7428,-0.4666 1.1046 -0.4666c 1.4094,-0.0000 1.5903,1.1618 1.5903 1.5998c 0.0000,0.6476 -0.3238,1.7427 -1.6379 1.7427c -0.6952,-0.0000 -1.7522,-0.4095 -1.7522 -2.3045c 0.0000,-0.8761 0.2952,-1.7332 0.9523 -2.3902c 0.6095,-0.6190 1.2475,-0.8761 2.1807 -0.9237ZM 366.0881,285.7483 ZM 368.1736,280.5774 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 368.1736,280.5774 ZM 368.1355,285.8625 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 366.0881,270.7748 v 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.8502,285.7483 ZM 321.7927,284.1389 c 0.0000,-0.9809 -0.5333,-1.4665 -1.1237 -1.4665c -0.4380,-0.0000 -0.7713,0.0667 -1.1427 0.2190l 0.3047,-2.5997 c 0.3143,0.0286 0.6380,0.0381 0.9713 0.0381c 0.4761,-0.0000 0.9713,-0.0286 1.4856 -0.0857l 0.0571,0.0286 l -0.1428,0.6190 c -0.3714,0.0381 -0.6761,0.0476 -0.9428 0.0476c -0.4285,-0.0000 -0.7523,-0.0381 -1.0856 -0.0762l -0.1809,1.5046 c 0.2000,-0.0762 0.5428,-0.1428 0.9142 -0.1428c 1.0094,-0.0000 1.5713,0.8761 1.5713 1.7522c 0.0000,1.0666 -0.7428,1.8855 -1.8189 1.8855c -0.5428,-0.0000 -1.3332,-0.3047 -1.3332 -0.6761c 0.0000,-0.1809 0.1524,-0.3047 0.3238 -0.3047c 0.1905,-0.0000 0.3143,0.1428 0.4285 0.2952c 0.1428,0.1714 0.2952,0.3619 0.5999 0.3619c 0.6095,-0.0000 1.1142,-0.5714 1.1142 -1.3999ZM 323.0212,285.7483 ZM 325.1067,280.5774 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 325.1067,280.5774 ZM 325.0686,285.8625 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 323.0212,270.7748 v 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 275.7832,285.7483 ZM 278.2401,282.3677 c 0.0000,-0.0667 0.0095,-0.1428 0.0952 -0.1905c 0.1048,-0.0762 0.2762,-0.1619 0.4190 -0.1619c 0.1238,-0.0000 0.1333,0.1048 0.1333 0.2952v 1.5332 h 0.7713 l -0.0571,0.4476 h -0.7142 v 0.7904 c 0.0000,0.2666 0.0381,0.4000 0.3143 0.4000h 0.2571 c 0.0571,-0.0000 0.0667,0.0476 0.0667 0.0667v 0.2095 c 0.0000,-0.0000 -0.6095,-0.0190 -1.0094 -0.0190c -0.3619,-0.0000 -0.9237,0.0190 -0.9237 0.0190v -0.2095 c 0.0000,-0.0190 0.0095,-0.0667 0.0667 -0.0667h 0.2571 c 0.2952,-0.0000 0.3238,-0.1238 0.3238 -0.4000v -0.7904 h -1.8665 c -0.0381,-0.0000 -0.0571,-0.0190 -0.0857 -0.0571l -0.0762,-0.1048 l -0.1143,-0.2000 c -0.0095,-0.0000 -0.0095,-0.0095 -0.0095 -0.0190c 0.0000,-0.0095 0.0095,-0.0190 0.0190 -0.0286c 0.6190,-0.6856 1.7141,-2.8092 2.0569 -3.5901c 0.0095,-0.0381 0.0286,-0.0476 0.0667 -0.0476c 0.0095,-0.0000 0.2190,0.0857 0.3333 0.1048c -0.4285,1.1523 -1.1332,2.3902 -1.8284 3.4949h 1.5046 v -1.4760 ZM 279.9542,285.7483 ZM 282.0397,280.5774 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 282.0397,280.5774 ZM 282.0016,285.8625 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 279.9542,270.7748 v 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 232.7162,285.7483 ZM 234.7732,280.5393 c -0.2381,-0.0000 -0.9332,0.1333 -0.9332 0.7142c 0.0000,0.1714 -0.0667,0.4666 -0.3238 0.4666c -0.2476,-0.0000 -0.2666,-0.2762 -0.2666 -0.3047c 0.0000,-0.2952 0.3904,-1.1713 1.7141 -1.1713c 0.9237,-0.0000 1.1999,0.5809 1.1999 0.9618c 0.0000,0.2381 -0.0762,0.7142 -0.9332 1.2570c 0.5333,0.0857 1.2380,0.4761 1.2380 1.4665c 0.0000,1.2570 -0.9523,1.9331 -2.0284 1.9331c -0.5428,-0.0000 -1.3046,-0.2381 -1.3046 -0.5999c 0.0000,-0.1428 0.1428,-0.3047 0.3333 -0.3047c 0.1809,-0.0000 0.2666,0.0952 0.3523 0.2190c 0.1048,0.1619 0.2762,0.3904 0.7333 0.3904c 0.3143,-0.0000 1.2094,-0.3143 1.2094 -1.5141c 0.0000,-1.0189 -0.7142,-1.1808 -1.2284 -1.1808c -0.0857,-0.0000 -0.1905,0.0190 -0.2952 0.0381l -0.0381,-0.2857 c 0.7333,-0.1238 1.3427,-0.8380 1.3427 -1.2761c 0.0000,-0.5428 -0.3809,-0.8094 -0.7713 -0.8094ZM 236.8872,285.7483 ZM 238.9727,280.5774 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 238.9727,280.5774 ZM 238.9346,285.8625 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 236.8872,270.7748 v 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 189.6493,285.7483 ZM 190.2016,281.5296 c 0.0000,-0.5428 0.5238,-1.2856 1.5237 -1.2856c 0.7333,-0.0000 1.5903,0.2762 1.5903 1.3713c 0.0000,0.7237 -0.3714,1.0856 -0.8856 1.5808l -0.9047,0.8761 c -0.0476,0.0476 -0.6856,0.6761 -0.6856 1.1237h 1.6189 c 0.3238,-0.0000 0.4952,-0.1619 0.6285 -0.6856l 0.2381,0.0381 l -0.1905,1.1999 h -2.9426 c 0.0000,-0.5333 0.0857,-0.9428 0.9713 -1.8474l 0.6666,-0.6571 c 0.5333,-0.5428 0.7523,-1.0094 0.7523 -1.5903c 0.0000,-0.8666 -0.5904,-1.1142 -0.9142 -1.1142c -0.6571,-0.0000 -0.8380,0.3428 -0.8380 0.5714c 0.0000,0.0762 0.0190,0.1524 0.0381 0.2190c 0.0190,0.0667 0.0381,0.1333 0.0381 0.2095c 0.0000,0.2476 -0.1905,0.3428 -0.3428 0.3428c -0.2095,-0.0000 -0.3619,-0.1619 -0.3619 -0.3523ZM 193.8203,285.7483 ZM 195.9058,280.5774 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 195.9058,280.5774 ZM 195.8677,285.8625 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 193.8203,270.7748 v 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 146.5823,285.7483 ZM 148.3726,281.2059 c -0.1809,-0.0000 -0.5999,0.1714 -0.8094 0.2666l -0.1143,-0.2952 c 0.8380,-0.3904 1.1618,-0.5904 1.6379 -0.9332h 0.1809 v 4.7900 c 0.0000,0.3428 0.0476,0.4380 0.3619 0.4380h 0.4952 c 0.0286,-0.0000 0.0762,0.0190 0.0762 0.0762v 0.2095 l -1.3046,-0.0190 l -1.3237,0.0190 v -0.2095 c 0.0095,-0.0286 0.0190,-0.0762 0.0762 -0.0762h 0.5714 c 0.3619,-0.0000 0.3619,-0.1619 0.3619 -0.4380v -3.2759 c 0.0000,-0.3238 0.0000,-0.5523 -0.2095 -0.5523ZM 150.7533,285.7483 ZM 152.8388,280.5774 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 152.8388,280.5774 ZM 152.8007,285.8625 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.7533,270.7748 v 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.6008,285.7483 ZM 107.6863,280.5774 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 107.6863,280.5774 ZM 107.6482,285.8625 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 107.6863,270.7748 v 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 540.4415,256.4192 l -0.0000,-143.5566 h -430.6697 l -0.0000,143.5566 Z"/></g></svg>
+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="400.0000" stroke-opacity="1" viewBox="0 0 600 400" font-size="1" width="600.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 542.5948,246.1163 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 538.2881,249.7139 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 533.9814,252.6738 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 529.6748,254.9664 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 525.3681,256.5688 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 521.0614,257.4649 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 516.7547,257.6459 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 512.4480,257.1098 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 508.1413,255.8621 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 503.8346,253.9153 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 499.5279,251.2887 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 495.2212,248.0087 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.9145,244.1080 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 486.6078,239.6255 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 482.3011,234.6061 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 477.9944,229.0999 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 473.6877,223.1619 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 469.3810,216.8515 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 465.0743,210.2318 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 460.7676,203.3687 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 456.4609,196.3310 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 452.1542,189.1889 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.8475,182.0139 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 443.5408,174.8775 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 439.2341,167.8512 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 434.9274,161.0050 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 430.6207,154.4075 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 426.3140,148.1245 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 422.0073,142.2188 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 417.7006,136.7494 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 413.3939,131.7710 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 409.0872,127.3333 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.7806,123.4806 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 400.4739,120.2515 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 396.1672,117.6782 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 391.8605,115.7864 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 387.5538,114.5950 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 383.2471,114.1160 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 378.9404,114.3540 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 374.6337,115.3068 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 370.3270,116.9649 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 366.0203,119.3115 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.7136,122.3234 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 357.4069,125.9703 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 353.1002,130.2160 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 348.7935,135.0178 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 344.4868,140.3280 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 340.1801,146.0933 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 335.8734,152.2563 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 331.5667,158.7552 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 327.2600,165.5253 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 322.9533,172.4988 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.6466,179.6061 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 314.3399,186.7761 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 310.0332,193.9373 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 305.7265,201.0180 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 301.4198,207.9475 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 297.1131,214.6566 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 292.8064,221.0783 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 288.4997,227.1483 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 284.1930,232.8061 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 279.8864,237.9950 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 275.5797,242.6633 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 271.2730,246.7644 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 266.9663,250.2571 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 262.6596,253.1067 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 258.3529,255.2846 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 254.0462,256.7692 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 249.7395,257.5455 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 245.4328,257.6058 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 241.1261,256.9495 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 236.8194,255.5832 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 232.5127,253.5206 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 228.2060,250.7821 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 223.8993,247.3952 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 219.5926,243.3938 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 215.2859,238.8177 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.9792,233.7128 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 206.6725,228.1301 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 202.3658,222.1252 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 198.0591,215.7583 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 193.7524,209.0929 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 189.4457,202.1957 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 185.1390,195.1355 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.8323,187.9828 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 176.5256,180.8093 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 172.2189,173.6865 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 167.9122,166.6855 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 163.6055,159.8765 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 159.2988,153.3273 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 154.9922,147.1034 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.6855,141.2671 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 146.3788,135.8765 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 142.0721,130.9857 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 137.7654,126.6434 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 133.4587,122.8931 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 129.1520,119.7722 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 124.8453,117.3118 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.5386,115.5367 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 116.2319,114.4644 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 111.9252,114.1058 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 544.7482,223.6940 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 540.4415,217.4860 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 536.1348,210.9499 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 531.8281,204.1509 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 527.5214,197.1570 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 523.2147,190.0381 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 518.9080,182.8652 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 514.6013,175.7102 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 510.2946,168.6444 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 505.9879,161.7384 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 501.6812,155.0613 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 497.3745,148.6798 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 493.0678,142.6577 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 488.7611,137.0550 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 484.4544,131.9279 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 480.1477,127.3274 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 475.8410,123.2996 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 471.5343,119.8848 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 467.2277,117.1170 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 462.9210,115.0239 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 458.6143,113.6265 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 454.3076,112.9386 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 450.0009,112.9672 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 445.6942,113.7119 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 441.3875,115.1654 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 437.0808,117.3130 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.7741,120.1334 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 428.4674,123.5984 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 424.1607,127.6733 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 419.8540,132.3175 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 415.5473,137.4845 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 411.2406,143.1226 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 406.9339,149.1757 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 402.6272,155.5831 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 398.3205,162.2809 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 394.0138,169.2021 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.7071,176.2776 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 385.4004,183.4367 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 381.0937,190.6079 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 376.7870,197.7194 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 372.4803,204.7004 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 368.1736,211.4809 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 363.8669,217.9933 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 359.5602,224.1724 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 355.2535,229.9566 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 350.9468,235.2880 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.6401,240.1135 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 342.3335,244.3846 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 338.0268,248.0589 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 333.7201,251.0996 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 329.4134,253.4762 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 325.1067,255.1651 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 320.8000,256.1494 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 316.4933,256.4192 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 312.1866,255.9718 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 307.8799,254.8118 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.5732,252.9506 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 299.2665,250.4070 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 294.9598,247.2062 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 290.6531,243.3804 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 286.3464,238.9677 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 282.0397,234.0122 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 277.7330,228.5634 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 273.4263,222.6758 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 269.1196,216.4082 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 264.8129,209.8232 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5062,202.9866 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 256.1995,195.9668 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 251.8928,188.8338 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 247.5861,181.6589 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 243.2794,174.5139 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 238.9727,167.4701 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 234.6660,160.5978 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 230.3593,153.9659 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 226.0526,147.6404 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 221.7459,141.6847 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.4393,136.1582 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 213.1326,131.1161 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 208.8259,126.6089 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 204.5192,122.6816 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 200.2125,119.3733 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.9058,116.7172 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 191.5991,114.7398 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 187.2924,113.4609 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 182.9857,112.8932 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 178.6790,113.0424 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 174.3723,113.9070 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 170.0656,115.4784 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.7589,117.7409 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 161.4522,120.6718 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 157.1455,124.2420 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 152.8388,128.4156 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 148.5321,133.1511 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 144.2254,138.4010 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 139.9187,144.1130 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.6120,150.2300 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 131.3053,156.6908 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 126.9986,163.4309 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 122.6919,170.3829 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 118.3852,177.4775 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 114.0785,184.6436 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(31,119,180)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 56.1595,256.4192 ZM 36.5782,245.2596 c 0.0000,-3.6306 1.3391,-4.7019 1.3391 -6.4874c 2.1426,-0.2083 3.3330,-0.3869 4.5829 -0.6547l 0.1786,0.8928 c -2.5593,0.7737 -4.9995,2.3509 -4.9995 6.6660c -0.0000,4.0174 3.5413,7.2016 8.7491 7.2016c 3.9282,0.0000 9.0169,-2.8568 9.0169 -8.1539c 0.0000,-1.6070 -0.5357,-3.3627 -1.4879 -4.3745l -4.5531,-0.0000 c -0.9225,-0.0000 -1.3094,0.4464 -1.3094 1.6367l -0.0000,0.7737 c -0.0000,0.1190 -0.0893,0.2381 -0.2381 0.2381l -0.7737,-0.0000 l -0.0595,-0.0595 c 0.0000,-0.0000 0.0595,-2.5890 0.0595 -3.7496c 0.0000,-1.0416 -0.0595,-2.7676 -0.0595 -2.7676l 0.0595,-0.0595 l 0.7737,0.0000 c 0.1488,0.0000 0.2381,0.0893 0.2381 0.2381l -0.0000,0.0298 c -0.0000,1.0416 0.4761,1.3094 1.3094 1.3094l 3.4520,0.0000 c 0.3273,0.0000 0.5654,-0.1488 0.8332 -0.4761c 1.7260,2.0236 2.8271,4.4341 2.8271 7.9456c -0.0000,5.9815 -4.3448,10.0585 -9.4931 10.0585c -6.5469,-0.0000 -10.4453,-5.0888 -10.4453 -10.2073ZM 56.1595,235.7963 ZM 54.0169,232.9692 l -14.9092,-0.0000 c -1.6963,-0.0000 -2.1724,0.2976 -2.1724 0.8928l 0.1190,0.9523 c -0.0000,0.0893 -0.0595,0.1786 -0.1488 0.1786l -0.7440,0.0595 c 0.0000,-0.4761 -0.1786,-1.5772 -0.2678 -2.0831c -0.1190,-0.5357 -0.2381,-0.9523 -0.5059 -1.5475l 0.0000,-0.6547 l 18.6290,0.0000 c 0.8630,0.0000 1.3094,-0.3273 1.3094 -1.2796l 0.0000,-0.7142 c 0.0000,-0.1190 0.0893,-0.2381 0.2381 -0.2381l 0.5654,0.0000 l 0.0595,0.0595 c 0.0000,-0.0000 -0.0595,2.1724 -0.0595 3.3330c -0.0000,1.0416 0.0595,3.2140 0.0595 3.2140l -0.0595,0.0298 l -0.5654,-0.0000 c -0.1488,-0.0000 -0.2381,-0.0595 -0.2381 -0.2083l 0.0000,-0.7142 c 0.0000,-0.9820 -0.4464,-1.2796 -1.3094 -1.2796ZM 56.1595,228.0590 ZM 43.9584,221.8692 c 0.1488,0.0000 0.2381,0.1786 0.2381 0.3273c -0.0000,0.8928 0.1786,1.2796 0.6547 1.2796c 0.1786,0.0000 0.4166,-0.0595 0.6845 -0.1786l 7.6778,-3.2735 l -7.5587,-3.3032 c -0.2678,-0.1488 -0.5059,-0.2083 -0.6845 -0.2083c -0.6249,-0.0000 -0.7737,0.5952 -0.7737 1.2499l -0.0000,0.1190 c -0.0000,0.1488 -0.1190,0.2976 -0.2083 0.2976l -0.5654,-0.0000 l -0.0893,-0.0595 c 0.0000,-0.0000 0.0595,-1.7558 0.0595 -2.7973c 0.0000,-0.8332 -0.0595,-2.0534 -0.0595 -2.0534l 0.0595,-0.0893 l 0.5654,0.0000 c 0.1488,0.0000 0.2381,0.1190 0.2381 0.3273c -0.0000,1.1308 1.1606,1.6963 2.0236 2.1129c 3.3330,1.5772 6.3981,2.8866 12.1416 5.2673c 2.1426,0.8928 4.6424,1.9641 4.6424 4.0770c -0.0000,0.5654 -0.3273,1.7260 -1.3987 1.7260c -0.8928,-0.0000 -1.1606,-0.6547 -1.1606 -1.1308c 0.0000,-0.4464 0.1786,-0.7440 0.4166 -0.9225c 0.2976,-0.2976 0.5059,-0.5059 0.5059 -0.8035c 0.0000,-0.4464 -2.5593,-1.4879 -4.3745 -2.2319c -0.3571,-0.1786 -0.6547,-0.2381 -0.9225 -0.2381c -0.2976,-0.0000 -1.1011,0.2678 -1.6963 0.5059l -8.7193,3.7496 c -1.1308,0.4761 -1.4582,0.8035 -1.4582 1.8153c -0.0000,0.1786 -0.0893,0.2976 -0.2083 0.2976l -0.5952,-0.0000 l -0.0595,-0.0595 c 0.0000,-0.0000 0.0595,-1.3094 0.0595 -2.2022c 0.0000,-1.3987 -0.0595,-3.5413 -0.0595 -3.5413l 0.0893,-0.0595 l 0.5357,0.0000 ZM 56.1595,212.9118 ZM 46.8153,208.4777 l 7.4099,0.0000 c 1.2201,-1.0416 1.2796,-2.0236 1.2796 -2.4997c 0.0000,-3.1842 -2.9759,-3.8984 -5.5351 -3.8984c -3.6008,-0.0000 -5.5947,1.4582 -5.5947 3.2735c -0.0000,1.0118 0.8630,2.4700 2.4402 3.1247ZM 46.8153,208.4777 ZM 60.8614,210.6798 l -14.7306,-0.0000 c -1.1308,-0.0000 -1.3391,0.2678 -1.3391 0.6845c -0.0000,0.3869 0.0298,0.7440 0.1488 1.2499l -0.8332,0.1488 c -0.3273,-1.9046 -0.4464,-2.2617 -0.8630 -3.0949c -0.1488,-0.3273 -0.2381,-0.5357 -0.2381 -0.7440l 0.0000,-0.4464 l 2.3807,0.0893 l 0.0000,-0.0893 c -2.0831,-1.3689 -2.3807,-2.9759 -2.3807 -3.9282c 0.0000,-2.8866 3.0056,-4.7912 6.1601 -4.7912c 2.4105,0.0000 4.2555,0.7440 5.6244 2.0831c 1.1606,1.1606 1.7260,2.3807 1.7260 3.9579c -0.0000,1.0713 -0.2381,1.9046 -0.6547 2.6783l 4.9995,0.0000 c 0.8630,0.0000 1.3094,-0.3273 1.3094 -1.2796l 0.0000,-0.5654 c 0.0000,-0.1488 0.0893,-0.2678 0.2381 -0.2678l 0.5654,0.0000 l 0.0595,0.0595 c 0.0000,-0.0000 -0.0595,2.0534 -0.0595 3.2140c -0.0000,1.0416 0.0595,3.0652 0.0595 3.0652l -0.0595,0.0595 l -0.5654,-0.0000 c -0.1488,-0.0000 -0.2381,-0.0893 -0.2381 -0.2381l 0.0000,-0.5654 c 0.0000,-0.9820 -0.4464,-1.2796 -1.3094 -1.2796ZM 56.1595,198.6573 ZM 35.3879,193.8066 l 10.0882,0.0000 c -1.9938,-1.9938 -2.4700,-3.7496 -2.4700 -4.9102c 0.0000,-2.1426 1.6367,-3.2140 4.7019 -3.2140l 6.3089,0.0000 c 0.8630,0.0000 1.3094,-0.2976 1.3094 -1.2796l 0.0000,-0.5654 c 0.0000,-0.1190 0.0893,-0.2381 0.2381 -0.2381l 0.5654,0.0000 l 0.0595,0.0595 c 0.0000,-0.0000 -0.0595,2.0236 -0.0595 3.2140c -0.0000,1.0416 0.0595,3.0652 0.0595 3.0652l -0.0595,0.0595 l -0.5654,-0.0000 c -0.1488,-0.0000 -0.2381,-0.0893 -0.2381 -0.2381l 0.0000,-0.5654 c 0.0000,-1.0118 -0.4464,-1.2796 -1.3094 -1.2796l -6.6362,-0.0000 c -2.4105,-0.0000 -2.9759,0.6547 -2.9759 2.3212c -0.0000,0.8630 0.7737,2.1426 2.1724 3.5711l 7.4397,0.0000 c 0.8630,0.0000 1.3094,-0.2976 1.3094 -1.2796l 0.0000,-0.5654 c 0.0000,-0.1190 0.0893,-0.2381 0.2381 -0.2381l 0.5654,0.0000 l 0.0595,0.0595 c 0.0000,-0.0000 -0.0595,2.0236 -0.0595 3.1842c -0.0000,1.0713 0.0595,3.0652 0.0595 3.0652l -0.0595,0.0595 l -0.5654,-0.0000 c -0.1488,-0.0000 -0.2381,-0.0595 -0.2381 -0.2083l 0.0000,-0.5654 c 0.0000,-1.0118 -0.4464,-1.2796 -1.3094 -1.2796l -14.9092,-0.0000 c -1.6963,-0.0000 -2.1724,0.2678 -2.1724 0.8630l 0.1190,0.9820 c -0.0000,0.0893 -0.0595,0.1488 -0.1488 0.1488l -0.7440,0.0595 c 0.0000,-0.4761 -0.1786,-1.5475 -0.2678 -2.0534c -0.1190,-0.5357 -0.2381,-0.9820 -0.5059 -1.5772l 0.0000,-0.6547 ZM 56.1595,175.8025 ZM 56.5166,165.2381 c -0.0000,6.3981 -4.9400,9.4633 -9.7311 9.4633c -5.8625,-0.0000 -10.2073,-4.5531 -10.2073 -9.4931c 0.0000,-3.6603 1.2499,-4.8209 1.3391 -6.5172c 1.6367,-0.0893 3.0652,-0.3571 4.6126 -0.6547l 0.1190,0.8928 c -2.5593,0.7737 -4.9697,2.4997 -4.9697 6.6065c -0.0000,2.3509 2.4997,6.5767 8.5408 6.5767c 4.3448,0.0000 9.0764,-2.2319 9.0764 -6.8445c 0.0000,-2.7676 -0.9820,-4.7912 -3.3032 -6.9040l 0.4464,-0.6845 c 2.6485,2.0236 4.0770,4.6721 4.0770 7.5587ZM 56.1595,156.6378 ZM 35.3879,151.7871 l 10.0882,0.0000 c -1.9938,-1.9938 -2.4700,-3.7496 -2.4700 -4.9102c 0.0000,-2.1426 1.6367,-3.2140 4.7019 -3.2140l 6.3089,0.0000 c 0.8630,0.0000 1.3094,-0.2976 1.3094 -1.2796l 0.0000,-0.5654 c 0.0000,-0.1190 0.0893,-0.2381 0.2381 -0.2381l 0.5654,0.0000 l 0.0595,0.0595 c 0.0000,-0.0000 -0.0595,2.0236 -0.0595 3.2140c -0.0000,1.0416 0.0595,3.0652 0.0595 3.0652l -0.0595,0.0595 l -0.5654,-0.0000 c -0.1488,-0.0000 -0.2381,-0.0893 -0.2381 -0.2381l 0.0000,-0.5654 c 0.0000,-1.0118 -0.4464,-1.2796 -1.3094 -1.2796l -6.6362,-0.0000 c -2.4105,-0.0000 -2.9759,0.6547 -2.9759 2.3212c -0.0000,0.8630 0.7737,2.1426 2.1724 3.5711l 7.4397,0.0000 c 0.8630,0.0000 1.3094,-0.2976 1.3094 -1.2796l 0.0000,-0.5654 c 0.0000,-0.1190 0.0893,-0.2381 0.2381 -0.2381l 0.5654,0.0000 l 0.0595,0.0595 c 0.0000,-0.0000 -0.0595,2.0236 -0.0595 3.1842c -0.0000,1.0713 0.0595,3.0652 0.0595 3.0652l -0.0595,0.0595 l -0.5654,-0.0000 c -0.1488,-0.0000 -0.2381,-0.0595 -0.2381 -0.2083l 0.0000,-0.5654 c 0.0000,-1.0118 -0.4464,-1.2796 -1.3094 -1.2796l -14.9092,-0.0000 c -1.6963,-0.0000 -2.1724,0.2678 -2.1724 0.8630l 0.1190,0.9820 c -0.0000,0.0893 -0.0595,0.1488 -0.1488 0.1488l -0.7440,0.0595 c 0.0000,-0.4761 -0.1786,-1.5475 -0.2678 -2.0534c -0.1190,-0.5357 -0.2381,-0.9820 -0.5059 -1.5772l 0.0000,-0.6547 ZM 56.1595,141.2228 ZM 48.8686,132.5629 l 0.5952,2.3509 c 0.8035,2.6188 2.1724,3.0056 3.5115 3.0056c 0.9225,0.0000 2.3212,-0.4464 2.3212 -2.3212c 0.0000,-0.8928 -0.8630,-2.2617 -1.5177 -3.0354l -4.9102,-0.0000 ZM 48.8686,132.5629 ZM 56.5166,130.6584 c -0.0000,1.1308 -1.0118,1.7558 -1.7260 1.8748l 0.4761,0.6845 c 0.9523,1.3689 1.2499,1.8748 1.2499 3.2437c -0.0000,2.0831 -1.1904,3.6008 -3.4223 3.6008c -2.2617,-0.0000 -3.8091,-1.9343 -4.5233 -4.7614l -0.6845,-2.7378 c -3.3627,-0.0000 -3.9877,1.5475 -3.9877 2.5593c -0.0000,1.1308 0.5059,2.4402 1.4284 2.4402c 0.3273,0.0000 0.5059,-0.0595 0.5952 -0.0893c 0.1190,-0.0595 0.3273,-0.0893 0.5357 -0.0893c 0.3869,0.0000 0.9820,0.2976 0.9820 1.1606c -0.0000,0.7142 -0.4761,1.1904 -1.1904 1.1904c -1.7260,-0.0000 -3.2437,-2.7973 -3.2437 -4.7019c 0.0000,-2.1724 0.8928,-4.6721 5.1185 -4.6721l 4.3745,0.0000 c 1.8153,0.0000 2.5890,-0.0298 2.5890 -0.7142c 0.0000,-0.6547 -0.8332,-0.8332 -1.4879 -0.8630l 0.1488,-0.7440 c 2.1724,0.1786 2.7676,1.1011 2.7676 2.6188ZM 56.1595,127.8015 ZM 54.0169,125.1530 l -7.4099,-0.0000 c -1.4879,-0.0000 -1.8153,0.2083 -1.8153 0.6547c -0.0000,0.3869 0.0298,0.7440 0.1488 1.2499l -0.8332,0.1488 c -0.3273,-1.8748 -0.4166,-2.2022 -0.8630 -3.0949c -0.1488,-0.2976 -0.2381,-0.5357 -0.2381 -0.7440l 0.0000,-0.4464 l 2.6783,0.0893 l 0.0000,-0.0893 c -1.1606,-0.7737 -2.6783,-2.0831 -2.6783 -3.4818c 0.0000,-1.2201 0.5952,-1.6665 1.3689 -1.6665c 0.7737,0.0000 1.2499,0.5059 1.2499 1.2796c -0.0000,0.5952 -0.2381,0.9225 -0.5357 1.2201c -0.1786,0.1786 -0.2678,0.3869 -0.2678 0.5952c -0.0000,0.3273 0.5357,0.9820 1.5475 1.6963c 0.2678,0.2083 0.6547,0.3571 1.0416 0.3571l 6.6065,0.0000 c 0.8630,0.0000 1.3094,-0.2976 1.3094 -1.2796l 0.0000,-0.8630 c 0.0000,-0.1488 0.0893,-0.2678 0.2381 -0.2678l 0.5654,0.0000 l 0.0595,0.0595 c 0.0000,-0.0000 -0.0595,2.3509 -0.0595 3.5115c -0.0000,1.0713 0.0595,3.0949 0.0595 3.0949l -0.0595,0.0298 l -0.5654,-0.0000 c -0.1488,-0.0000 -0.2381,-0.0595 -0.2381 -0.2083l 0.0000,-0.5654 c 0.0000,-1.0118 -0.4464,-1.2796 -1.3094 -1.2796ZM 56.1595,117.4752 ZM 44.5238,112.5948 l 7.6183,0.0000 c 1.8450,0.0000 2.7378,-0.1786 2.7378 -0.9820c 0.0000,-0.7737 -0.2381,-1.3689 -0.8332 -2.1426l 0.5059,-0.5357 c 1.3094,1.1606 1.9641,2.3509 1.9641 3.7199c -0.0000,1.3689 -0.8332,2.1724 -2.9461 2.1724l -9.0467,-0.0000 l -0.0000,1.9343 c -0.0000,0.0893 -0.0298,0.1190 -0.1190 0.1190l -0.9225,-0.0000 c -0.0893,-0.0000 -0.1190,-0.0298 -0.1190 -0.0893c 0.0000,-1.9938 -1.1606,-2.4700 -3.4223 -2.4700l -0.5654,-0.0000 l -0.5952,-1.7260 l 4.5829,0.0000 l 0.0000,-3.2735 c 0.0000,-0.1488 0.0595,-0.2381 0.1786 -0.2381l 0.5952,0.0000 c 0.2678,0.0000 0.3869,0.4166 0.3869 0.7142l -0.0000,2.7973 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 562.1769,137.6800 ZM 565.3766,136.9218 c -0.3666,0.6333 -0.7666,0.8582 -1.2665 0.8582c -0.9999,-0.0000 -1.6248,-0.7583 -1.6248 -1.8331c 0.0000,-1.1832 0.7416,-1.9498 1.6415 -1.9498c 0.7999,-0.0000 1.2249,0.4083 1.2249 0.8499c 0.0000,0.2416 -0.1500,0.3666 -0.3250 0.3666c -0.1750,-0.0000 -0.3416,-0.0917 -0.3666 -0.3000c -0.0333,-0.2750 -0.0833,-0.6333 -0.5749 -0.6333c -0.5499,-0.0000 -0.9582,0.5833 -0.9582 1.4832c 0.0000,0.9749 0.5249,1.6498 1.1665 1.6498c 0.3583,-0.0000 0.6749,-0.2333 0.9332 -0.6083ZM 565.5349,137.6800 ZM 565.8182,135.9719 c 0.0000,-1.1415 0.6166,-1.9748 1.7248 -1.9748c 1.2332,-0.0000 1.7082,1.0332 1.7082 1.8998c 0.0000,0.8332 -0.5416,1.8831 -1.7248 1.8831c -1.1166,-0.0000 -1.7082,-0.9582 -1.7082 -1.8081ZM 565.8182,135.9719 ZM 567.4514,134.2720 c -0.6666,-0.0000 -0.9749,0.7833 -0.9749 1.5082c 0.0000,0.6416 0.3666,1.7082 1.1915 1.7082c 0.3750,-0.0000 0.9249,-0.2250 0.9249 -1.3249c 0.0000,-1.2249 -0.4583,-1.8915 -1.1415 -1.8915ZM 569.5262,137.6800 ZM 569.8845,136.5135 l 0.2250,-0.0083 c 0.0250,0.2083 0.1167,0.6083 0.3000 0.7999c 0.0833,0.0917 0.3083,0.2416 0.6166 0.2416c 0.2916,-0.0000 0.7249,-0.2333 0.7249 -0.6416c 0.0000,-0.3583 -0.2000,-0.5999 -0.8582 -0.8832c -0.6083,-0.2666 -0.9249,-0.4416 -0.9249 -1.0666c 0.0000,-0.5583 0.4916,-0.9582 1.1499 -0.9582c 0.4166,-0.0000 0.7249,0.0750 0.9832 0.2083c 0.0500,0.2666 0.0750,0.5499 0.0917 0.8499l -0.2250,0.0083 c -0.1750,-0.6833 -0.6749,-0.8166 -0.8499 -0.8166c -0.3166,-0.0000 -0.6416,0.1250 -0.6416 0.5833c 0.0000,0.3333 0.1583,0.4999 0.6166 0.6666c 0.6749,0.2500 1.2165,0.5499 1.2165 1.2165c 0.0000,0.8249 -0.8749,1.0666 -1.2665 1.0666c -0.2916,-0.0000 -0.5333,-0.0333 -0.7499 -0.0917c -0.0583,-0.0083 -0.1000,-0.0167 -0.1583 -0.0167c -0.0417,-0.0000 -0.1083,0.0083 -0.1916 0.0250c 0.0000,-0.3500 -0.0250,-0.7749 -0.0583 -1.1832Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(255,0,0)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 559.3058,138.9233 l -2.1533,-3.7297 l -2.1533,3.7297 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 564.3303,121.6174 ZM 564.6886,120.4509 l 0.2250,-0.0083 c 0.0250,0.2083 0.1167,0.6083 0.3000 0.7999c 0.0833,0.0917 0.3083,0.2416 0.6166 0.2416c 0.2916,-0.0000 0.7249,-0.2333 0.7249 -0.6416c 0.0000,-0.3583 -0.2000,-0.5999 -0.8582 -0.8832c -0.6083,-0.2666 -0.9249,-0.4416 -0.9249 -1.0666c 0.0000,-0.5583 0.4916,-0.9582 1.1499 -0.9582c 0.4166,-0.0000 0.7249,0.0750 0.9832 0.2083c 0.0500,0.2666 0.0750,0.5499 0.0917 0.8499l -0.2250,0.0083 c -0.1750,-0.6833 -0.6749,-0.8166 -0.8499 -0.8166c -0.3166,-0.0000 -0.6416,0.1250 -0.6416 0.5833c 0.0000,0.3333 0.1583,0.4999 0.6166 0.6666c 0.6749,0.2500 1.2165,0.5499 1.2165 1.2165c 0.0000,0.8249 -0.8749,1.0666 -1.2665 1.0666c -0.2916,-0.0000 -0.5333,-0.0333 -0.7499 -0.0917c -0.0583,-0.0083 -0.1000,-0.0167 -0.1583 -0.0167c -0.0417,-0.0000 -0.1083,0.0083 -0.1916 0.0250c 0.0000,-0.3500 -0.0250,-0.7749 -0.0583 -1.1832ZM 567.4216,121.6174 ZM 568.0715,116.8596 c 0.0000,-0.2166 0.1750,-0.4000 0.3916 -0.4000c 0.2250,-0.0000 0.4000,0.1833 0.4000 0.4000c 0.0000,0.2250 -0.1750,0.4000 -0.4000 0.4000c -0.2166,-0.0000 -0.3916,-0.1750 -0.3916 -0.4000ZM 568.0715,116.8596 ZM 568.8631,121.0175 c 0.0000,0.2416 0.0917,0.3666 0.3583 0.3666h 0.1583 c 0.0417,-0.0000 0.0750,0.0250 0.0750 0.0667v 0.1583 l -0.0167,0.0167 c 0.0000,-0.0000 -0.5749,-0.0167 -0.8999 -0.0167c -0.2916,-0.0000 -0.8582,0.0167 -0.8582 0.0167l -0.0167,-0.0167 v -0.1583 c 0.0000,-0.0417 0.0250,-0.0667 0.0667 -0.0667h 0.1583 c 0.2750,-0.0000 0.3583,-0.1250 0.3583 -0.3666v -2.0748 c 0.0000,-0.4416 -0.0750,-0.5083 -0.1916 -0.5083c -0.1083,-0.0000 -0.2083,0.0083 -0.3500 0.0417l -0.0417,-0.2333 c 0.5333,-0.0917 0.6249,-0.1250 0.8666 -0.2416c 0.0917,-0.0333 0.1500,-0.0667 0.2083 -0.0667h 0.1250 v 3.0830 ZM 569.6214,121.6174 ZM 572.6544,121.0175 v -1.8248 c 0.0000,-0.5833 -0.1000,-0.8582 -0.5416 -0.8582c -0.3666,-0.0000 -0.6833,0.1417 -1.1082 0.6416v 2.0415 c 0.0000,0.2416 0.0833,0.3666 0.3583 0.3666h 0.1167 c 0.0417,-0.0000 0.0667,0.0250 0.0667 0.0667v 0.1583 l -0.0167,0.0167 c 0.0000,-0.0000 -0.5249,-0.0167 -0.8499 -0.0167c -0.3000,-0.0000 -0.8666,0.0167 -0.8666 0.0167l -0.0167,-0.0167 v -0.1583 c 0.0000,-0.0417 0.0250,-0.0667 0.0667 -0.0667h 0.1583 c 0.2833,-0.0000 0.3583,-0.1250 0.3583 -0.3666v -2.0748 c 0.0000,-0.4500 -0.0667,-0.5083 -0.1833 -0.5083c -0.1083,-0.0000 -0.2083,0.0083 -0.3500 0.0417l -0.0417,-0.2333 c 0.3500,-0.0583 0.5999,-0.1000 0.8582 -0.2416c 0.0917,-0.0417 0.1583,-0.0667 0.2166 -0.0667h 0.1250 l -0.0250,0.7416 h 0.0250 c 0.5333,-0.6249 0.9332,-0.7416 1.3582 -0.7416c 0.7499,-0.0000 0.9082,0.5749 0.9082 1.3165v 1.7665 c 0.0000,0.2416 0.0917,0.3666 0.3583 0.3666h 0.1583 c 0.0417,-0.0000 0.0750,0.0250 0.0750 0.0667v 0.1583 l -0.0167,0.0167 c 0.0000,-0.0000 -0.5749,-0.0167 -0.8999 -0.0167c -0.2916,-0.0000 -0.8166,0.0167 -0.8166 0.0167l -0.0167,-0.0167 v -0.1583 c 0.0000,-0.0417 0.0250,-0.0667 0.0667 -0.0667h 0.1167 c 0.2750,-0.0000 0.3583,-0.1250 0.3583 -0.3666Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.173427431092094" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 561.4591,121.6174 c 0.0000,-2.3785 -1.9282,-4.3067 -4.3067 -4.3067c -2.3785,-0.0000 -4.3067,1.9282 -4.3067 4.3067c -0.0000,2.3785 1.9282,4.3067 4.3067 4.3067c 2.3785,0.0000 4.3067,-1.9282 4.3067 -4.3067Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.2" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.6897903241456126" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 575.0097,141.5853 l -0.0000,-28.7227 h -23.2194 l -0.0000,28.7227 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 91.2452,260.6759 l -0.0000,-143.5566 h -2.8711 l -0.0000,143.5566 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.3577,117.1193 ZM 76.1479,112.5769 c -0.1809,-0.0000 -0.5999,0.1714 -0.8094 0.2666l -0.1143,-0.2952 c 0.8380,-0.3904 1.1618,-0.5904 1.6379 -0.9332h 0.1809 v 4.7900 c 0.0000,0.3428 0.0476,0.4380 0.3619 0.4380h 0.4952 c 0.0286,-0.0000 0.0762,0.0190 0.0762 0.0762v 0.2095 l -1.3046,-0.0190 l -1.3237,0.0190 v -0.2095 c 0.0095,-0.0286 0.0190,-0.0762 0.0762 -0.0762h 0.5714 c 0.3619,-0.0000 0.3619,-0.1619 0.3619 -0.4380v -3.2759 c 0.0000,-0.3238 0.0000,-0.5523 -0.2095 -0.5523ZM 78.5286,117.1193 ZM 79.0714,116.7289 c 0.0000,-0.2762 0.2285,-0.5047 0.5047 -0.5047c 0.2762,-0.0000 0.5047,0.2285 0.5047 0.5047c 0.0000,0.2762 -0.2285,0.5047 -0.5047 0.5047c -0.2762,-0.0000 -0.5047,-0.2285 -0.5047 -0.5047ZM 80.6141,117.1193 ZM 82.6996,111.9484 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 82.6996,111.9484 ZM 82.6616,117.2336 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 86.9385,117.1193 h 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.3577,131.4755 ZM 76.4431,126.3046 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 76.4431,126.3046 ZM 76.4051,131.5898 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473ZM 78.5286,131.4755 ZM 79.0714,131.0851 c 0.0000,-0.2762 0.2285,-0.5047 0.5047 -0.5047c 0.2762,-0.0000 0.5047,0.2285 0.5047 0.5047c 0.0000,0.2762 -0.2285,0.5047 -0.5047 0.5047c -0.2762,-0.0000 -0.5047,-0.2285 -0.5047 -0.5047ZM 80.6141,131.4755 ZM 82.7282,126.1999 c -0.5428,-0.0000 -0.8951,0.4285 -0.8951 0.8475c 0.0000,0.2762 0.1143,0.6095 0.6856 0.9809l 0.2762,0.1714 c 0.2476,-0.1809 0.8285,-0.6190 0.8285 -1.1046c 0.0000,-0.4190 -0.3047,-0.8951 -0.8951 -0.8951ZM 82.7282,126.1999 ZM 84.1852,127.1045 c 0.0000,0.5809 -0.6571,1.0380 -1.0570 1.3046l 0.5523,0.3619 c 0.4666,0.3047 0.7047,0.7237 0.7047 1.2475c 0.0000,0.6856 -0.5618,1.5713 -1.7427 1.5713c -0.9523,-0.0000 -1.6094,-0.5047 -1.6094 -1.4284c 0.0000,-0.3523 0.1524,-0.7618 0.5238 -1.0856c 0.2285,-0.2000 0.4285,-0.3714 0.6571 -0.5428l -0.1619,-0.0952 c -0.5523,-0.3428 -0.8285,-0.7142 -0.8285 -1.2189c 0.0000,-0.6952 0.6285,-1.2475 1.5522 -1.2475c 0.8856,-0.0000 1.4094,0.4857 1.4094 1.1332ZM 84.1852,127.1045 ZM 82.6616,131.3231 c 0.4095,-0.0000 1.1237,-0.2190 1.1237 -1.1237c 0.0000,-0.4285 -0.2666,-0.8571 -0.8285 -1.1999l -0.4190,-0.2571 c -0.7713,0.5142 -0.9428,1.1523 -0.9428 1.4189c 0.0000,0.8094 0.6571,1.1618 1.0666 1.1618Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 86.9385,131.4755 h 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.3577,145.8317 ZM 76.4431,140.6608 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 76.4431,140.6608 ZM 76.4051,145.9460 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473ZM 78.5286,145.8317 ZM 79.0714,145.4413 c 0.0000,-0.2762 0.2285,-0.5047 0.5047 -0.5047c 0.2762,-0.0000 0.5047,0.2285 0.5047 0.5047c 0.0000,0.2762 -0.2285,0.5047 -0.5047 0.5047c -0.2762,-0.0000 -0.5047,-0.2285 -0.5047 -0.5047ZM 80.6141,145.8317 ZM 81.7188,143.3367 c -0.0095,0.0952 -0.0095,0.2381 -0.0095 0.3333c 0.0000,1.5998 0.7142,1.9998 1.1904 1.9998c 0.4380,-0.0000 0.9047,-0.4095 0.9047 -1.3999c 0.0000,-0.4476 -0.2285,-1.3618 -1.1427 -1.3618c -0.2000,-0.0000 -0.5618,0.0190 -0.9428 0.4285ZM 81.7188,143.3367 ZM 84.2138,140.5751 c -0.6190,0.0571 -1.1523,0.2190 -1.6094 0.6666c -0.4380,0.4285 -0.7523,1.0666 -0.8571 1.8284c 0.2190,-0.2666 0.7428,-0.4666 1.1046 -0.4666c 1.4094,-0.0000 1.5903,1.1618 1.5903 1.5998c 0.0000,0.6476 -0.3238,1.7427 -1.6379 1.7427c -0.6952,-0.0000 -1.7522,-0.4095 -1.7522 -2.3045c 0.0000,-0.8761 0.2952,-1.7332 0.9523 -2.3902c 0.6095,-0.6190 1.2475,-0.8761 2.1807 -0.9237Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 86.9385,145.8317 h 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.3577,160.1879 ZM 76.4431,155.0170 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 76.4431,155.0170 ZM 76.4051,160.3022 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473ZM 78.5286,160.1879 ZM 79.0714,159.7975 c 0.0000,-0.2762 0.2285,-0.5047 0.5047 -0.5047c 0.2762,-0.0000 0.5047,0.2285 0.5047 0.5047c 0.0000,0.2762 -0.2285,0.5047 -0.5047 0.5047c -0.2762,-0.0000 -0.5047,-0.2285 -0.5047 -0.5047ZM 80.6141,160.1879 ZM 83.0710,156.8073 c 0.0000,-0.0667 0.0095,-0.1428 0.0952 -0.1905c 0.1048,-0.0762 0.2762,-0.1619 0.4190 -0.1619c 0.1238,-0.0000 0.1333,0.1048 0.1333 0.2952v 1.5332 h 0.7713 l -0.0571,0.4476 h -0.7142 v 0.7904 c 0.0000,0.2666 0.0381,0.4000 0.3143 0.4000h 0.2571 c 0.0571,-0.0000 0.0667,0.0476 0.0667 0.0667v 0.2095 c 0.0000,-0.0000 -0.6095,-0.0190 -1.0094 -0.0190c -0.3619,-0.0000 -0.9237,0.0190 -0.9237 0.0190v -0.2095 c 0.0000,-0.0190 0.0095,-0.0667 0.0667 -0.0667h 0.2571 c 0.2952,-0.0000 0.3238,-0.1238 0.3238 -0.4000v -0.7904 h -1.8665 c -0.0381,-0.0000 -0.0571,-0.0190 -0.0857 -0.0571l -0.0762,-0.1048 l -0.1143,-0.2000 c -0.0095,-0.0000 -0.0095,-0.0095 -0.0095 -0.0190c 0.0000,-0.0095 0.0095,-0.0190 0.0190 -0.0286c 0.6190,-0.6856 1.7141,-2.8092 2.0569 -3.5901c 0.0095,-0.0381 0.0286,-0.0476 0.0667 -0.0476c 0.0095,-0.0000 0.2190,0.0857 0.3333 0.1048c -0.4285,1.1523 -1.1332,2.3902 -1.8284 3.4949h 1.5046 v -1.4760 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 86.9385,160.1879 h 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.3577,174.5441 ZM 76.4431,169.3732 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 76.4431,169.3732 ZM 76.4051,174.6584 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473ZM 78.5286,174.5441 ZM 79.0714,174.1537 c 0.0000,-0.2762 0.2285,-0.5047 0.5047 -0.5047c 0.2762,-0.0000 0.5047,0.2285 0.5047 0.5047c 0.0000,0.2762 -0.2285,0.5047 -0.5047 0.5047c -0.2762,-0.0000 -0.5047,-0.2285 -0.5047 -0.5047ZM 80.6141,174.5441 ZM 81.1665,170.3255 c 0.0000,-0.5428 0.5238,-1.2856 1.5237 -1.2856c 0.7333,-0.0000 1.5903,0.2762 1.5903 1.3713c 0.0000,0.7237 -0.3714,1.0856 -0.8856 1.5808l -0.9047,0.8761 c -0.0476,0.0476 -0.6856,0.6761 -0.6856 1.1237h 1.6189 c 0.3238,-0.0000 0.4952,-0.1619 0.6285 -0.6856l 0.2381,0.0381 l -0.1905,1.1999 h -2.9426 c 0.0000,-0.5333 0.0857,-0.9428 0.9713 -1.8474l 0.6666,-0.6571 c 0.5333,-0.5428 0.7523,-1.0094 0.7523 -1.5903c 0.0000,-0.8666 -0.5904,-1.1142 -0.9142 -1.1142c -0.6571,-0.0000 -0.8380,0.3428 -0.8380 0.5714c 0.0000,0.0762 0.0190,0.1524 0.0381 0.2190c 0.0190,0.0667 0.0381,0.1333 0.0381 0.2095c 0.0000,0.2476 -0.1905,0.3428 -0.3428 0.3428c -0.2095,-0.0000 -0.3619,-0.1619 -0.3619 -0.3523Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 86.9385,174.5441 h 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.3577,188.9003 ZM 76.4431,183.7294 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 76.4431,183.7294 ZM 76.4051,189.0146 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473ZM 78.5286,188.9003 ZM 79.0714,188.5099 c 0.0000,-0.2762 0.2285,-0.5047 0.5047 -0.5047c 0.2762,-0.0000 0.5047,0.2285 0.5047 0.5047c 0.0000,0.2762 -0.2285,0.5047 -0.5047 0.5047c -0.2762,-0.0000 -0.5047,-0.2285 -0.5047 -0.5047ZM 80.6141,188.9003 ZM 82.6996,183.7294 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 82.6996,183.7294 ZM 82.6616,189.0146 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 86.9385,188.9003 h 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 71.1866,203.2565 ZM 73.7958,201.0092 h -2.1522 c -0.0857,-0.0000 -0.1428,-0.0762 -0.1428 -0.1619c 0.0000,-0.1524 0.1238,-0.3523 0.2381 -0.3523h 2.1807 c 0.0952,-0.0000 0.1333,0.0857 0.1333 0.1714c 0.0000,0.1048 -0.1333,0.3428 -0.2571 0.3428ZM 74.3577,203.2565 ZM 76.4431,198.0856 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 76.4431,198.0856 ZM 76.4051,203.3708 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473ZM 78.5286,203.2565 ZM 79.0714,202.8661 c 0.0000,-0.2762 0.2285,-0.5047 0.5047 -0.5047c 0.2762,-0.0000 0.5047,0.2285 0.5047 0.5047c 0.0000,0.2762 -0.2285,0.5047 -0.5047 0.5047c -0.2762,-0.0000 -0.5047,-0.2285 -0.5047 -0.5047ZM 80.6141,203.2565 ZM 81.1665,199.0379 c 0.0000,-0.5428 0.5238,-1.2856 1.5237 -1.2856c 0.7333,-0.0000 1.5903,0.2762 1.5903 1.3713c 0.0000,0.7237 -0.3714,1.0856 -0.8856 1.5808l -0.9047,0.8761 c -0.0476,0.0476 -0.6856,0.6761 -0.6856 1.1237h 1.6189 c 0.3238,-0.0000 0.4952,-0.1619 0.6285 -0.6856l 0.2381,0.0381 l -0.1905,1.1999 h -2.9426 c 0.0000,-0.5333 0.0857,-0.9428 0.9713 -1.8474l 0.6666,-0.6571 c 0.5333,-0.5428 0.7523,-1.0094 0.7523 -1.5903c 0.0000,-0.8666 -0.5904,-1.1142 -0.9142 -1.1142c -0.6571,-0.0000 -0.8380,0.3428 -0.8380 0.5714c 0.0000,0.0762 0.0190,0.1524 0.0381 0.2190c 0.0190,0.0667 0.0381,0.1333 0.0381 0.2095c 0.0000,0.2476 -0.1905,0.3428 -0.3428 0.3428c -0.2095,-0.0000 -0.3619,-0.1619 -0.3619 -0.3523Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 86.9385,203.2565 h 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 71.1866,217.6127 ZM 73.7958,215.3654 h -2.1522 c -0.0857,-0.0000 -0.1428,-0.0762 -0.1428 -0.1619c 0.0000,-0.1524 0.1238,-0.3523 0.2381 -0.3523h 2.1807 c 0.0952,-0.0000 0.1333,0.0857 0.1333 0.1714c 0.0000,0.1048 -0.1333,0.3428 -0.2571 0.3428ZM 74.3577,217.6127 ZM 76.4431,212.4419 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 76.4431,212.4419 ZM 76.4051,217.7270 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473ZM 78.5286,217.6127 ZM 79.0714,217.2223 c 0.0000,-0.2762 0.2285,-0.5047 0.5047 -0.5047c 0.2762,-0.0000 0.5047,0.2285 0.5047 0.5047c 0.0000,0.2762 -0.2285,0.5047 -0.5047 0.5047c -0.2762,-0.0000 -0.5047,-0.2285 -0.5047 -0.5047ZM 80.6141,217.6127 ZM 83.0710,214.2321 c 0.0000,-0.0667 0.0095,-0.1428 0.0952 -0.1905c 0.1048,-0.0762 0.2762,-0.1619 0.4190 -0.1619c 0.1238,-0.0000 0.1333,0.1048 0.1333 0.2952v 1.5332 h 0.7713 l -0.0571,0.4476 h -0.7142 v 0.7904 c 0.0000,0.2666 0.0381,0.4000 0.3143 0.4000h 0.2571 c 0.0571,-0.0000 0.0667,0.0476 0.0667 0.0667v 0.2095 c 0.0000,-0.0000 -0.6095,-0.0190 -1.0094 -0.0190c -0.3619,-0.0000 -0.9237,0.0190 -0.9237 0.0190v -0.2095 c 0.0000,-0.0190 0.0095,-0.0667 0.0667 -0.0667h 0.2571 c 0.2952,-0.0000 0.3238,-0.1238 0.3238 -0.4000v -0.7904 h -1.8665 c -0.0381,-0.0000 -0.0571,-0.0190 -0.0857 -0.0571l -0.0762,-0.1048 l -0.1143,-0.2000 c -0.0095,-0.0000 -0.0095,-0.0095 -0.0095 -0.0190c 0.0000,-0.0095 0.0095,-0.0190 0.0190 -0.0286c 0.6190,-0.6856 1.7141,-2.8092 2.0569 -3.5901c 0.0095,-0.0381 0.0286,-0.0476 0.0667 -0.0476c 0.0095,-0.0000 0.2190,0.0857 0.3333 0.1048c -0.4285,1.1523 -1.1332,2.3902 -1.8284 3.4949h 1.5046 v -1.4760 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 86.9385,217.6127 h 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 71.1866,231.9690 ZM 73.7958,229.7216 h -2.1522 c -0.0857,-0.0000 -0.1428,-0.0762 -0.1428 -0.1619c 0.0000,-0.1524 0.1238,-0.3523 0.2381 -0.3523h 2.1807 c 0.0952,-0.0000 0.1333,0.0857 0.1333 0.1714c 0.0000,0.1048 -0.1333,0.3428 -0.2571 0.3428ZM 74.3577,231.9690 ZM 76.4431,226.7981 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 76.4431,226.7981 ZM 76.4051,232.0832 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473ZM 78.5286,231.9690 ZM 79.0714,231.5785 c 0.0000,-0.2762 0.2285,-0.5047 0.5047 -0.5047c 0.2762,-0.0000 0.5047,0.2285 0.5047 0.5047c 0.0000,0.2762 -0.2285,0.5047 -0.5047 0.5047c -0.2762,-0.0000 -0.5047,-0.2285 -0.5047 -0.5047ZM 80.6141,231.9690 ZM 81.7188,229.4740 c -0.0095,0.0952 -0.0095,0.2381 -0.0095 0.3333c 0.0000,1.5998 0.7142,1.9998 1.1904 1.9998c 0.4380,-0.0000 0.9047,-0.4095 0.9047 -1.3999c 0.0000,-0.4476 -0.2285,-1.3618 -1.1427 -1.3618c -0.2000,-0.0000 -0.5618,0.0190 -0.9428 0.4285ZM 81.7188,229.4740 ZM 84.2138,226.7124 c -0.6190,0.0571 -1.1523,0.2190 -1.6094 0.6666c -0.4380,0.4285 -0.7523,1.0666 -0.8571 1.8284c 0.2190,-0.2666 0.7428,-0.4666 1.1046 -0.4666c 1.4094,-0.0000 1.5903,1.1618 1.5903 1.5998c 0.0000,0.6476 -0.3238,1.7427 -1.6379 1.7427c -0.6952,-0.0000 -1.7522,-0.4095 -1.7522 -2.3045c 0.0000,-0.8761 0.2952,-1.7332 0.9523 -2.3902c 0.6095,-0.6190 1.2475,-0.8761 2.1807 -0.9237Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 86.9385,231.9690 h 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 71.1866,246.3252 ZM 73.7958,244.0778 h -2.1522 c -0.0857,-0.0000 -0.1428,-0.0762 -0.1428 -0.1619c 0.0000,-0.1524 0.1238,-0.3523 0.2381 -0.3523h 2.1807 c 0.0952,-0.0000 0.1333,0.0857 0.1333 0.1714c 0.0000,0.1048 -0.1333,0.3428 -0.2571 0.3428ZM 74.3577,246.3252 ZM 76.4431,241.1543 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 76.4431,241.1543 ZM 76.4051,246.4394 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473ZM 78.5286,246.3252 ZM 79.0714,245.9347 c 0.0000,-0.2762 0.2285,-0.5047 0.5047 -0.5047c 0.2762,-0.0000 0.5047,0.2285 0.5047 0.5047c 0.0000,0.2762 -0.2285,0.5047 -0.5047 0.5047c -0.2762,-0.0000 -0.5047,-0.2285 -0.5047 -0.5047ZM 80.6141,246.3252 ZM 82.7282,241.0495 c -0.5428,-0.0000 -0.8951,0.4285 -0.8951 0.8475c 0.0000,0.2762 0.1143,0.6095 0.6856 0.9809l 0.2762,0.1714 c 0.2476,-0.1809 0.8285,-0.6190 0.8285 -1.1046c 0.0000,-0.4190 -0.3047,-0.8951 -0.8951 -0.8951ZM 82.7282,241.0495 ZM 84.1852,241.9542 c 0.0000,0.5809 -0.6571,1.0380 -1.0570 1.3046l 0.5523,0.3619 c 0.4666,0.3047 0.7047,0.7237 0.7047 1.2475c 0.0000,0.6856 -0.5618,1.5713 -1.7427 1.5713c -0.9523,-0.0000 -1.6094,-0.5047 -1.6094 -1.4284c 0.0000,-0.3523 0.1524,-0.7618 0.5238 -1.0856c 0.2285,-0.2000 0.4285,-0.3714 0.6571 -0.5428l -0.1619,-0.0952 c -0.5523,-0.3428 -0.8285,-0.7142 -0.8285 -1.2189c 0.0000,-0.6952 0.6285,-1.2475 1.5522 -1.2475c 0.8856,-0.0000 1.4094,0.4857 1.4094 1.1332ZM 84.1852,241.9542 ZM 82.6616,246.1728 c 0.4095,-0.0000 1.1237,-0.2190 1.1237 -1.1237c 0.0000,-0.4285 -0.2666,-0.8571 -0.8285 -1.1999l -0.4190,-0.2571 c -0.7713,0.5142 -0.9428,1.1523 -0.9428 1.4189c 0.0000,0.8094 0.6571,1.1618 1.0666 1.1618Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 86.9385,246.3252 h 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 538.3560,273.6459 l -0.0000,-2.8711 h -430.6697 l -0.0000,2.8711 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 532.0995,285.7483 ZM 533.8898,281.2059 c -0.1809,-0.0000 -0.5999,0.1714 -0.8094 0.2666l -0.1143,-0.2952 c 0.8380,-0.3904 1.1618,-0.5904 1.6379 -0.9332h 0.1809 v 4.7900 c 0.0000,0.3428 0.0476,0.4380 0.3619 0.4380h 0.4952 c 0.0286,-0.0000 0.0762,0.0190 0.0762 0.0762v 0.2095 l -1.3046,-0.0190 l -1.3237,0.0190 v -0.2095 c 0.0095,-0.0286 0.0190,-0.0762 0.0762 -0.0762h 0.5714 c 0.3619,-0.0000 0.3619,-0.1619 0.3619 -0.4380v -3.2759 c 0.0000,-0.3238 0.0000,-0.5523 -0.2095 -0.5523ZM 536.2705,285.7483 ZM 538.3560,280.5774 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 538.3560,280.5774 ZM 538.3179,285.8625 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473ZM 540.4415,285.7483 ZM 542.5270,280.5774 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 542.5270,280.5774 ZM 542.4889,285.8625 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 538.3560,270.7748 v 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 491.1180,285.7483 ZM 494.1558,282.8533 c 0.0000,-0.0952 0.0095,-0.2381 0.0095 -0.3333c 0.0000,-1.5998 -0.7142,-1.9998 -1.1999 -1.9998c -0.4380,-0.0000 -0.8951,0.4095 -0.8951 1.3999c 0.0000,0.4571 0.2285,1.3618 1.1332 1.3618c 0.2000,-0.0000 0.5618,-0.0190 0.9523 -0.4285ZM 494.1558,282.8533 ZM 491.6513,285.6149 c 0.6285,-0.0571 1.1523,-0.2190 1.6189 -0.6666c 0.4285,-0.4285 0.7428,-1.0666 0.8571 -1.8284c -0.2190,0.2666 -0.7523,0.4666 -1.1046 0.4666c -1.4094,-0.0000 -1.5998,-1.1618 -1.5998 -1.5998c 0.0000,-0.6476 0.3238,-1.7427 1.6379 -1.7427c 0.7047,-0.0000 1.7617,0.4095 1.7617 2.3045c 0.0000,0.8761 -0.3047,1.7332 -0.9523 2.3902c -0.6095,0.6190 -1.2570,0.8761 -2.1902 0.9237ZM 495.2890,285.7483 ZM 497.3745,280.5774 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 497.3745,280.5774 ZM 497.3364,285.8625 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 495.2890,270.7748 v 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 448.0511,285.7483 ZM 450.1651,280.4726 c -0.5428,-0.0000 -0.8951,0.4285 -0.8951 0.8475c 0.0000,0.2762 0.1143,0.6095 0.6856 0.9809l 0.2762,0.1714 c 0.2476,-0.1809 0.8285,-0.6190 0.8285 -1.1046c 0.0000,-0.4190 -0.3047,-0.8951 -0.8951 -0.8951ZM 450.1651,280.4726 ZM 451.6221,281.3773 c 0.0000,0.5809 -0.6571,1.0380 -1.0570 1.3046l 0.5523,0.3619 c 0.4666,0.3047 0.7047,0.7237 0.7047 1.2475c 0.0000,0.6856 -0.5618,1.5713 -1.7427 1.5713c -0.9523,-0.0000 -1.6094,-0.5047 -1.6094 -1.4284c 0.0000,-0.3523 0.1524,-0.7618 0.5238 -1.0856c 0.2285,-0.2000 0.4285,-0.3714 0.6571 -0.5428l -0.1619,-0.0952 c -0.5523,-0.3428 -0.8285,-0.7142 -0.8285 -1.2189c 0.0000,-0.6952 0.6285,-1.2475 1.5522 -1.2475c 0.8856,-0.0000 1.4094,0.4857 1.4094 1.1332ZM 451.6221,281.3773 ZM 450.0985,285.5959 c 0.4095,-0.0000 1.1237,-0.2190 1.1237 -1.1237c 0.0000,-0.4285 -0.2666,-0.8571 -0.8285 -1.1999l -0.4190,-0.2571 c -0.7713,0.5142 -0.9428,1.1523 -0.9428 1.4189c 0.0000,0.8094 0.6571,1.1618 1.0666 1.1618ZM 452.2221,285.7483 ZM 454.3076,280.5774 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 454.3076,280.5774 ZM 454.2695,285.8625 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 452.2221,270.7748 v 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.9841,285.7483 ZM 406.4125,280.9107 c -0.4190,-0.0000 -0.5618,0.1714 -0.7428 0.6571l -0.2476,-0.0381 c 0.1143,-0.3904 0.2095,-0.7523 0.2381 -1.2856h 0.2000 c 0.0381,0.0571 0.0667,0.1048 0.2857 0.1048h 1.8093 c 0.3428,-0.0000 0.5428,-0.0095 0.6952 -0.0571l 0.1428,0.0667 c -1.0094,2.4569 -1.5427,3.9424 -2.0569 5.4756l -0.6190,0.0286 l -0.0286,-0.0571 c 0.6095,-1.3713 1.3332,-3.1425 2.0379 -4.8947h -1.7141 ZM 409.1551,285.7483 ZM 411.2406,280.5774 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 411.2406,280.5774 ZM 411.2025,285.8625 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 409.1551,270.7748 v 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.9171,285.7483 ZM 363.0218,283.2533 c -0.0095,0.0952 -0.0095,0.2381 -0.0095 0.3333c 0.0000,1.5998 0.7142,1.9998 1.1904 1.9998c 0.4380,-0.0000 0.9047,-0.4095 0.9047 -1.3999c 0.0000,-0.4476 -0.2285,-1.3618 -1.1427 -1.3618c -0.2000,-0.0000 -0.5618,0.0190 -0.9428 0.4285ZM 363.0218,283.2533 ZM 365.5168,280.4917 c -0.6190,0.0571 -1.1523,0.2190 -1.6094 0.6666c -0.4380,0.4285 -0.7523,1.0666 -0.8571 1.8284c 0.2190,-0.2666 0.7428,-0.4666 1.1046 -0.4666c 1.4094,-0.0000 1.5903,1.1618 1.5903 1.5998c 0.0000,0.6476 -0.3238,1.7427 -1.6379 1.7427c -0.6952,-0.0000 -1.7522,-0.4095 -1.7522 -2.3045c 0.0000,-0.8761 0.2952,-1.7332 0.9523 -2.3902c 0.6095,-0.6190 1.2475,-0.8761 2.1807 -0.9237ZM 366.0881,285.7483 ZM 368.1736,280.5774 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 368.1736,280.5774 ZM 368.1355,285.8625 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 366.0881,270.7748 v 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.8502,285.7483 ZM 321.7927,284.1389 c 0.0000,-0.9809 -0.5333,-1.4665 -1.1237 -1.4665c -0.4380,-0.0000 -0.7713,0.0667 -1.1427 0.2190l 0.3047,-2.5997 c 0.3143,0.0286 0.6380,0.0381 0.9713 0.0381c 0.4761,-0.0000 0.9713,-0.0286 1.4856 -0.0857l 0.0571,0.0286 l -0.1428,0.6190 c -0.3714,0.0381 -0.6761,0.0476 -0.9428 0.0476c -0.4285,-0.0000 -0.7523,-0.0381 -1.0856 -0.0762l -0.1809,1.5046 c 0.2000,-0.0762 0.5428,-0.1428 0.9142 -0.1428c 1.0094,-0.0000 1.5713,0.8761 1.5713 1.7522c 0.0000,1.0666 -0.7428,1.8855 -1.8189 1.8855c -0.5428,-0.0000 -1.3332,-0.3047 -1.3332 -0.6761c 0.0000,-0.1809 0.1524,-0.3047 0.3238 -0.3047c 0.1905,-0.0000 0.3143,0.1428 0.4285 0.2952c 0.1428,0.1714 0.2952,0.3619 0.5999 0.3619c 0.6095,-0.0000 1.1142,-0.5714 1.1142 -1.3999ZM 323.0212,285.7483 ZM 325.1067,280.5774 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 325.1067,280.5774 ZM 325.0686,285.8625 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 323.0212,270.7748 v 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 275.7832,285.7483 ZM 278.2401,282.3677 c 0.0000,-0.0667 0.0095,-0.1428 0.0952 -0.1905c 0.1048,-0.0762 0.2762,-0.1619 0.4190 -0.1619c 0.1238,-0.0000 0.1333,0.1048 0.1333 0.2952v 1.5332 h 0.7713 l -0.0571,0.4476 h -0.7142 v 0.7904 c 0.0000,0.2666 0.0381,0.4000 0.3143 0.4000h 0.2571 c 0.0571,-0.0000 0.0667,0.0476 0.0667 0.0667v 0.2095 c 0.0000,-0.0000 -0.6095,-0.0190 -1.0094 -0.0190c -0.3619,-0.0000 -0.9237,0.0190 -0.9237 0.0190v -0.2095 c 0.0000,-0.0190 0.0095,-0.0667 0.0667 -0.0667h 0.2571 c 0.2952,-0.0000 0.3238,-0.1238 0.3238 -0.4000v -0.7904 h -1.8665 c -0.0381,-0.0000 -0.0571,-0.0190 -0.0857 -0.0571l -0.0762,-0.1048 l -0.1143,-0.2000 c -0.0095,-0.0000 -0.0095,-0.0095 -0.0095 -0.0190c 0.0000,-0.0095 0.0095,-0.0190 0.0190 -0.0286c 0.6190,-0.6856 1.7141,-2.8092 2.0569 -3.5901c 0.0095,-0.0381 0.0286,-0.0476 0.0667 -0.0476c 0.0095,-0.0000 0.2190,0.0857 0.3333 0.1048c -0.4285,1.1523 -1.1332,2.3902 -1.8284 3.4949h 1.5046 v -1.4760 ZM 279.9542,285.7483 ZM 282.0397,280.5774 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 282.0397,280.5774 ZM 282.0016,285.8625 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 279.9542,270.7748 v 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 232.7162,285.7483 ZM 234.7732,280.5393 c -0.2381,-0.0000 -0.9332,0.1333 -0.9332 0.7142c 0.0000,0.1714 -0.0667,0.4666 -0.3238 0.4666c -0.2476,-0.0000 -0.2666,-0.2762 -0.2666 -0.3047c 0.0000,-0.2952 0.3904,-1.1713 1.7141 -1.1713c 0.9237,-0.0000 1.1999,0.5809 1.1999 0.9618c 0.0000,0.2381 -0.0762,0.7142 -0.9332 1.2570c 0.5333,0.0857 1.2380,0.4761 1.2380 1.4665c 0.0000,1.2570 -0.9523,1.9331 -2.0284 1.9331c -0.5428,-0.0000 -1.3046,-0.2381 -1.3046 -0.5999c 0.0000,-0.1428 0.1428,-0.3047 0.3333 -0.3047c 0.1809,-0.0000 0.2666,0.0952 0.3523 0.2190c 0.1048,0.1619 0.2762,0.3904 0.7333 0.3904c 0.3143,-0.0000 1.2094,-0.3143 1.2094 -1.5141c 0.0000,-1.0189 -0.7142,-1.1808 -1.2284 -1.1808c -0.0857,-0.0000 -0.1905,0.0190 -0.2952 0.0381l -0.0381,-0.2857 c 0.7333,-0.1238 1.3427,-0.8380 1.3427 -1.2761c 0.0000,-0.5428 -0.3809,-0.8094 -0.7713 -0.8094ZM 236.8872,285.7483 ZM 238.9727,280.5774 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 238.9727,280.5774 ZM 238.9346,285.8625 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 236.8872,270.7748 v 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 189.6493,285.7483 ZM 190.2016,281.5296 c 0.0000,-0.5428 0.5238,-1.2856 1.5237 -1.2856c 0.7333,-0.0000 1.5903,0.2762 1.5903 1.3713c 0.0000,0.7237 -0.3714,1.0856 -0.8856 1.5808l -0.9047,0.8761 c -0.0476,0.0476 -0.6856,0.6761 -0.6856 1.1237h 1.6189 c 0.3238,-0.0000 0.4952,-0.1619 0.6285 -0.6856l 0.2381,0.0381 l -0.1905,1.1999 h -2.9426 c 0.0000,-0.5333 0.0857,-0.9428 0.9713 -1.8474l 0.6666,-0.6571 c 0.5333,-0.5428 0.7523,-1.0094 0.7523 -1.5903c 0.0000,-0.8666 -0.5904,-1.1142 -0.9142 -1.1142c -0.6571,-0.0000 -0.8380,0.3428 -0.8380 0.5714c 0.0000,0.0762 0.0190,0.1524 0.0381 0.2190c 0.0190,0.0667 0.0381,0.1333 0.0381 0.2095c 0.0000,0.2476 -0.1905,0.3428 -0.3428 0.3428c -0.2095,-0.0000 -0.3619,-0.1619 -0.3619 -0.3523ZM 193.8203,285.7483 ZM 195.9058,280.5774 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 195.9058,280.5774 ZM 195.8677,285.8625 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 193.8203,270.7748 v 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 146.5823,285.7483 ZM 148.3726,281.2059 c -0.1809,-0.0000 -0.5999,0.1714 -0.8094 0.2666l -0.1143,-0.2952 c 0.8380,-0.3904 1.1618,-0.5904 1.6379 -0.9332h 0.1809 v 4.7900 c 0.0000,0.3428 0.0476,0.4380 0.3619 0.4380h 0.4952 c 0.0286,-0.0000 0.0762,0.0190 0.0762 0.0762v 0.2095 l -1.3046,-0.0190 l -1.3237,0.0190 v -0.2095 c 0.0095,-0.0286 0.0190,-0.0762 0.0762 -0.0762h 0.5714 c 0.3619,-0.0000 0.3619,-0.1619 0.3619 -0.4380v -3.2759 c 0.0000,-0.3238 0.0000,-0.5523 -0.2095 -0.5523ZM 150.7533,285.7483 ZM 152.8388,280.5774 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 152.8388,280.5774 ZM 152.8007,285.8625 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.7533,270.7748 v 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.6008,285.7483 ZM 107.6863,280.5774 c -0.4095,-0.0000 -1.0094,0.4000 -1.0094 2.6188c 0.0000,0.7809 0.1428,2.3521 0.9809 2.3521c 0.1619,-0.0000 0.6190,-0.1048 0.8190 -0.8475c 0.1238,-0.4571 0.1905,-1.0285 0.1905 -1.8570c 0.0000,-1.2094 -0.3047,-1.8855 -0.5809 -2.1236c -0.1048,-0.0952 -0.2476,-0.1428 -0.4000 -0.1428ZM 107.6863,280.5774 ZM 107.6482,285.8625 c -1.0189,-0.0000 -1.7046,-1.3046 -1.7046 -2.7616c 0.0000,-1.7808 0.8475,-2.8568 1.7427 -2.8568c 0.4095,-0.0000 0.8190,0.2571 1.0951 0.6285c 0.4000,0.5333 0.6095,1.2475 0.6095 2.1426c 0.0000,2.1141 -1.0475,2.8473 -1.7427 2.8473Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.7244758103640314" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 107.6863,270.7748 v 4.3067 "/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 540.4415,256.4192 l -0.0000,-143.5566 h -430.6697 l -0.0000,143.5566 Z"/></g></svg>
diff --git a/other/glyph_Example.svg b/other/glyph_Example.svg
--- a/other/glyph_Example.svg
+++ b/other/glyph_Example.svg
@@ -1,3 +1,3 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="100.0000" stroke-opacity="1" viewBox="0 0 400 100" font-size="1" width="400.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="1.5" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 250.0000,50.0000 c 0.0000,-27.6142 -22.3858,-50.0000 -50.0000 -50.0000c -27.6142,-0.0000 -50.0000,22.3858 -50.0000 50.0000c -0.0000,27.6142 22.3858,50.0000 50.0000 50.0000c 27.6142,0.0000 50.0000,-22.3858 50.0000 -50.0000Z"/></g></svg>
+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="100.0000" stroke-opacity="1" viewBox="0 0 400 100" font-size="1" width="400.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="1.5" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 250.0000,50.0000 c 0.0000,-27.6142 -22.3858,-50.0000 -50.0000 -50.0000c -27.6142,-0.0000 -50.0000,22.3858 -50.0000 50.0000c -0.0000,27.6142 22.3858,50.0000 50.0000 50.0000c 27.6142,0.0000 50.0000,-22.3858 50.0000 -50.0000Z"/></g></svg>
diff --git a/other/glyphsExample.svg b/other/glyphsExample.svg
--- a/other/glyphsExample.svg
+++ b/other/glyphsExample.svg
@@ -1,3 +1,3 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="100.0000" stroke-opacity="1" viewBox="0 0 400 100" font-size="1" width="400.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="2.9418607057297055" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 400.0000,71.1033 c 0.0000,-6.2523 -5.0685,-11.3208 -11.3208 -11.3208c -6.2523,-0.0000 -11.3208,5.0685 -11.3208 11.3208c -0.0000,6.2523 5.0685,11.3208 11.3208 11.3208c 6.2523,0.0000 11.3208,-5.0685 11.3208 -11.3208Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="2.9418607057297055" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 362.2642,35.0226 c 0.0000,-6.2523 -5.0685,-11.3208 -11.3208 -11.3208c -6.2523,-0.0000 -11.3208,5.0685 -11.3208 11.3208c -0.0000,6.2523 5.0685,11.3208 11.3208 11.3208c 6.2523,0.0000 11.3208,-5.0685 11.3208 -11.3208Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="2.9418607057297055" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 324.5283,13.2400 c 0.0000,-6.2523 -5.0685,-11.3208 -11.3208 -11.3208c -6.2523,-0.0000 -11.3208,5.0685 -11.3208 11.3208c -0.0000,6.2523 5.0685,11.3208 11.3208 11.3208c 6.2523,0.0000 11.3208,-5.0685 11.3208 -11.3208Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="2.9418607057297055" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 286.7925,25.7823 c 0.0000,-6.2523 -5.0685,-11.3208 -11.3208 -11.3208c -6.2523,-0.0000 -11.3208,5.0685 -11.3208 11.3208c -0.0000,6.2523 5.0685,11.3208 11.3208 11.3208c 6.2523,0.0000 11.3208,-5.0685 11.3208 -11.3208Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="2.9418607057297055" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 249.0566,61.1182 c 0.0000,-6.2523 -5.0685,-11.3208 -11.3208 -11.3208c -6.2523,-0.0000 -11.3208,5.0685 -11.3208 11.3208c -0.0000,6.2523 5.0685,11.3208 11.3208 11.3208c 6.2523,0.0000 11.3208,-5.0685 11.3208 -11.3208Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="2.9418607057297055" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 211.3208,86.7600 c 0.0000,-6.2523 -5.0685,-11.3208 -11.3208 -11.3208c -6.2523,-0.0000 -11.3208,5.0685 -11.3208 11.3208c -0.0000,6.2523 5.0685,11.3208 11.3208 11.3208c 6.2523,0.0000 11.3208,-5.0685 11.3208 -11.3208Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="2.9418607057297055" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 173.5849,79.1328 c 0.0000,-6.2523 -5.0685,-11.3208 -11.3208 -11.3208c -6.2523,-0.0000 -11.3208,5.0685 -11.3208 11.3208c -0.0000,6.2523 5.0685,11.3208 11.3208 11.3208c 6.2523,0.0000 11.3208,-5.0685 11.3208 -11.3208Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="2.9418607057297055" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.8491,45.2489 c 0.0000,-6.2523 -5.0685,-11.3208 -11.3208 -11.3208c -6.2523,-0.0000 -11.3208,5.0685 -11.3208 11.3208c -0.0000,6.2523 5.0685,11.3208 11.3208 11.3208c 6.2523,0.0000 11.3208,-5.0685 11.3208 -11.3208Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="2.9418607057297055" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 98.1132,16.2611 c 0.0000,-6.2523 -5.0685,-11.3208 -11.3208 -11.3208c -6.2523,-0.0000 -11.3208,5.0685 -11.3208 11.3208c -0.0000,6.2523 5.0685,11.3208 11.3208 11.3208c 6.2523,0.0000 11.3208,-5.0685 11.3208 -11.3208Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="2.9418607057297055" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.3774,18.8206 c 0.0000,-6.2523 -5.0685,-11.3208 -11.3208 -11.3208c -6.2523,-0.0000 -11.3208,5.0685 -11.3208 11.3208c -0.0000,6.2523 5.0685,11.3208 11.3208 11.3208c 6.2523,0.0000 11.3208,-5.0685 11.3208 -11.3208Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="2.9418607057297055" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 22.6415,50.5742 c 0.0000,-6.2523 -5.0685,-11.3208 -11.3208 -11.3208c -6.2523,-0.0000 -11.3208,5.0685 -11.3208 11.3208c -0.0000,6.2523 5.0685,11.3208 11.3208 11.3208c 6.2523,0.0000 11.3208,-5.0685 11.3208 -11.3208Z"/></g></svg>
+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="100.0000" stroke-opacity="1" viewBox="0 0 400 100" font-size="1" width="400.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="2.9418607057297055" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 400.0000,71.1033 c 0.0000,-6.2523 -5.0685,-11.3208 -11.3208 -11.3208c -6.2523,-0.0000 -11.3208,5.0685 -11.3208 11.3208c -0.0000,6.2523 5.0685,11.3208 11.3208 11.3208c 6.2523,0.0000 11.3208,-5.0685 11.3208 -11.3208Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="2.9418607057297055" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 362.2642,35.0226 c 0.0000,-6.2523 -5.0685,-11.3208 -11.3208 -11.3208c -6.2523,-0.0000 -11.3208,5.0685 -11.3208 11.3208c -0.0000,6.2523 5.0685,11.3208 11.3208 11.3208c 6.2523,0.0000 11.3208,-5.0685 11.3208 -11.3208Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="2.9418607057297055" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 324.5283,13.2400 c 0.0000,-6.2523 -5.0685,-11.3208 -11.3208 -11.3208c -6.2523,-0.0000 -11.3208,5.0685 -11.3208 11.3208c -0.0000,6.2523 5.0685,11.3208 11.3208 11.3208c 6.2523,0.0000 11.3208,-5.0685 11.3208 -11.3208Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="2.9418607057297055" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 286.7925,25.7823 c 0.0000,-6.2523 -5.0685,-11.3208 -11.3208 -11.3208c -6.2523,-0.0000 -11.3208,5.0685 -11.3208 11.3208c -0.0000,6.2523 5.0685,11.3208 11.3208 11.3208c 6.2523,0.0000 11.3208,-5.0685 11.3208 -11.3208Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="2.9418607057297055" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 249.0566,61.1182 c 0.0000,-6.2523 -5.0685,-11.3208 -11.3208 -11.3208c -6.2523,-0.0000 -11.3208,5.0685 -11.3208 11.3208c -0.0000,6.2523 5.0685,11.3208 11.3208 11.3208c 6.2523,0.0000 11.3208,-5.0685 11.3208 -11.3208Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="2.9418607057297055" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 211.3208,86.7600 c 0.0000,-6.2523 -5.0685,-11.3208 -11.3208 -11.3208c -6.2523,-0.0000 -11.3208,5.0685 -11.3208 11.3208c -0.0000,6.2523 5.0685,11.3208 11.3208 11.3208c 6.2523,0.0000 11.3208,-5.0685 11.3208 -11.3208Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="2.9418607057297055" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 173.5849,79.1328 c 0.0000,-6.2523 -5.0685,-11.3208 -11.3208 -11.3208c -6.2523,-0.0000 -11.3208,5.0685 -11.3208 11.3208c -0.0000,6.2523 5.0685,11.3208 11.3208 11.3208c 6.2523,0.0000 11.3208,-5.0685 11.3208 -11.3208Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="2.9418607057297055" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.8491,45.2489 c 0.0000,-6.2523 -5.0685,-11.3208 -11.3208 -11.3208c -6.2523,-0.0000 -11.3208,5.0685 -11.3208 11.3208c -0.0000,6.2523 5.0685,11.3208 11.3208 11.3208c 6.2523,0.0000 11.3208,-5.0685 11.3208 -11.3208Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="2.9418607057297055" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 98.1132,16.2611 c 0.0000,-6.2523 -5.0685,-11.3208 -11.3208 -11.3208c -6.2523,-0.0000 -11.3208,5.0685 -11.3208 11.3208c -0.0000,6.2523 5.0685,11.3208 11.3208 11.3208c 6.2523,0.0000 11.3208,-5.0685 11.3208 -11.3208Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="2.9418607057297055" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.3774,18.8206 c 0.0000,-6.2523 -5.0685,-11.3208 -11.3208 -11.3208c -6.2523,-0.0000 -11.3208,5.0685 -11.3208 11.3208c -0.0000,6.2523 5.0685,11.3208 11.3208 11.3208c 6.2523,0.0000 11.3208,-5.0685 11.3208 -11.3208Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="2.9418607057297055" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 22.6415,50.5742 c 0.0000,-6.2523 -5.0685,-11.3208 -11.3208 -11.3208c -6.2523,-0.0000 -11.3208,5.0685 -11.3208 11.3208c -0.0000,6.2523 5.0685,11.3208 11.3208 11.3208c 6.2523,0.0000 11.3208,-5.0685 11.3208 -11.3208Z"/></g></svg>
diff --git a/other/hud.svg b/other/hud.svg
new file mode 100644
--- /dev/null
+++ b/other/hud.svg
@@ -0,0 +1,3 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="100.0000" stroke-opacity="1" viewBox="0 0 100 100" font-size="1" width="100.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 12.2120,73.2274 l -0.0000,-51.5531 h -1.0311 l -0.0000,51.5531 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 6.1475,21.6743 ZM 6.8964,19.8174 c -0.1471,-0.0000 -0.3625,0.1436 -0.3625 0.9404c 0.0000,0.2804 0.0513,0.8447 0.3522 0.8447c 0.0581,-0.0000 0.2223,-0.0376 0.2941 -0.3044c 0.0445,-0.1641 0.0684,-0.3693 0.0684 -0.6669c 0.0000,-0.4343 -0.1094,-0.6771 -0.2086 -0.7626c -0.0376,-0.0342 -0.0889,-0.0513 -0.1436 -0.0513ZM 6.8964,19.8174 ZM 6.8828,21.7154 c -0.3659,-0.0000 -0.6121,-0.4685 -0.6121 -0.9917c 0.0000,-0.6395 0.3044,-1.0259 0.6258 -1.0259c 0.1471,-0.0000 0.2941,0.0923 0.3933 0.2257c 0.1436,0.1915 0.2189,0.4480 0.2189 0.7694c 0.0000,0.7592 -0.3762,1.0225 -0.6258 1.0225ZM 7.6454,21.6743 ZM 7.8403,21.5341 c 0.0000,-0.0992 0.0821,-0.1812 0.1812 -0.1812c 0.0992,-0.0000 0.1812,0.0821 0.1812 0.1812c 0.0000,0.0992 -0.0821,0.1812 -0.1812 0.1812c -0.0992,-0.0000 -0.1812,-0.0821 -0.1812 -0.1812ZM 8.3943,21.6743 ZM 9.4510,21.0964 c 0.0000,-0.3522 -0.1915,-0.5266 -0.4035 -0.5266c -0.1573,-0.0000 -0.2770,0.0239 -0.4104 0.0787l 0.1094,-0.9336 c 0.1129,0.0103 0.2291,0.0137 0.3488 0.0137c 0.1710,-0.0000 0.3488,-0.0103 0.5335 -0.0308l 0.0205,0.0103 l -0.0513,0.2223 c -0.1334,0.0137 -0.2428,0.0171 -0.3386 0.0171c -0.1539,-0.0000 -0.2702,-0.0137 -0.3899 -0.0274l -0.0650,0.5403 c 0.0718,-0.0274 0.1949,-0.0513 0.3283 -0.0513c 0.3625,-0.0000 0.5643,0.3146 0.5643 0.6292c 0.0000,0.3830 -0.2667,0.6771 -0.6532 0.6771c -0.1949,-0.0000 -0.4788,-0.1094 -0.4788 -0.2428c 0.0000,-0.0650 0.0547,-0.1094 0.1163 -0.1094c 0.0684,-0.0000 0.1129,0.0513 0.1539 0.1060c 0.0513,0.0616 0.1060,0.1300 0.2154 0.1300c 0.2189,-0.0000 0.4001,-0.2052 0.4001 -0.5027Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4133206743970644" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 10.6655,21.6743 h 1.5466 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 6.1475,26.8297 ZM 6.8964,24.9727 c -0.1471,-0.0000 -0.3625,0.1436 -0.3625 0.9404c 0.0000,0.2804 0.0513,0.8447 0.3522 0.8447c 0.0581,-0.0000 0.2223,-0.0376 0.2941 -0.3044c 0.0445,-0.1641 0.0684,-0.3693 0.0684 -0.6669c 0.0000,-0.4343 -0.1094,-0.6771 -0.2086 -0.7626c -0.0376,-0.0342 -0.0889,-0.0513 -0.1436 -0.0513ZM 6.8964,24.9727 ZM 6.8828,26.8707 c -0.3659,-0.0000 -0.6121,-0.4685 -0.6121 -0.9917c 0.0000,-0.6395 0.3044,-1.0259 0.6258 -1.0259c 0.1471,-0.0000 0.2941,0.0923 0.3933 0.2257c 0.1436,0.1915 0.2189,0.4480 0.2189 0.7694c 0.0000,0.7592 -0.3762,1.0225 -0.6258 1.0225ZM 7.6454,26.8297 ZM 7.8403,26.6894 c 0.0000,-0.0992 0.0821,-0.1812 0.1812 -0.1812c 0.0992,-0.0000 0.1812,0.0821 0.1812 0.1812c 0.0000,0.0992 -0.0821,0.1812 -0.1812 0.1812c -0.0992,-0.0000 -0.1812,-0.0821 -0.1812 -0.1812ZM 8.3943,26.8297 ZM 9.2766,25.6156 c 0.0000,-0.0239 0.0034,-0.0513 0.0342 -0.0684c 0.0376,-0.0274 0.0992,-0.0581 0.1505 -0.0581c 0.0445,-0.0000 0.0479,0.0376 0.0479 0.1060v 0.5506 h 0.2770 l -0.0205,0.1607 h -0.2565 v 0.2838 c 0.0000,0.0958 0.0137,0.1436 0.1129 0.1436h 0.0923 c 0.0205,-0.0000 0.0239,0.0171 0.0239 0.0239v 0.0752 c 0.0000,-0.0000 -0.2189,-0.0068 -0.3625 -0.0068c -0.1300,-0.0000 -0.3317,0.0068 -0.3317 0.0068v -0.0752 c 0.0000,-0.0068 0.0034,-0.0239 0.0239 -0.0239h 0.0923 c 0.1060,-0.0000 0.1163,-0.0445 0.1163 -0.1436v -0.2838 h -0.6703 c -0.0137,-0.0000 -0.0205,-0.0068 -0.0308 -0.0205l -0.0274,-0.0376 l -0.0410,-0.0718 c -0.0034,-0.0000 -0.0034,-0.0034 -0.0034 -0.0068c 0.0000,-0.0034 0.0034,-0.0068 0.0068 -0.0103c 0.2223,-0.2462 0.6156,-1.0088 0.7387 -1.2893c 0.0034,-0.0137 0.0103,-0.0171 0.0239 -0.0171c 0.0034,-0.0000 0.0787,0.0308 0.1197 0.0376c -0.1539,0.4138 -0.4070,0.8584 -0.6566 1.2551h 0.5403 v -0.5301 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4133206743970644" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 10.6655,26.8297 h 1.5466 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 6.1475,31.9850 ZM 6.8964,30.1280 c -0.1471,-0.0000 -0.3625,0.1436 -0.3625 0.9404c 0.0000,0.2804 0.0513,0.8447 0.3522 0.8447c 0.0581,-0.0000 0.2223,-0.0376 0.2941 -0.3044c 0.0445,-0.1641 0.0684,-0.3693 0.0684 -0.6669c 0.0000,-0.4343 -0.1094,-0.6771 -0.2086 -0.7626c -0.0376,-0.0342 -0.0889,-0.0513 -0.1436 -0.0513ZM 6.8964,30.1280 ZM 6.8828,32.0260 c -0.3659,-0.0000 -0.6121,-0.4685 -0.6121 -0.9917c 0.0000,-0.6395 0.3044,-1.0259 0.6258 -1.0259c 0.1471,-0.0000 0.2941,0.0923 0.3933 0.2257c 0.1436,0.1915 0.2189,0.4480 0.2189 0.7694c 0.0000,0.7592 -0.3762,1.0225 -0.6258 1.0225ZM 7.6454,31.9850 ZM 7.8403,31.8447 c 0.0000,-0.0992 0.0821,-0.1812 0.1812 -0.1812c 0.0992,-0.0000 0.1812,0.0821 0.1812 0.1812c 0.0000,0.0992 -0.0821,0.1812 -0.1812 0.1812c -0.0992,-0.0000 -0.1812,-0.0821 -0.1812 -0.1812ZM 8.3943,31.9850 ZM 9.1330,30.1143 c -0.0855,-0.0000 -0.3351,0.0479 -0.3351 0.2565c 0.0000,0.0616 -0.0239,0.1676 -0.1163 0.1676c -0.0889,-0.0000 -0.0958,-0.0992 -0.0958 -0.1094c 0.0000,-0.1060 0.1402,-0.4206 0.6156 -0.4206c 0.3317,-0.0000 0.4309,0.2086 0.4309 0.3454c 0.0000,0.0855 -0.0274,0.2565 -0.3351 0.4514c 0.1915,0.0308 0.4446,0.1710 0.4446 0.5266c 0.0000,0.4514 -0.3420,0.6942 -0.7284 0.6942c -0.1949,-0.0000 -0.4685,-0.0855 -0.4685 -0.2154c 0.0000,-0.0513 0.0513,-0.1094 0.1197 -0.1094c 0.0650,-0.0000 0.0958,0.0342 0.1265 0.0787c 0.0376,0.0581 0.0992,0.1402 0.2633 0.1402c 0.1129,-0.0000 0.4343,-0.1129 0.4343 -0.5437c 0.0000,-0.3659 -0.2565,-0.4241 -0.4412 -0.4241c -0.0308,-0.0000 -0.0684,0.0068 -0.1060 0.0137l -0.0137,-0.1026 c 0.2633,-0.0445 0.4822,-0.3009 0.4822 -0.4582c 0.0000,-0.1949 -0.1368,-0.2907 -0.2770 -0.2907Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4133206743970644" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 10.6655,31.9850 h 1.5466 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 6.1475,37.1403 ZM 6.8964,35.2833 c -0.1471,-0.0000 -0.3625,0.1436 -0.3625 0.9404c 0.0000,0.2804 0.0513,0.8447 0.3522 0.8447c 0.0581,-0.0000 0.2223,-0.0376 0.2941 -0.3044c 0.0445,-0.1641 0.0684,-0.3693 0.0684 -0.6669c 0.0000,-0.4343 -0.1094,-0.6771 -0.2086 -0.7626c -0.0376,-0.0342 -0.0889,-0.0513 -0.1436 -0.0513ZM 6.8964,35.2833 ZM 6.8828,37.1813 c -0.3659,-0.0000 -0.6121,-0.4685 -0.6121 -0.9917c 0.0000,-0.6395 0.3044,-1.0259 0.6258 -1.0259c 0.1471,-0.0000 0.2941,0.0923 0.3933 0.2257c 0.1436,0.1915 0.2189,0.4480 0.2189 0.7694c 0.0000,0.7592 -0.3762,1.0225 -0.6258 1.0225ZM 7.6454,37.1403 ZM 7.8403,37.0001 c 0.0000,-0.0992 0.0821,-0.1812 0.1812 -0.1812c 0.0992,-0.0000 0.1812,0.0821 0.1812 0.1812c 0.0000,0.0992 -0.0821,0.1812 -0.1812 0.1812c -0.0992,-0.0000 -0.1812,-0.0821 -0.1812 -0.1812ZM 8.3943,37.1403 ZM 8.5926,35.6253 c 0.0000,-0.1949 0.1881,-0.4617 0.5472 -0.4617c 0.2633,-0.0000 0.5711,0.0992 0.5711 0.4924c 0.0000,0.2599 -0.1334,0.3899 -0.3180 0.5677l -0.3249,0.3146 c -0.0171,0.0171 -0.2462,0.2428 -0.2462 0.4035h 0.5814 c 0.1163,-0.0000 0.1778,-0.0581 0.2257 -0.2462l 0.0855,0.0137 l -0.0684,0.4309 h -1.0567 c 0.0000,-0.1915 0.0308,-0.3386 0.3488 -0.6634l 0.2394,-0.2360 c 0.1915,-0.1949 0.2702,-0.3625 0.2702 -0.5711c 0.0000,-0.3112 -0.2120,-0.4001 -0.3283 -0.4001c -0.2360,-0.0000 -0.3009,0.1231 -0.3009 0.2052c 0.0000,0.0274 0.0068,0.0547 0.0137 0.0787c 0.0068,0.0239 0.0137,0.0479 0.0137 0.0752c 0.0000,0.0889 -0.0684,0.1231 -0.1231 0.1231c -0.0752,-0.0000 -0.1300,-0.0581 -0.1300 -0.1265Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4133206743970644" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 10.6655,37.1403 h 1.5466 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 6.1475,42.2956 ZM 6.8964,40.4386 c -0.1471,-0.0000 -0.3625,0.1436 -0.3625 0.9404c 0.0000,0.2804 0.0513,0.8447 0.3522 0.8447c 0.0581,-0.0000 0.2223,-0.0376 0.2941 -0.3044c 0.0445,-0.1641 0.0684,-0.3693 0.0684 -0.6669c 0.0000,-0.4343 -0.1094,-0.6771 -0.2086 -0.7626c -0.0376,-0.0342 -0.0889,-0.0513 -0.1436 -0.0513ZM 6.8964,40.4386 ZM 6.8828,42.3366 c -0.3659,-0.0000 -0.6121,-0.4685 -0.6121 -0.9917c 0.0000,-0.6395 0.3044,-1.0259 0.6258 -1.0259c 0.1471,-0.0000 0.2941,0.0923 0.3933 0.2257c 0.1436,0.1915 0.2189,0.4480 0.2189 0.7694c 0.0000,0.7592 -0.3762,1.0225 -0.6258 1.0225ZM 7.6454,42.2956 ZM 7.8403,42.1554 c 0.0000,-0.0992 0.0821,-0.1812 0.1812 -0.1812c 0.0992,-0.0000 0.1812,0.0821 0.1812 0.1812c 0.0000,0.0992 -0.0821,0.1812 -0.1812 0.1812c -0.0992,-0.0000 -0.1812,-0.0821 -0.1812 -0.1812ZM 8.3943,42.2956 ZM 9.0372,40.6643 c -0.0650,-0.0000 -0.2154,0.0616 -0.2907 0.0958l -0.0410,-0.1060 c 0.3009,-0.1402 0.4172,-0.2120 0.5882 -0.3351h 0.0650 v 1.7201 c 0.0000,0.1231 0.0171,0.1573 0.1300 0.1573h 0.1778 c 0.0103,-0.0000 0.0274,0.0068 0.0274 0.0274v 0.0752 l -0.4685,-0.0068 l -0.4753,0.0068 v -0.0752 c 0.0034,-0.0103 0.0068,-0.0274 0.0274 -0.0274h 0.2052 c 0.1300,-0.0000 0.1300,-0.0581 0.1300 -0.1573v -1.1764 c 0.0000,-0.1163 0.0000,-0.1983 -0.0752 -0.1983Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4133206743970644" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 10.6655,42.2956 h 1.5466 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 6.1475,47.4509 ZM 6.8964,45.5939 c -0.1471,-0.0000 -0.3625,0.1436 -0.3625 0.9404c 0.0000,0.2804 0.0513,0.8447 0.3522 0.8447c 0.0581,-0.0000 0.2223,-0.0376 0.2941 -0.3044c 0.0445,-0.1641 0.0684,-0.3693 0.0684 -0.6669c 0.0000,-0.4343 -0.1094,-0.6771 -0.2086 -0.7626c -0.0376,-0.0342 -0.0889,-0.0513 -0.1436 -0.0513ZM 6.8964,45.5939 ZM 6.8828,47.4919 c -0.3659,-0.0000 -0.6121,-0.4685 -0.6121 -0.9917c 0.0000,-0.6395 0.3044,-1.0259 0.6258 -1.0259c 0.1471,-0.0000 0.2941,0.0923 0.3933 0.2257c 0.1436,0.1915 0.2189,0.4480 0.2189 0.7694c 0.0000,0.7592 -0.3762,1.0225 -0.6258 1.0225ZM 7.6454,47.4509 ZM 7.8403,47.3107 c 0.0000,-0.0992 0.0821,-0.1812 0.1812 -0.1812c 0.0992,-0.0000 0.1812,0.0821 0.1812 0.1812c 0.0000,0.0992 -0.0821,0.1812 -0.1812 0.1812c -0.0992,-0.0000 -0.1812,-0.0821 -0.1812 -0.1812ZM 8.3943,47.4509 ZM 9.1432,45.5939 c -0.1471,-0.0000 -0.3625,0.1436 -0.3625 0.9404c 0.0000,0.2804 0.0513,0.8447 0.3522 0.8447c 0.0581,-0.0000 0.2223,-0.0376 0.2941 -0.3044c 0.0445,-0.1641 0.0684,-0.3693 0.0684 -0.6669c 0.0000,-0.4343 -0.1094,-0.6771 -0.2086 -0.7626c -0.0376,-0.0342 -0.0889,-0.0513 -0.1436 -0.0513ZM 9.1432,45.5939 ZM 9.1296,47.4919 c -0.3659,-0.0000 -0.6121,-0.4685 -0.6121 -0.9917c 0.0000,-0.6395 0.3044,-1.0259 0.6258 -1.0259c 0.1471,-0.0000 0.2941,0.0923 0.3933 0.2257c 0.1436,0.1915 0.2189,0.4480 0.2189 0.7694c 0.0000,0.7592 -0.3762,1.0225 -0.6258 1.0225Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4133206743970644" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 10.6655,47.4509 h 1.5466 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 5.0087,52.6062 ZM 5.9457,51.7991 h -0.7729 c -0.0308,-0.0000 -0.0513,-0.0274 -0.0513 -0.0581c 0.0000,-0.0547 0.0445,-0.1265 0.0855 -0.1265h 0.7831 c 0.0342,-0.0000 0.0479,0.0308 0.0479 0.0616c 0.0000,0.0376 -0.0479,0.1231 -0.0923 0.1231ZM 6.1475,52.6062 ZM 6.8964,50.7493 c -0.1471,-0.0000 -0.3625,0.1436 -0.3625 0.9404c 0.0000,0.2804 0.0513,0.8447 0.3522 0.8447c 0.0581,-0.0000 0.2223,-0.0376 0.2941 -0.3044c 0.0445,-0.1641 0.0684,-0.3693 0.0684 -0.6669c 0.0000,-0.4343 -0.1094,-0.6771 -0.2086 -0.7626c -0.0376,-0.0342 -0.0889,-0.0513 -0.1436 -0.0513ZM 6.8964,50.7493 ZM 6.8828,52.6472 c -0.3659,-0.0000 -0.6121,-0.4685 -0.6121 -0.9917c 0.0000,-0.6395 0.3044,-1.0259 0.6258 -1.0259c 0.1471,-0.0000 0.2941,0.0923 0.3933 0.2257c 0.1436,0.1915 0.2189,0.4480 0.2189 0.7694c 0.0000,0.7592 -0.3762,1.0225 -0.6258 1.0225ZM 7.6454,52.6062 ZM 7.8403,52.4660 c 0.0000,-0.0992 0.0821,-0.1812 0.1812 -0.1812c 0.0992,-0.0000 0.1812,0.0821 0.1812 0.1812c 0.0000,0.0992 -0.0821,0.1812 -0.1812 0.1812c -0.0992,-0.0000 -0.1812,-0.0821 -0.1812 -0.1812ZM 8.3943,52.6062 ZM 9.0372,50.9750 c -0.0650,-0.0000 -0.2154,0.0616 -0.2907 0.0958l -0.0410,-0.1060 c 0.3009,-0.1402 0.4172,-0.2120 0.5882 -0.3351h 0.0650 v 1.7201 c 0.0000,0.1231 0.0171,0.1573 0.1300 0.1573h 0.1778 c 0.0103,-0.0000 0.0274,0.0068 0.0274 0.0274v 0.0752 l -0.4685,-0.0068 l -0.4753,0.0068 v -0.0752 c 0.0034,-0.0103 0.0068,-0.0274 0.0274 -0.0274h 0.2052 c 0.1300,-0.0000 0.1300,-0.0581 0.1300 -0.1573v -1.1764 c 0.0000,-0.1163 0.0000,-0.1983 -0.0752 -0.1983Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4133206743970644" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 10.6655,52.6062 h 1.5466 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 5.0087,57.7615 ZM 5.9457,56.9544 h -0.7729 c -0.0308,-0.0000 -0.0513,-0.0274 -0.0513 -0.0581c 0.0000,-0.0547 0.0445,-0.1265 0.0855 -0.1265h 0.7831 c 0.0342,-0.0000 0.0479,0.0308 0.0479 0.0616c 0.0000,0.0376 -0.0479,0.1231 -0.0923 0.1231ZM 6.1475,57.7615 ZM 6.8964,55.9046 c -0.1471,-0.0000 -0.3625,0.1436 -0.3625 0.9404c 0.0000,0.2804 0.0513,0.8447 0.3522 0.8447c 0.0581,-0.0000 0.2223,-0.0376 0.2941 -0.3044c 0.0445,-0.1641 0.0684,-0.3693 0.0684 -0.6669c 0.0000,-0.4343 -0.1094,-0.6771 -0.2086 -0.7626c -0.0376,-0.0342 -0.0889,-0.0513 -0.1436 -0.0513ZM 6.8964,55.9046 ZM 6.8828,57.8025 c -0.3659,-0.0000 -0.6121,-0.4685 -0.6121 -0.9917c 0.0000,-0.6395 0.3044,-1.0259 0.6258 -1.0259c 0.1471,-0.0000 0.2941,0.0923 0.3933 0.2257c 0.1436,0.1915 0.2189,0.4480 0.2189 0.7694c 0.0000,0.7592 -0.3762,1.0225 -0.6258 1.0225ZM 7.6454,57.7615 ZM 7.8403,57.6213 c 0.0000,-0.0992 0.0821,-0.1812 0.1812 -0.1812c 0.0992,-0.0000 0.1812,0.0821 0.1812 0.1812c 0.0000,0.0992 -0.0821,0.1812 -0.1812 0.1812c -0.0992,-0.0000 -0.1812,-0.0821 -0.1812 -0.1812ZM 8.3943,57.7615 ZM 8.5926,56.2465 c 0.0000,-0.1949 0.1881,-0.4617 0.5472 -0.4617c 0.2633,-0.0000 0.5711,0.0992 0.5711 0.4924c 0.0000,0.2599 -0.1334,0.3899 -0.3180 0.5677l -0.3249,0.3146 c -0.0171,0.0171 -0.2462,0.2428 -0.2462 0.4035h 0.5814 c 0.1163,-0.0000 0.1778,-0.0581 0.2257 -0.2462l 0.0855,0.0137 l -0.0684,0.4309 h -1.0567 c 0.0000,-0.1915 0.0308,-0.3386 0.3488 -0.6634l 0.2394,-0.2360 c 0.1915,-0.1949 0.2702,-0.3625 0.2702 -0.5711c 0.0000,-0.3112 -0.2120,-0.4001 -0.3283 -0.4001c -0.2360,-0.0000 -0.3009,0.1231 -0.3009 0.2052c 0.0000,0.0274 0.0068,0.0547 0.0137 0.0787c 0.0068,0.0239 0.0137,0.0479 0.0137 0.0752c 0.0000,0.0889 -0.0684,0.1231 -0.1231 0.1231c -0.0752,-0.0000 -0.1300,-0.0581 -0.1300 -0.1265Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4133206743970644" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 10.6655,57.7615 h 1.5466 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 5.0087,62.9168 ZM 5.9457,62.1097 h -0.7729 c -0.0308,-0.0000 -0.0513,-0.0274 -0.0513 -0.0581c 0.0000,-0.0547 0.0445,-0.1265 0.0855 -0.1265h 0.7831 c 0.0342,-0.0000 0.0479,0.0308 0.0479 0.0616c 0.0000,0.0376 -0.0479,0.1231 -0.0923 0.1231ZM 6.1475,62.9168 ZM 6.8964,61.0599 c -0.1471,-0.0000 -0.3625,0.1436 -0.3625 0.9404c 0.0000,0.2804 0.0513,0.8447 0.3522 0.8447c 0.0581,-0.0000 0.2223,-0.0376 0.2941 -0.3044c 0.0445,-0.1641 0.0684,-0.3693 0.0684 -0.6669c 0.0000,-0.4343 -0.1094,-0.6771 -0.2086 -0.7626c -0.0376,-0.0342 -0.0889,-0.0513 -0.1436 -0.0513ZM 6.8964,61.0599 ZM 6.8828,62.9578 c -0.3659,-0.0000 -0.6121,-0.4685 -0.6121 -0.9917c 0.0000,-0.6395 0.3044,-1.0259 0.6258 -1.0259c 0.1471,-0.0000 0.2941,0.0923 0.3933 0.2257c 0.1436,0.1915 0.2189,0.4480 0.2189 0.7694c 0.0000,0.7592 -0.3762,1.0225 -0.6258 1.0225ZM 7.6454,62.9168 ZM 7.8403,62.7766 c 0.0000,-0.0992 0.0821,-0.1812 0.1812 -0.1812c 0.0992,-0.0000 0.1812,0.0821 0.1812 0.1812c 0.0000,0.0992 -0.0821,0.1812 -0.1812 0.1812c -0.0992,-0.0000 -0.1812,-0.0821 -0.1812 -0.1812ZM 8.3943,62.9168 ZM 9.1330,61.0462 c -0.0855,-0.0000 -0.3351,0.0479 -0.3351 0.2565c 0.0000,0.0616 -0.0239,0.1676 -0.1163 0.1676c -0.0889,-0.0000 -0.0958,-0.0992 -0.0958 -0.1094c 0.0000,-0.1060 0.1402,-0.4206 0.6156 -0.4206c 0.3317,-0.0000 0.4309,0.2086 0.4309 0.3454c 0.0000,0.0855 -0.0274,0.2565 -0.3351 0.4514c 0.1915,0.0308 0.4446,0.1710 0.4446 0.5266c 0.0000,0.4514 -0.3420,0.6942 -0.7284 0.6942c -0.1949,-0.0000 -0.4685,-0.0855 -0.4685 -0.2154c 0.0000,-0.0513 0.0513,-0.1094 0.1197 -0.1094c 0.0650,-0.0000 0.0958,0.0342 0.1265 0.0787c 0.0376,0.0581 0.0992,0.1402 0.2633 0.1402c 0.1129,-0.0000 0.4343,-0.1129 0.4343 -0.5437c 0.0000,-0.3659 -0.2565,-0.4241 -0.4412 -0.4241c -0.0308,-0.0000 -0.0684,0.0068 -0.1060 0.0137l -0.0137,-0.1026 c 0.2633,-0.0445 0.4822,-0.3009 0.4822 -0.4582c 0.0000,-0.1949 -0.1368,-0.2907 -0.2770 -0.2907Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4133206743970644" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 10.6655,62.9168 h 1.5466 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 5.0087,68.0721 ZM 5.9457,67.2650 h -0.7729 c -0.0308,-0.0000 -0.0513,-0.0274 -0.0513 -0.0581c 0.0000,-0.0547 0.0445,-0.1265 0.0855 -0.1265h 0.7831 c 0.0342,-0.0000 0.0479,0.0308 0.0479 0.0616c 0.0000,0.0376 -0.0479,0.1231 -0.0923 0.1231ZM 6.1475,68.0721 ZM 6.8964,66.2152 c -0.1471,-0.0000 -0.3625,0.1436 -0.3625 0.9404c 0.0000,0.2804 0.0513,0.8447 0.3522 0.8447c 0.0581,-0.0000 0.2223,-0.0376 0.2941 -0.3044c 0.0445,-0.1641 0.0684,-0.3693 0.0684 -0.6669c 0.0000,-0.4343 -0.1094,-0.6771 -0.2086 -0.7626c -0.0376,-0.0342 -0.0889,-0.0513 -0.1436 -0.0513ZM 6.8964,66.2152 ZM 6.8828,68.1131 c -0.3659,-0.0000 -0.6121,-0.4685 -0.6121 -0.9917c 0.0000,-0.6395 0.3044,-1.0259 0.6258 -1.0259c 0.1471,-0.0000 0.2941,0.0923 0.3933 0.2257c 0.1436,0.1915 0.2189,0.4480 0.2189 0.7694c 0.0000,0.7592 -0.3762,1.0225 -0.6258 1.0225ZM 7.6454,68.0721 ZM 7.8403,67.9319 c 0.0000,-0.0992 0.0821,-0.1812 0.1812 -0.1812c 0.0992,-0.0000 0.1812,0.0821 0.1812 0.1812c 0.0000,0.0992 -0.0821,0.1812 -0.1812 0.1812c -0.0992,-0.0000 -0.1812,-0.0821 -0.1812 -0.1812ZM 8.3943,68.0721 ZM 9.2766,66.8581 c 0.0000,-0.0239 0.0034,-0.0513 0.0342 -0.0684c 0.0376,-0.0274 0.0992,-0.0581 0.1505 -0.0581c 0.0445,-0.0000 0.0479,0.0376 0.0479 0.1060v 0.5506 h 0.2770 l -0.0205,0.1607 h -0.2565 v 0.2838 c 0.0000,0.0958 0.0137,0.1436 0.1129 0.1436h 0.0923 c 0.0205,-0.0000 0.0239,0.0171 0.0239 0.0239v 0.0752 c 0.0000,-0.0000 -0.2189,-0.0068 -0.3625 -0.0068c -0.1300,-0.0000 -0.3317,0.0068 -0.3317 0.0068v -0.0752 c 0.0000,-0.0068 0.0034,-0.0239 0.0239 -0.0239h 0.0923 c 0.1060,-0.0000 0.1163,-0.0445 0.1163 -0.1436v -0.2838 h -0.6703 c -0.0137,-0.0000 -0.0205,-0.0068 -0.0308 -0.0205l -0.0274,-0.0376 l -0.0410,-0.0718 c -0.0034,-0.0000 -0.0034,-0.0034 -0.0034 -0.0068c 0.0000,-0.0034 0.0034,-0.0068 0.0068 -0.0103c 0.2223,-0.2462 0.6156,-1.0088 0.7387 -1.2893c 0.0034,-0.0137 0.0103,-0.0171 0.0239 -0.0171c 0.0034,-0.0000 0.0787,0.0308 0.1197 0.0376c -0.1539,0.4138 -0.4070,0.8584 -0.6566 1.2551h 0.5403 v -0.5301 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4133206743970644" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 10.6655,68.0721 h 1.5466 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 5.0087,73.2274 ZM 5.9457,72.4203 h -0.7729 c -0.0308,-0.0000 -0.0513,-0.0274 -0.0513 -0.0581c 0.0000,-0.0547 0.0445,-0.1265 0.0855 -0.1265h 0.7831 c 0.0342,-0.0000 0.0479,0.0308 0.0479 0.0616c 0.0000,0.0376 -0.0479,0.1231 -0.0923 0.1231ZM 6.1475,73.2274 ZM 6.8964,71.3705 c -0.1471,-0.0000 -0.3625,0.1436 -0.3625 0.9404c 0.0000,0.2804 0.0513,0.8447 0.3522 0.8447c 0.0581,-0.0000 0.2223,-0.0376 0.2941 -0.3044c 0.0445,-0.1641 0.0684,-0.3693 0.0684 -0.6669c 0.0000,-0.4343 -0.1094,-0.6771 -0.2086 -0.7626c -0.0376,-0.0342 -0.0889,-0.0513 -0.1436 -0.0513ZM 6.8964,71.3705 ZM 6.8828,73.2685 c -0.3659,-0.0000 -0.6121,-0.4685 -0.6121 -0.9917c 0.0000,-0.6395 0.3044,-1.0259 0.6258 -1.0259c 0.1471,-0.0000 0.2941,0.0923 0.3933 0.2257c 0.1436,0.1915 0.2189,0.4480 0.2189 0.7694c 0.0000,0.7592 -0.3762,1.0225 -0.6258 1.0225ZM 7.6454,73.2274 ZM 7.8403,73.0872 c 0.0000,-0.0992 0.0821,-0.1812 0.1812 -0.1812c 0.0992,-0.0000 0.1812,0.0821 0.1812 0.1812c 0.0000,0.0992 -0.0821,0.1812 -0.1812 0.1812c -0.0992,-0.0000 -0.1812,-0.0821 -0.1812 -0.1812ZM 8.3943,73.2274 ZM 9.4510,72.6495 c 0.0000,-0.3522 -0.1915,-0.5266 -0.4035 -0.5266c -0.1573,-0.0000 -0.2770,0.0239 -0.4104 0.0787l 0.1094,-0.9336 c 0.1129,0.0103 0.2291,0.0137 0.3488 0.0137c 0.1710,-0.0000 0.3488,-0.0103 0.5335 -0.0308l 0.0205,0.0103 l -0.0513,0.2223 c -0.1334,0.0137 -0.2428,0.0171 -0.3386 0.0171c -0.1539,-0.0000 -0.2702,-0.0137 -0.3899 -0.0274l -0.0650,0.5403 c 0.0718,-0.0274 0.1949,-0.0513 0.3283 -0.0513c 0.3625,-0.0000 0.5643,0.3146 0.5643 0.6292c 0.0000,0.3830 -0.2667,0.6771 -0.6532 0.6771c -0.1949,-0.0000 -0.4788,-0.1094 -0.4788 -0.2428c 0.0000,-0.0650 0.0547,-0.1094 0.1163 -0.1094c 0.0684,-0.0000 0.1129,0.0513 0.1539 0.1060c 0.0513,0.0616 0.1060,0.1300 0.2154 0.1300c 0.2189,-0.0000 0.4001,-0.2052 0.4001 -0.5027Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4133206743970644" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 10.6655,73.2274 h 1.5466 "/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 94.0455,75.3254 l -0.0000,-1.0311 h -77.3296 l -0.0000,1.0311 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 92.1732,79.6715 ZM 92.9221,77.8146 c -0.1471,-0.0000 -0.3625,0.1436 -0.3625 0.9404c 0.0000,0.2804 0.0513,0.8447 0.3522 0.8447c 0.0581,-0.0000 0.2223,-0.0376 0.2941 -0.3044c 0.0445,-0.1641 0.0684,-0.3693 0.0684 -0.6669c 0.0000,-0.4343 -0.1094,-0.6771 -0.2086 -0.7626c -0.0376,-0.0342 -0.0889,-0.0513 -0.1436 -0.0513ZM 92.9221,77.8146 ZM 92.9084,79.7126 c -0.3659,-0.0000 -0.6121,-0.4685 -0.6121 -0.9917c 0.0000,-0.6395 0.3044,-1.0259 0.6258 -1.0259c 0.1471,-0.0000 0.2941,0.0923 0.3933 0.2257c 0.1436,0.1915 0.2189,0.4480 0.2189 0.7694c 0.0000,0.7592 -0.3762,1.0225 -0.6258 1.0225ZM 93.6710,79.6715 ZM 93.8660,79.5313 c 0.0000,-0.0992 0.0821,-0.1812 0.1812 -0.1812c 0.0992,-0.0000 0.1812,0.0821 0.1812 0.1812c 0.0000,0.0992 -0.0821,0.1812 -0.1812 0.1812c -0.0992,-0.0000 -0.1812,-0.0821 -0.1812 -0.1812ZM 94.4200,79.6715 ZM 95.4767,79.0936 c 0.0000,-0.3522 -0.1915,-0.5266 -0.4035 -0.5266c -0.1573,-0.0000 -0.2770,0.0239 -0.4104 0.0787l 0.1094,-0.9336 c 0.1129,0.0103 0.2291,0.0137 0.3488 0.0137c 0.1710,-0.0000 0.3488,-0.0103 0.5335 -0.0308l 0.0205,0.0103 l -0.0513,0.2223 c -0.1334,0.0137 -0.2428,0.0171 -0.3386 0.0171c -0.1539,-0.0000 -0.2702,-0.0137 -0.3899 -0.0274l -0.0650,0.5403 c 0.0718,-0.0274 0.1949,-0.0513 0.3283 -0.0513c 0.3625,-0.0000 0.5643,0.3146 0.5643 0.6292c 0.0000,0.3830 -0.2667,0.6771 -0.6532 0.6771c -0.1949,-0.0000 -0.4788,-0.1094 -0.4788 -0.2428c 0.0000,-0.0650 0.0547,-0.1094 0.1163 -0.1094c 0.0684,-0.0000 0.1129,0.0513 0.1539 0.1060c 0.0513,0.0616 0.1060,0.1300 0.2154 0.1300c 0.2189,-0.0000 0.4001,-0.2052 0.4001 -0.5027Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4133206743970644" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 94.0455,74.2944 v 1.5466 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 84.4402,79.6715 ZM 85.1891,77.8146 c -0.1471,-0.0000 -0.3625,0.1436 -0.3625 0.9404c 0.0000,0.2804 0.0513,0.8447 0.3522 0.8447c 0.0581,-0.0000 0.2223,-0.0376 0.2941 -0.3044c 0.0445,-0.1641 0.0684,-0.3693 0.0684 -0.6669c 0.0000,-0.4343 -0.1094,-0.6771 -0.2086 -0.7626c -0.0376,-0.0342 -0.0889,-0.0513 -0.1436 -0.0513ZM 85.1891,77.8146 ZM 85.1755,79.7126 c -0.3659,-0.0000 -0.6121,-0.4685 -0.6121 -0.9917c 0.0000,-0.6395 0.3044,-1.0259 0.6258 -1.0259c 0.1471,-0.0000 0.2941,0.0923 0.3933 0.2257c 0.1436,0.1915 0.2189,0.4480 0.2189 0.7694c 0.0000,0.7592 -0.3762,1.0225 -0.6258 1.0225ZM 85.9381,79.6715 ZM 86.1330,79.5313 c 0.0000,-0.0992 0.0821,-0.1812 0.1812 -0.1812c 0.0992,-0.0000 0.1812,0.0821 0.1812 0.1812c 0.0000,0.0992 -0.0821,0.1812 -0.1812 0.1812c -0.0992,-0.0000 -0.1812,-0.0821 -0.1812 -0.1812ZM 86.6870,79.6715 ZM 87.5693,78.4575 c 0.0000,-0.0239 0.0034,-0.0513 0.0342 -0.0684c 0.0376,-0.0274 0.0992,-0.0581 0.1505 -0.0581c 0.0445,-0.0000 0.0479,0.0376 0.0479 0.1060v 0.5506 h 0.2770 l -0.0205,0.1607 h -0.2565 v 0.2838 c 0.0000,0.0958 0.0137,0.1436 0.1129 0.1436h 0.0923 c 0.0205,-0.0000 0.0239,0.0171 0.0239 0.0239v 0.0752 c 0.0000,-0.0000 -0.2189,-0.0068 -0.3625 -0.0068c -0.1300,-0.0000 -0.3317,0.0068 -0.3317 0.0068v -0.0752 c 0.0000,-0.0068 0.0034,-0.0239 0.0239 -0.0239h 0.0923 c 0.1060,-0.0000 0.1163,-0.0445 0.1163 -0.1436v -0.2838 h -0.6703 c -0.0137,-0.0000 -0.0205,-0.0068 -0.0308 -0.0205l -0.0274,-0.0376 l -0.0410,-0.0718 c -0.0034,-0.0000 -0.0034,-0.0034 -0.0034 -0.0068c 0.0000,-0.0034 0.0034,-0.0068 0.0068 -0.0103c 0.2223,-0.2462 0.6156,-1.0088 0.7387 -1.2893c 0.0034,-0.0137 0.0103,-0.0171 0.0239 -0.0171c 0.0034,-0.0000 0.0787,0.0308 0.1197 0.0376c -0.1539,0.4138 -0.4070,0.8584 -0.6566 1.2551h 0.5403 v -0.5301 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4133206743970644" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 86.3125,74.2944 v 1.5466 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 76.7072,79.6715 ZM 77.4562,77.8146 c -0.1471,-0.0000 -0.3625,0.1436 -0.3625 0.9404c 0.0000,0.2804 0.0513,0.8447 0.3522 0.8447c 0.0581,-0.0000 0.2223,-0.0376 0.2941 -0.3044c 0.0445,-0.1641 0.0684,-0.3693 0.0684 -0.6669c 0.0000,-0.4343 -0.1094,-0.6771 -0.2086 -0.7626c -0.0376,-0.0342 -0.0889,-0.0513 -0.1436 -0.0513ZM 77.4562,77.8146 ZM 77.4425,79.7126 c -0.3659,-0.0000 -0.6121,-0.4685 -0.6121 -0.9917c 0.0000,-0.6395 0.3044,-1.0259 0.6258 -1.0259c 0.1471,-0.0000 0.2941,0.0923 0.3933 0.2257c 0.1436,0.1915 0.2189,0.4480 0.2189 0.7694c 0.0000,0.7592 -0.3762,1.0225 -0.6258 1.0225ZM 78.2051,79.6715 ZM 78.4000,79.5313 c 0.0000,-0.0992 0.0821,-0.1812 0.1812 -0.1812c 0.0992,-0.0000 0.1812,0.0821 0.1812 0.1812c 0.0000,0.0992 -0.0821,0.1812 -0.1812 0.1812c -0.0992,-0.0000 -0.1812,-0.0821 -0.1812 -0.1812ZM 78.9540,79.6715 ZM 79.6927,77.8009 c -0.0855,-0.0000 -0.3351,0.0479 -0.3351 0.2565c 0.0000,0.0616 -0.0239,0.1676 -0.1163 0.1676c -0.0889,-0.0000 -0.0958,-0.0992 -0.0958 -0.1094c 0.0000,-0.1060 0.1402,-0.4206 0.6156 -0.4206c 0.3317,-0.0000 0.4309,0.2086 0.4309 0.3454c 0.0000,0.0855 -0.0274,0.2565 -0.3351 0.4514c 0.1915,0.0308 0.4446,0.1710 0.4446 0.5266c 0.0000,0.4514 -0.3420,0.6942 -0.7284 0.6942c -0.1949,-0.0000 -0.4685,-0.0855 -0.4685 -0.2154c 0.0000,-0.0513 0.0513,-0.1094 0.1197 -0.1094c 0.0650,-0.0000 0.0958,0.0342 0.1265 0.0787c 0.0376,0.0581 0.0992,0.1402 0.2633 0.1402c 0.1129,-0.0000 0.4343,-0.1129 0.4343 -0.5437c 0.0000,-0.3659 -0.2565,-0.4241 -0.4412 -0.4241c -0.0308,-0.0000 -0.0684,0.0068 -0.1060 0.0137l -0.0137,-0.1026 c 0.2633,-0.0445 0.4822,-0.3009 0.4822 -0.4582c 0.0000,-0.1949 -0.1368,-0.2907 -0.2770 -0.2907Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4133206743970644" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 78.5796,74.2944 v 1.5466 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 68.9743,79.6715 ZM 69.7232,77.8146 c -0.1471,-0.0000 -0.3625,0.1436 -0.3625 0.9404c 0.0000,0.2804 0.0513,0.8447 0.3522 0.8447c 0.0581,-0.0000 0.2223,-0.0376 0.2941 -0.3044c 0.0445,-0.1641 0.0684,-0.3693 0.0684 -0.6669c 0.0000,-0.4343 -0.1094,-0.6771 -0.2086 -0.7626c -0.0376,-0.0342 -0.0889,-0.0513 -0.1436 -0.0513ZM 69.7232,77.8146 ZM 69.7095,79.7126 c -0.3659,-0.0000 -0.6121,-0.4685 -0.6121 -0.9917c 0.0000,-0.6395 0.3044,-1.0259 0.6258 -1.0259c 0.1471,-0.0000 0.2941,0.0923 0.3933 0.2257c 0.1436,0.1915 0.2189,0.4480 0.2189 0.7694c 0.0000,0.7592 -0.3762,1.0225 -0.6258 1.0225ZM 70.4721,79.6715 ZM 70.6671,79.5313 c 0.0000,-0.0992 0.0821,-0.1812 0.1812 -0.1812c 0.0992,-0.0000 0.1812,0.0821 0.1812 0.1812c 0.0000,0.0992 -0.0821,0.1812 -0.1812 0.1812c -0.0992,-0.0000 -0.1812,-0.0821 -0.1812 -0.1812ZM 71.2211,79.6715 ZM 71.4194,78.1566 c 0.0000,-0.1949 0.1881,-0.4617 0.5472 -0.4617c 0.2633,-0.0000 0.5711,0.0992 0.5711 0.4924c 0.0000,0.2599 -0.1334,0.3899 -0.3180 0.5677l -0.3249,0.3146 c -0.0171,0.0171 -0.2462,0.2428 -0.2462 0.4035h 0.5814 c 0.1163,-0.0000 0.1778,-0.0581 0.2257 -0.2462l 0.0855,0.0137 l -0.0684,0.4309 h -1.0567 c 0.0000,-0.1915 0.0308,-0.3386 0.3488 -0.6634l 0.2394,-0.2360 c 0.1915,-0.1949 0.2702,-0.3625 0.2702 -0.5711c 0.0000,-0.3112 -0.2120,-0.4001 -0.3283 -0.4001c -0.2360,-0.0000 -0.3009,0.1231 -0.3009 0.2052c 0.0000,0.0274 0.0068,0.0547 0.0137 0.0787c 0.0068,0.0239 0.0137,0.0479 0.0137 0.0752c 0.0000,0.0889 -0.0684,0.1231 -0.1231 0.1231c -0.0752,-0.0000 -0.1300,-0.0581 -0.1300 -0.1265Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4133206743970644" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 70.8466,74.2944 v 1.5466 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 61.2413,79.6715 ZM 61.9903,77.8146 c -0.1471,-0.0000 -0.3625,0.1436 -0.3625 0.9404c 0.0000,0.2804 0.0513,0.8447 0.3522 0.8447c 0.0581,-0.0000 0.2223,-0.0376 0.2941 -0.3044c 0.0445,-0.1641 0.0684,-0.3693 0.0684 -0.6669c 0.0000,-0.4343 -0.1094,-0.6771 -0.2086 -0.7626c -0.0376,-0.0342 -0.0889,-0.0513 -0.1436 -0.0513ZM 61.9903,77.8146 ZM 61.9766,79.7126 c -0.3659,-0.0000 -0.6121,-0.4685 -0.6121 -0.9917c 0.0000,-0.6395 0.3044,-1.0259 0.6258 -1.0259c 0.1471,-0.0000 0.2941,0.0923 0.3933 0.2257c 0.1436,0.1915 0.2189,0.4480 0.2189 0.7694c 0.0000,0.7592 -0.3762,1.0225 -0.6258 1.0225ZM 62.7392,79.6715 ZM 62.9341,79.5313 c 0.0000,-0.0992 0.0821,-0.1812 0.1812 -0.1812c 0.0992,-0.0000 0.1812,0.0821 0.1812 0.1812c 0.0000,0.0992 -0.0821,0.1812 -0.1812 0.1812c -0.0992,-0.0000 -0.1812,-0.0821 -0.1812 -0.1812ZM 63.4881,79.6715 ZM 64.1310,78.0403 c -0.0650,-0.0000 -0.2154,0.0616 -0.2907 0.0958l -0.0410,-0.1060 c 0.3009,-0.1402 0.4172,-0.2120 0.5882 -0.3351h 0.0650 v 1.7201 c 0.0000,0.1231 0.0171,0.1573 0.1300 0.1573h 0.1778 c 0.0103,-0.0000 0.0274,0.0068 0.0274 0.0274v 0.0752 l -0.4685,-0.0068 l -0.4753,0.0068 v -0.0752 c 0.0034,-0.0103 0.0068,-0.0274 0.0274 -0.0274h 0.2052 c 0.1300,-0.0000 0.1300,-0.0581 0.1300 -0.1573v -1.1764 c 0.0000,-0.1163 0.0000,-0.1983 -0.0752 -0.1983Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4133206743970644" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 63.1137,74.2944 v 1.5466 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 53.5084,79.6715 ZM 54.2573,77.8146 c -0.1471,-0.0000 -0.3625,0.1436 -0.3625 0.9404c 0.0000,0.2804 0.0513,0.8447 0.3522 0.8447c 0.0581,-0.0000 0.2223,-0.0376 0.2941 -0.3044c 0.0445,-0.1641 0.0684,-0.3693 0.0684 -0.6669c 0.0000,-0.4343 -0.1094,-0.6771 -0.2086 -0.7626c -0.0376,-0.0342 -0.0889,-0.0513 -0.1436 -0.0513ZM 54.2573,77.8146 ZM 54.2436,79.7126 c -0.3659,-0.0000 -0.6121,-0.4685 -0.6121 -0.9917c 0.0000,-0.6395 0.3044,-1.0259 0.6258 -1.0259c 0.1471,-0.0000 0.2941,0.0923 0.3933 0.2257c 0.1436,0.1915 0.2189,0.4480 0.2189 0.7694c 0.0000,0.7592 -0.3762,1.0225 -0.6258 1.0225ZM 55.0062,79.6715 ZM 55.2012,79.5313 c 0.0000,-0.0992 0.0821,-0.1812 0.1812 -0.1812c 0.0992,-0.0000 0.1812,0.0821 0.1812 0.1812c 0.0000,0.0992 -0.0821,0.1812 -0.1812 0.1812c -0.0992,-0.0000 -0.1812,-0.0821 -0.1812 -0.1812ZM 55.7552,79.6715 ZM 56.5041,77.8146 c -0.1471,-0.0000 -0.3625,0.1436 -0.3625 0.9404c 0.0000,0.2804 0.0513,0.8447 0.3522 0.8447c 0.0581,-0.0000 0.2223,-0.0376 0.2941 -0.3044c 0.0445,-0.1641 0.0684,-0.3693 0.0684 -0.6669c 0.0000,-0.4343 -0.1094,-0.6771 -0.2086 -0.7626c -0.0376,-0.0342 -0.0889,-0.0513 -0.1436 -0.0513ZM 56.5041,77.8146 ZM 56.4904,79.7126 c -0.3659,-0.0000 -0.6121,-0.4685 -0.6121 -0.9917c 0.0000,-0.6395 0.3044,-1.0259 0.6258 -1.0259c 0.1471,-0.0000 0.2941,0.0923 0.3933 0.2257c 0.1436,0.1915 0.2189,0.4480 0.2189 0.7694c 0.0000,0.7592 -0.3762,1.0225 -0.6258 1.0225Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4133206743970644" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 55.3807,74.2944 v 1.5466 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.2060,79.6715 ZM 46.1430,78.8645 h -0.7729 c -0.0308,-0.0000 -0.0513,-0.0274 -0.0513 -0.0581c 0.0000,-0.0547 0.0445,-0.1265 0.0855 -0.1265h 0.7831 c 0.0342,-0.0000 0.0479,0.0308 0.0479 0.0616c 0.0000,0.0376 -0.0479,0.1231 -0.0923 0.1231ZM 46.3448,79.6715 ZM 47.0937,77.8146 c -0.1471,-0.0000 -0.3625,0.1436 -0.3625 0.9404c 0.0000,0.2804 0.0513,0.8447 0.3522 0.8447c 0.0581,-0.0000 0.2223,-0.0376 0.2941 -0.3044c 0.0445,-0.1641 0.0684,-0.3693 0.0684 -0.6669c 0.0000,-0.4343 -0.1094,-0.6771 -0.2086 -0.7626c -0.0376,-0.0342 -0.0889,-0.0513 -0.1436 -0.0513ZM 47.0937,77.8146 ZM 47.0800,79.7126 c -0.3659,-0.0000 -0.6121,-0.4685 -0.6121 -0.9917c 0.0000,-0.6395 0.3044,-1.0259 0.6258 -1.0259c 0.1471,-0.0000 0.2941,0.0923 0.3933 0.2257c 0.1436,0.1915 0.2189,0.4480 0.2189 0.7694c 0.0000,0.7592 -0.3762,1.0225 -0.6258 1.0225ZM 47.8427,79.6715 ZM 48.0376,79.5313 c 0.0000,-0.0992 0.0821,-0.1812 0.1812 -0.1812c 0.0992,-0.0000 0.1812,0.0821 0.1812 0.1812c 0.0000,0.0992 -0.0821,0.1812 -0.1812 0.1812c -0.0992,-0.0000 -0.1812,-0.0821 -0.1812 -0.1812ZM 48.5916,79.6715 ZM 49.2345,78.0403 c -0.0650,-0.0000 -0.2154,0.0616 -0.2907 0.0958l -0.0410,-0.1060 c 0.3009,-0.1402 0.4172,-0.2120 0.5882 -0.3351h 0.0650 v 1.7201 c 0.0000,0.1231 0.0171,0.1573 0.1300 0.1573h 0.1778 c 0.0103,-0.0000 0.0274,0.0068 0.0274 0.0274v 0.0752 l -0.4685,-0.0068 l -0.4753,0.0068 v -0.0752 c 0.0034,-0.0103 0.0068,-0.0274 0.0274 -0.0274h 0.2052 c 0.1300,-0.0000 0.1300,-0.0581 0.1300 -0.1573v -1.1764 c 0.0000,-0.1163 0.0000,-0.1983 -0.0752 -0.1983Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4133206743970644" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 47.6477,74.2944 v 1.5466 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 37.4731,79.6715 ZM 38.4101,78.8645 h -0.7729 c -0.0308,-0.0000 -0.0513,-0.0274 -0.0513 -0.0581c 0.0000,-0.0547 0.0445,-0.1265 0.0855 -0.1265h 0.7831 c 0.0342,-0.0000 0.0479,0.0308 0.0479 0.0616c 0.0000,0.0376 -0.0479,0.1231 -0.0923 0.1231ZM 38.6118,79.6715 ZM 39.3608,77.8146 c -0.1471,-0.0000 -0.3625,0.1436 -0.3625 0.9404c 0.0000,0.2804 0.0513,0.8447 0.3522 0.8447c 0.0581,-0.0000 0.2223,-0.0376 0.2941 -0.3044c 0.0445,-0.1641 0.0684,-0.3693 0.0684 -0.6669c 0.0000,-0.4343 -0.1094,-0.6771 -0.2086 -0.7626c -0.0376,-0.0342 -0.0889,-0.0513 -0.1436 -0.0513ZM 39.3608,77.8146 ZM 39.3471,79.7126 c -0.3659,-0.0000 -0.6121,-0.4685 -0.6121 -0.9917c 0.0000,-0.6395 0.3044,-1.0259 0.6258 -1.0259c 0.1471,-0.0000 0.2941,0.0923 0.3933 0.2257c 0.1436,0.1915 0.2189,0.4480 0.2189 0.7694c 0.0000,0.7592 -0.3762,1.0225 -0.6258 1.0225ZM 40.1097,79.6715 ZM 40.3046,79.5313 c 0.0000,-0.0992 0.0821,-0.1812 0.1812 -0.1812c 0.0992,-0.0000 0.1812,0.0821 0.1812 0.1812c 0.0000,0.0992 -0.0821,0.1812 -0.1812 0.1812c -0.0992,-0.0000 -0.1812,-0.0821 -0.1812 -0.1812ZM 40.8586,79.6715 ZM 41.0570,78.1566 c 0.0000,-0.1949 0.1881,-0.4617 0.5472 -0.4617c 0.2633,-0.0000 0.5711,0.0992 0.5711 0.4924c 0.0000,0.2599 -0.1334,0.3899 -0.3180 0.5677l -0.3249,0.3146 c -0.0171,0.0171 -0.2462,0.2428 -0.2462 0.4035h 0.5814 c 0.1163,-0.0000 0.1778,-0.0581 0.2257 -0.2462l 0.0855,0.0137 l -0.0684,0.4309 h -1.0567 c 0.0000,-0.1915 0.0308,-0.3386 0.3488 -0.6634l 0.2394,-0.2360 c 0.1915,-0.1949 0.2702,-0.3625 0.2702 -0.5711c 0.0000,-0.3112 -0.2120,-0.4001 -0.3283 -0.4001c -0.2360,-0.0000 -0.3009,0.1231 -0.3009 0.2052c 0.0000,0.0274 0.0068,0.0547 0.0137 0.0787c 0.0068,0.0239 0.0137,0.0479 0.0137 0.0752c 0.0000,0.0889 -0.0684,0.1231 -0.1231 0.1231c -0.0752,-0.0000 -0.1300,-0.0581 -0.1300 -0.1265Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4133206743970644" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 39.9148,74.2944 v 1.5466 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 29.7401,79.6715 ZM 30.6771,78.8645 h -0.7729 c -0.0308,-0.0000 -0.0513,-0.0274 -0.0513 -0.0581c 0.0000,-0.0547 0.0445,-0.1265 0.0855 -0.1265h 0.7831 c 0.0342,-0.0000 0.0479,0.0308 0.0479 0.0616c 0.0000,0.0376 -0.0479,0.1231 -0.0923 0.1231ZM 30.8789,79.6715 ZM 31.6278,77.8146 c -0.1471,-0.0000 -0.3625,0.1436 -0.3625 0.9404c 0.0000,0.2804 0.0513,0.8447 0.3522 0.8447c 0.0581,-0.0000 0.2223,-0.0376 0.2941 -0.3044c 0.0445,-0.1641 0.0684,-0.3693 0.0684 -0.6669c 0.0000,-0.4343 -0.1094,-0.6771 -0.2086 -0.7626c -0.0376,-0.0342 -0.0889,-0.0513 -0.1436 -0.0513ZM 31.6278,77.8146 ZM 31.6141,79.7126 c -0.3659,-0.0000 -0.6121,-0.4685 -0.6121 -0.9917c 0.0000,-0.6395 0.3044,-1.0259 0.6258 -1.0259c 0.1471,-0.0000 0.2941,0.0923 0.3933 0.2257c 0.1436,0.1915 0.2189,0.4480 0.2189 0.7694c 0.0000,0.7592 -0.3762,1.0225 -0.6258 1.0225ZM 32.3767,79.6715 ZM 32.5717,79.5313 c 0.0000,-0.0992 0.0821,-0.1812 0.1812 -0.1812c 0.0992,-0.0000 0.1812,0.0821 0.1812 0.1812c 0.0000,0.0992 -0.0821,0.1812 -0.1812 0.1812c -0.0992,-0.0000 -0.1812,-0.0821 -0.1812 -0.1812ZM 33.1257,79.6715 ZM 33.8643,77.8009 c -0.0855,-0.0000 -0.3351,0.0479 -0.3351 0.2565c 0.0000,0.0616 -0.0239,0.1676 -0.1163 0.1676c -0.0889,-0.0000 -0.0958,-0.0992 -0.0958 -0.1094c 0.0000,-0.1060 0.1402,-0.4206 0.6156 -0.4206c 0.3317,-0.0000 0.4309,0.2086 0.4309 0.3454c 0.0000,0.0855 -0.0274,0.2565 -0.3351 0.4514c 0.1915,0.0308 0.4446,0.1710 0.4446 0.5266c 0.0000,0.4514 -0.3420,0.6942 -0.7284 0.6942c -0.1949,-0.0000 -0.4685,-0.0855 -0.4685 -0.2154c 0.0000,-0.0513 0.0513,-0.1094 0.1197 -0.1094c 0.0650,-0.0000 0.0958,0.0342 0.1265 0.0787c 0.0376,0.0581 0.0992,0.1402 0.2633 0.1402c 0.1129,-0.0000 0.4343,-0.1129 0.4343 -0.5437c 0.0000,-0.3659 -0.2565,-0.4241 -0.4412 -0.4241c -0.0308,-0.0000 -0.0684,0.0068 -0.1060 0.0137l -0.0137,-0.1026 c 0.2633,-0.0445 0.4822,-0.3009 0.4822 -0.4582c 0.0000,-0.1949 -0.1368,-0.2907 -0.2770 -0.2907Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4133206743970644" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 32.1818,74.2944 v 1.5466 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 22.0071,79.6715 ZM 22.9442,78.8645 h -0.7729 c -0.0308,-0.0000 -0.0513,-0.0274 -0.0513 -0.0581c 0.0000,-0.0547 0.0445,-0.1265 0.0855 -0.1265h 0.7831 c 0.0342,-0.0000 0.0479,0.0308 0.0479 0.0616c 0.0000,0.0376 -0.0479,0.1231 -0.0923 0.1231ZM 23.1459,79.6715 ZM 23.8948,77.8146 c -0.1471,-0.0000 -0.3625,0.1436 -0.3625 0.9404c 0.0000,0.2804 0.0513,0.8447 0.3522 0.8447c 0.0581,-0.0000 0.2223,-0.0376 0.2941 -0.3044c 0.0445,-0.1641 0.0684,-0.3693 0.0684 -0.6669c 0.0000,-0.4343 -0.1094,-0.6771 -0.2086 -0.7626c -0.0376,-0.0342 -0.0889,-0.0513 -0.1436 -0.0513ZM 23.8948,77.8146 ZM 23.8812,79.7126 c -0.3659,-0.0000 -0.6121,-0.4685 -0.6121 -0.9917c 0.0000,-0.6395 0.3044,-1.0259 0.6258 -1.0259c 0.1471,-0.0000 0.2941,0.0923 0.3933 0.2257c 0.1436,0.1915 0.2189,0.4480 0.2189 0.7694c 0.0000,0.7592 -0.3762,1.0225 -0.6258 1.0225ZM 24.6438,79.6715 ZM 24.8387,79.5313 c 0.0000,-0.0992 0.0821,-0.1812 0.1812 -0.1812c 0.0992,-0.0000 0.1812,0.0821 0.1812 0.1812c 0.0000,0.0992 -0.0821,0.1812 -0.1812 0.1812c -0.0992,-0.0000 -0.1812,-0.0821 -0.1812 -0.1812ZM 25.3927,79.6715 ZM 26.2750,78.4575 c 0.0000,-0.0239 0.0034,-0.0513 0.0342 -0.0684c 0.0376,-0.0274 0.0992,-0.0581 0.1505 -0.0581c 0.0445,-0.0000 0.0479,0.0376 0.0479 0.1060v 0.5506 h 0.2770 l -0.0205,0.1607 h -0.2565 v 0.2838 c 0.0000,0.0958 0.0137,0.1436 0.1129 0.1436h 0.0923 c 0.0205,-0.0000 0.0239,0.0171 0.0239 0.0239v 0.0752 c 0.0000,-0.0000 -0.2189,-0.0068 -0.3625 -0.0068c -0.1300,-0.0000 -0.3317,0.0068 -0.3317 0.0068v -0.0752 c 0.0000,-0.0068 0.0034,-0.0239 0.0239 -0.0239h 0.0923 c 0.1060,-0.0000 0.1163,-0.0445 0.1163 -0.1436v -0.2838 h -0.6703 c -0.0137,-0.0000 -0.0205,-0.0068 -0.0308 -0.0205l -0.0274,-0.0376 l -0.0410,-0.0718 c -0.0034,-0.0000 -0.0034,-0.0034 -0.0034 -0.0068c 0.0000,-0.0034 0.0034,-0.0068 0.0068 -0.0103c 0.2223,-0.2462 0.6156,-1.0088 0.7387 -1.2893c 0.0034,-0.0137 0.0103,-0.0171 0.0239 -0.0171c 0.0034,-0.0000 0.0787,0.0308 0.1197 0.0376c -0.1539,0.4138 -0.4070,0.8584 -0.6566 1.2551h 0.5403 v -0.5301 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4133206743970644" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 24.4489,74.2944 v 1.5466 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 14.2742,79.6715 ZM 15.2112,78.8645 h -0.7729 c -0.0308,-0.0000 -0.0513,-0.0274 -0.0513 -0.0581c 0.0000,-0.0547 0.0445,-0.1265 0.0855 -0.1265h 0.7831 c 0.0342,-0.0000 0.0479,0.0308 0.0479 0.0616c 0.0000,0.0376 -0.0479,0.1231 -0.0923 0.1231ZM 15.4130,79.6715 ZM 16.1619,77.8146 c -0.1471,-0.0000 -0.3625,0.1436 -0.3625 0.9404c 0.0000,0.2804 0.0513,0.8447 0.3522 0.8447c 0.0581,-0.0000 0.2223,-0.0376 0.2941 -0.3044c 0.0445,-0.1641 0.0684,-0.3693 0.0684 -0.6669c 0.0000,-0.4343 -0.1094,-0.6771 -0.2086 -0.7626c -0.0376,-0.0342 -0.0889,-0.0513 -0.1436 -0.0513ZM 16.1619,77.8146 ZM 16.1482,79.7126 c -0.3659,-0.0000 -0.6121,-0.4685 -0.6121 -0.9917c 0.0000,-0.6395 0.3044,-1.0259 0.6258 -1.0259c 0.1471,-0.0000 0.2941,0.0923 0.3933 0.2257c 0.1436,0.1915 0.2189,0.4480 0.2189 0.7694c 0.0000,0.7592 -0.3762,1.0225 -0.6258 1.0225ZM 16.9108,79.6715 ZM 17.1057,79.5313 c 0.0000,-0.0992 0.0821,-0.1812 0.1812 -0.1812c 0.0992,-0.0000 0.1812,0.0821 0.1812 0.1812c 0.0000,0.0992 -0.0821,0.1812 -0.1812 0.1812c -0.0992,-0.0000 -0.1812,-0.0821 -0.1812 -0.1812ZM 17.6597,79.6715 ZM 18.7165,79.0936 c 0.0000,-0.3522 -0.1915,-0.5266 -0.4035 -0.5266c -0.1573,-0.0000 -0.2770,0.0239 -0.4104 0.0787l 0.1094,-0.9336 c 0.1129,0.0103 0.2291,0.0137 0.3488 0.0137c 0.1710,-0.0000 0.3488,-0.0103 0.5335 -0.0308l 0.0205,0.0103 l -0.0513,0.2223 c -0.1334,0.0137 -0.2428,0.0171 -0.3386 0.0171c -0.1539,-0.0000 -0.2702,-0.0137 -0.3899 -0.0274l -0.0650,0.5403 c 0.0718,-0.0274 0.1949,-0.0513 0.3283 -0.0513c 0.3625,-0.0000 0.5643,0.3146 0.5643 0.6292c 0.0000,0.3830 -0.2667,0.6771 -0.6532 0.6771c -0.1949,-0.0000 -0.4788,-0.1094 -0.4788 -0.2428c 0.0000,-0.0650 0.0547,-0.1094 0.1163 -0.1094c 0.0684,-0.0000 0.1129,0.0513 0.1539 0.1060c 0.0513,0.0616 0.1060,0.1300 0.2154 0.1300c 0.2189,-0.0000 0.4001,-0.2052 0.4001 -0.5027Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4133206743970644" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 16.7159,74.2944 v 1.5466 "/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 93.7608,72.2323 l -0.0000,-51.5531 h -77.3296 l -0.0000,51.5531 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 57.0960,46.4557 c 0.0000,-1.1046 -0.8954,-2.0000 -2.0000 -2.0000c -1.1046,-0.0000 -2.0000,0.8954 -2.0000 2.0000c -0.0000,1.1046 0.8954,2.0000 2.0000 2.0000c 1.1046,0.0000 2.0000,-0.8954 2.0000 -2.0000Z"/></g></svg>
diff --git a/other/labelledExample.svg b/other/labelledExample.svg
--- a/other/labelledExample.svg
+++ b/other/labelledExample.svg
@@ -1,3 +1,3 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="100.0000" stroke-opacity="1" viewBox="0 0 300 100" font-size="1" width="300.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 143.4970,61.6719 ZM 144.3141,52.1511 l -1.0480,1.7585 c -1.0835,2.0427 -0.4974,3.0907 0.3020 3.8900c 0.5506,0.5506 1.6519,1.1190 2.7710 0.0000c 0.5329,-0.5329 0.8348,-1.8651 0.9059 -2.7177l -2.9308,-2.9308 ZM 144.3141,52.1511 ZM 150.0159,55.5793 c -0.6750,0.6750 -1.6519,0.4441 -2.1493 0.0888l -0.1243,0.6927 c -0.2487,1.3855 -0.3730,1.8651 -1.1901 2.6822c -1.2434,1.2434 -2.8598,1.4388 -4.1920 0.1066c -1.3500,-1.3500 -1.1190,-3.4282 0.1421 -5.5419l 1.2256,-2.0427 c -2.0072,-2.0072 -3.3039,-1.4565 -3.9078 -0.8526c -0.6750,0.6750 -1.1546,1.7585 -0.6039 2.3091c 0.1954,0.1954 0.3375,0.2664 0.4085 0.3020c 0.1066,0.0355 0.2487,0.1421 0.3730 0.2664c 0.2309,0.2309 0.4085,0.7638 -0.1066 1.2789c -0.4263,0.4263 -0.9947,0.4263 -1.4210 -0.0000c -1.0302,-1.0302 -0.2664,-3.6058 0.8704 -4.7426c 1.2967,-1.2967 3.3216,-2.2559 5.8439 0.2664l 2.6111,2.6111 c 1.0835,1.0835 1.5631,1.5276 1.9717 1.1190c 0.3908,-0.3908 0.0000,-0.9947 -0.3730 -1.4032l 0.5329,-0.3553 c 1.1901,1.4032 0.9947,2.3091 0.0888 3.2150ZM 155.9486,49.2203 ZM 156.3572,46.2539 l -8.8991,-8.8991 c -1.0125,-1.0125 -1.4743,-1.1190 -1.8296 -0.7638l -0.4974,0.6395 c -0.0533,0.0533 -0.1421,0.0711 -0.1954 0.0178l -0.4796,-0.4085 c 0.2842,-0.2842 0.8348,-1.0480 1.0835 -1.4032c 0.2487,-0.3908 0.4263,-0.7105 0.6217 -1.2256l 0.3908,-0.3908 l 11.1194,11.1194 c 0.5151,0.5151 0.9769,0.5862 1.5454 0.0178l 0.4263,-0.4263 c 0.0711,-0.0711 0.1954,-0.0888 0.2842 0.0000l 0.3375,0.3375 l -0.0000,0.0711 c 0.0000,-0.0000 -1.3322,1.2611 -2.0249 1.9539c -0.6217,0.6217 -1.8828,1.9539 -1.8828 1.9539l -0.0533,-0.0178 l -0.3375,-0.3375 c -0.0888,-0.0888 -0.1066,-0.1776 -0.0178 -0.2664l 0.4263,-0.4263 c 0.5862,-0.5862 0.4974,-1.0302 -0.0178 -1.5454ZM 160.5669,44.6020 ZM 161.3840,35.0812 l -1.0480,1.7585 c -1.0835,2.0427 -0.4974,3.0907 0.3020 3.8900c 0.5506,0.5506 1.6519,1.1190 2.7710 0.0000c 0.5329,-0.5329 0.8348,-1.8651 0.9059 -2.7177l -2.9308,-2.9308 ZM 161.3840,35.0812 ZM 167.0858,38.5094 c -0.6750,0.6750 -1.6519,0.4441 -2.1493 0.0888l -0.1243,0.6927 c -0.2487,1.3855 -0.3730,1.8651 -1.1901 2.6822c -1.2434,1.2434 -2.8598,1.4388 -4.1920 0.1066c -1.3500,-1.3500 -1.1190,-3.4282 0.1421 -5.5419l 1.2256,-2.0427 c -2.0072,-2.0072 -3.3039,-1.4565 -3.9078 -0.8526c -0.6750,0.6750 -1.1546,1.7585 -0.6039 2.3091c 0.1954,0.1954 0.3375,0.2664 0.4085 0.3020c 0.1066,0.0355 0.2487,0.1421 0.3730 0.2664c 0.2309,0.2309 0.4085,0.7638 -0.1066 1.2789c -0.4263,0.4263 -0.9947,0.4263 -1.4210 -0.0000c -1.0302,-1.0302 -0.2664,-3.6058 0.8704 -4.7426c 1.2967,-1.2967 3.3216,-2.2559 5.8439 0.2664l 2.6111,2.6111 c 1.0835,1.0835 1.5631,1.5276 1.9717 1.1190c 0.3908,-0.3908 0.0000,-0.9947 -0.3730 -1.4032l 0.5329,-0.3553 c 1.1901,1.4032 0.9947,2.3091 0.0888 3.2150ZM 168.5779,36.5911 ZM 170.2476,32.9675 c 0.7816,0.0711 1.2967,-0.1599 1.8473 -0.7105c 1.6875,-1.6875 0.9769,-4.1032 -1.0480 -6.1281c -1.8118,-1.8118 -4.0321,-2.1848 -5.1156 -1.1013c -0.1954,0.1954 -1.0835,1.1546 -1.0480 2.5756l 5.3643,5.3643 ZM 170.2476,32.9675 ZM 159.7143,25.0986 c -1.0125,-1.0125 -1.4743,-1.1190 -1.8296 -0.7638l -0.4974,0.6395 c -0.0533,0.0533 -0.1243,0.0533 -0.1776 -0.0000l -0.4796,-0.4085 c 0.2842,-0.2842 0.8171,-1.0302 1.0658 -1.3855c 0.2487,-0.3908 0.4441,-0.7283 0.6395 -1.2434l 0.3908,-0.3908 l 5.5064,5.5064 c -0.0533,-1.2611 0.3375,-2.2914 1.1901 -3.1440c 1.5454,-1.5454 4.4939,-1.5454 6.6610 0.6217c 2.8243,2.8243 2.4335,6.4123 0.6217 8.2241c -0.7638,0.7638 -1.5454,1.1190 -2.5045 1.1901c 0.0533,0.3730 0.0888,0.8704 0.1066 1.2079l -0.4618,0.2842 c -0.3730,-0.4796 -0.6572,-0.7638 -1.3500 -1.4565l -8.8813,-8.8813 ZM 177.0684,28.1005 ZM 174.1731,21.1553 l 3.2683,-3.2683 c 0.1776,-0.1776 0.1599,-0.3375 0.0000 -0.4974c -1.6519,-1.6519 -2.9131,-1.2434 -3.5525 -0.6039c -0.4085,0.4085 -1.5809,1.9006 0.2842 4.3696ZM 174.1731,21.1553 ZM 182.1308,19.7343 l 0.6395,-0.0711 c 0.2487,1.5986 -0.1421,3.3039 -1.4210 4.5828c -2.4335,2.4335 -5.2755,1.6519 -7.2116 -0.2842c -2.6999,-2.6999 -2.5401,-6.0926 -0.8526 -7.7800c 2.3447,-2.3447 4.7249,-1.0658 6.2169 0.4263c 0.1954,0.1954 0.1776,0.4263 -0.0178 0.6217l -4.6716,4.6716 c 0.0888,0.1243 0.1954,0.2309 0.3375 0.3730c 1.8118,1.8118 4.4762,1.9539 5.7551 0.6750c 0.9769,-0.9769 1.2789,-1.9184 1.2256 -3.2150ZM 184.6708,20.4981 ZM 185.0794,17.5317 l -8.8991,-8.8991 c -1.0125,-1.0125 -1.4743,-1.1190 -1.8296 -0.7638l -0.4974,0.6395 c -0.0533,0.0533 -0.1421,0.0711 -0.1954 0.0178l -0.4796,-0.4085 c 0.2842,-0.2842 0.8348,-1.0480 1.0835 -1.4032c 0.2487,-0.3908 0.4263,-0.7105 0.6217 -1.2256l 0.3908,-0.3908 l 11.1194,11.1194 c 0.5151,0.5151 0.9769,0.5862 1.5454 0.0178l 0.4263,-0.4263 c 0.0711,-0.0711 0.1954,-0.0888 0.2842 0.0000l 0.3375,0.3375 l -0.0000,0.0711 c 0.0000,-0.0000 -1.3322,1.2611 -2.0249 1.9539c -0.6217,0.6217 -1.8828,1.9539 -1.8828 1.9539l -0.0533,-0.0178 l -0.3375,-0.3375 c -0.0888,-0.0888 -0.1066,-0.1776 -0.0178 -0.2664l 0.4263,-0.4263 c 0.5862,-0.5862 0.4974,-1.0302 -0.0178 -1.5454Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="1.4203514134748643" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 127.8901,88.6394 c 0.0000,-6.2743 -5.0863,-11.3606 -11.3606 -11.3606c -6.2743,-0.0000 -11.3606,5.0863 -11.3606 11.3606c -0.0000,6.2743 5.0863,11.3606 11.3606 11.3606c 6.2743,0.0000 11.3606,-5.0863 11.3606 -11.3606Z"/></g></svg>
+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="100.0000" stroke-opacity="1" viewBox="0 0 300 100" font-size="1" width="300.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 143.4970,61.6719 ZM 144.3141,52.1511 l -1.0480,1.7585 c -1.0835,2.0427 -0.4974,3.0907 0.3020 3.8900c 0.5506,0.5506 1.6519,1.1190 2.7710 0.0000c 0.5329,-0.5329 0.8348,-1.8651 0.9059 -2.7177l -2.9308,-2.9308 ZM 144.3141,52.1511 ZM 150.0159,55.5793 c -0.6750,0.6750 -1.6519,0.4441 -2.1493 0.0888l -0.1243,0.6927 c -0.2487,1.3855 -0.3730,1.8651 -1.1901 2.6822c -1.2434,1.2434 -2.8598,1.4388 -4.1920 0.1066c -1.3500,-1.3500 -1.1190,-3.4282 0.1421 -5.5419l 1.2256,-2.0427 c -2.0072,-2.0072 -3.3039,-1.4565 -3.9078 -0.8526c -0.6750,0.6750 -1.1546,1.7585 -0.6039 2.3091c 0.1954,0.1954 0.3375,0.2664 0.4085 0.3020c 0.1066,0.0355 0.2487,0.1421 0.3730 0.2664c 0.2309,0.2309 0.4085,0.7638 -0.1066 1.2789c -0.4263,0.4263 -0.9947,0.4263 -1.4210 -0.0000c -1.0302,-1.0302 -0.2664,-3.6058 0.8704 -4.7426c 1.2967,-1.2967 3.3216,-2.2559 5.8439 0.2664l 2.6111,2.6111 c 1.0835,1.0835 1.5631,1.5276 1.9717 1.1190c 0.3908,-0.3908 0.0000,-0.9947 -0.3730 -1.4032l 0.5329,-0.3553 c 1.1901,1.4032 0.9947,2.3091 0.0888 3.2150ZM 155.9486,49.2203 ZM 156.3572,46.2539 l -8.8991,-8.8991 c -1.0125,-1.0125 -1.4743,-1.1190 -1.8296 -0.7638l -0.4974,0.6395 c -0.0533,0.0533 -0.1421,0.0711 -0.1954 0.0178l -0.4796,-0.4085 c 0.2842,-0.2842 0.8348,-1.0480 1.0835 -1.4032c 0.2487,-0.3908 0.4263,-0.7105 0.6217 -1.2256l 0.3908,-0.3908 l 11.1194,11.1194 c 0.5151,0.5151 0.9769,0.5862 1.5454 0.0178l 0.4263,-0.4263 c 0.0711,-0.0711 0.1954,-0.0888 0.2842 0.0000l 0.3375,0.3375 l -0.0000,0.0711 c 0.0000,-0.0000 -1.3322,1.2611 -2.0249 1.9539c -0.6217,0.6217 -1.8828,1.9539 -1.8828 1.9539l -0.0533,-0.0178 l -0.3375,-0.3375 c -0.0888,-0.0888 -0.1066,-0.1776 -0.0178 -0.2664l 0.4263,-0.4263 c 0.5862,-0.5862 0.4974,-1.0302 -0.0178 -1.5454ZM 160.5669,44.6020 ZM 161.3840,35.0812 l -1.0480,1.7585 c -1.0835,2.0427 -0.4974,3.0907 0.3020 3.8900c 0.5506,0.5506 1.6519,1.1190 2.7710 0.0000c 0.5329,-0.5329 0.8348,-1.8651 0.9059 -2.7177l -2.9308,-2.9308 ZM 161.3840,35.0812 ZM 167.0858,38.5094 c -0.6750,0.6750 -1.6519,0.4441 -2.1493 0.0888l -0.1243,0.6927 c -0.2487,1.3855 -0.3730,1.8651 -1.1901 2.6822c -1.2434,1.2434 -2.8598,1.4388 -4.1920 0.1066c -1.3500,-1.3500 -1.1190,-3.4282 0.1421 -5.5419l 1.2256,-2.0427 c -2.0072,-2.0072 -3.3039,-1.4565 -3.9078 -0.8526c -0.6750,0.6750 -1.1546,1.7585 -0.6039 2.3091c 0.1954,0.1954 0.3375,0.2664 0.4085 0.3020c 0.1066,0.0355 0.2487,0.1421 0.3730 0.2664c 0.2309,0.2309 0.4085,0.7638 -0.1066 1.2789c -0.4263,0.4263 -0.9947,0.4263 -1.4210 -0.0000c -1.0302,-1.0302 -0.2664,-3.6058 0.8704 -4.7426c 1.2967,-1.2967 3.3216,-2.2559 5.8439 0.2664l 2.6111,2.6111 c 1.0835,1.0835 1.5631,1.5276 1.9717 1.1190c 0.3908,-0.3908 0.0000,-0.9947 -0.3730 -1.4032l 0.5329,-0.3553 c 1.1901,1.4032 0.9947,2.3091 0.0888 3.2150ZM 168.5779,36.5911 ZM 170.2476,32.9675 c 0.7816,0.0711 1.2967,-0.1599 1.8473 -0.7105c 1.6875,-1.6875 0.9769,-4.1032 -1.0480 -6.1281c -1.8118,-1.8118 -4.0321,-2.1848 -5.1156 -1.1013c -0.1954,0.1954 -1.0835,1.1546 -1.0480 2.5756l 5.3643,5.3643 ZM 170.2476,32.9675 ZM 159.7143,25.0986 c -1.0125,-1.0125 -1.4743,-1.1190 -1.8296 -0.7638l -0.4974,0.6395 c -0.0533,0.0533 -0.1243,0.0533 -0.1776 -0.0000l -0.4796,-0.4085 c 0.2842,-0.2842 0.8171,-1.0302 1.0658 -1.3855c 0.2487,-0.3908 0.4441,-0.7283 0.6395 -1.2434l 0.3908,-0.3908 l 5.5064,5.5064 c -0.0533,-1.2611 0.3375,-2.2914 1.1901 -3.1440c 1.5454,-1.5454 4.4939,-1.5454 6.6610 0.6217c 2.8243,2.8243 2.4335,6.4123 0.6217 8.2241c -0.7638,0.7638 -1.5454,1.1190 -2.5045 1.1901c 0.0533,0.3730 0.0888,0.8704 0.1066 1.2079l -0.4618,0.2842 c -0.3730,-0.4796 -0.6572,-0.7638 -1.3500 -1.4565l -8.8813,-8.8813 ZM 177.0684,28.1005 ZM 174.1731,21.1553 l 3.2683,-3.2683 c 0.1776,-0.1776 0.1599,-0.3375 0.0000 -0.4974c -1.6519,-1.6519 -2.9131,-1.2434 -3.5525 -0.6039c -0.4085,0.4085 -1.5809,1.9006 0.2842 4.3696ZM 174.1731,21.1553 ZM 182.1308,19.7343 l 0.6395,-0.0711 c 0.2487,1.5986 -0.1421,3.3039 -1.4210 4.5828c -2.4335,2.4335 -5.2755,1.6519 -7.2116 -0.2842c -2.6999,-2.6999 -2.5401,-6.0926 -0.8526 -7.7800c 2.3447,-2.3447 4.7249,-1.0658 6.2169 0.4263c 0.1954,0.1954 0.1776,0.4263 -0.0178 0.6217l -4.6716,4.6716 c 0.0888,0.1243 0.1954,0.2309 0.3375 0.3730c 1.8118,1.8118 4.4762,1.9539 5.7551 0.6750c 0.9769,-0.9769 1.2789,-1.9184 1.2256 -3.2150ZM 184.6708,20.4981 ZM 185.0794,17.5317 l -8.8991,-8.8991 c -1.0125,-1.0125 -1.4743,-1.1190 -1.8296 -0.7638l -0.4974,0.6395 c -0.0533,0.0533 -0.1421,0.0711 -0.1954 0.0178l -0.4796,-0.4085 c 0.2842,-0.2842 0.8348,-1.0480 1.0835 -1.4032c 0.2487,-0.3908 0.4263,-0.7105 0.6217 -1.2256l 0.3908,-0.3908 l 11.1194,11.1194 c 0.5151,0.5151 0.9769,0.5862 1.5454 0.0178l 0.4263,-0.4263 c 0.0711,-0.0711 0.1954,-0.0888 0.2842 0.0000l 0.3375,0.3375 l -0.0000,0.0711 c 0.0000,-0.0000 -1.3322,1.2611 -2.0249 1.9539c -0.6217,0.6217 -1.8828,1.9539 -1.8828 1.9539l -0.0533,-0.0178 l -0.3375,-0.3375 c -0.0888,-0.0888 -0.1066,-0.1776 -0.0178 -0.2664l 0.4263,-0.4263 c 0.5862,-0.5862 0.4974,-1.0302 -0.0178 -1.5454Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="1.4203514134748643" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 127.8901,88.6394 c 0.0000,-6.2743 -5.0863,-11.3606 -11.3606 -11.3606c -6.2743,-0.0000 -11.3606,5.0863 -11.3606 11.3606c -0.0000,6.2743 5.0863,11.3606 11.3606 11.3606c 6.2743,0.0000 11.3606,-5.0863 11.3606 -11.3606Z"/></g></svg>
diff --git a/other/legendExample.svg b/other/legendExample.svg
--- a/other/legendExample.svg
+++ b/other/legendExample.svg
@@ -1,3 +1,3 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="300.0000" stroke-opacity="1" viewBox="0 0 300 300" font-size="1" width="300.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 115.7507,280.3226 ZM 117.5902,278.9285 v -9.7005 c 0.0000,-1.1037 -0.1936,-1.4135 -0.5809 -1.4135l -0.6196,0.0774 c -0.0581,-0.0000 -0.1162,-0.0387 -0.1162 -0.0968l -0.0387,-0.4841 c 0.3098,-0.0000 1.0262,-0.1162 1.3554 -0.1743c 0.3485,-0.0774 0.6196,-0.1549 1.0068 -0.3292h 0.4260 v 12.1208 c 0.0000,0.5615 0.2130,0.8519 0.8326 0.8519h 0.4647 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.4135,-0.0387 -2.1686 -0.0387c -0.6777,-0.0000 -2.0911,0.0387 -2.0911 0.0387l -0.0194,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0387,-0.1549 0.1355 -0.1549h 0.4647 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 120.7850,280.3226 ZM 122.2952,269.2667 c 0.0000,-0.5034 0.4066,-0.9294 0.9100 -0.9294c 0.5228,-0.0000 0.9294,0.4260 0.9294 0.9294c 0.0000,0.5228 -0.4066,0.9294 -0.9294 0.9294c -0.5034,-0.0000 -0.9100,-0.4066 -0.9100 -0.9294ZM 122.2952,269.2667 ZM 124.1346,278.9285 c 0.0000,0.5615 0.2130,0.8519 0.8326 0.8519h 0.3679 c 0.0968,-0.0000 0.1743,0.0581 0.1743 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3360,-0.0387 -2.0911 -0.0387c -0.6777,-0.0000 -1.9943,0.0387 -1.9943 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519v -4.8212 c 0.0000,-1.0262 -0.1743,-1.1811 -0.4453 -1.1811c -0.2517,-0.0000 -0.4841,0.0194 -0.8132 0.0968l -0.0968,-0.5421 c 1.2392,-0.2130 1.4522,-0.2904 2.0137 -0.5615c 0.2130,-0.0774 0.3485,-0.1549 0.4841 -0.1549h 0.2904 v 7.1641 ZM 125.8966,280.3226 ZM 132.9445,278.9285 v -4.2404 c 0.0000,-1.3554 -0.2323,-1.9943 -1.2586 -1.9943c -0.8519,-0.0000 -1.5877,0.3292 -2.5752 1.4909v 4.7438 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.2711 c 0.0968,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.2198,-0.0387 -1.9750 -0.0387c -0.6970,-0.0000 -2.0137,0.0387 -2.0137 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519v -4.8212 c 0.0000,-1.0456 -0.1549,-1.1811 -0.4260 -1.1811c -0.2517,-0.0000 -0.4841,0.0194 -0.8132 0.0968l -0.0968,-0.5421 c 0.8132,-0.1355 1.3941,-0.2323 1.9943 -0.5615c 0.2130,-0.0968 0.3679,-0.1549 0.5034 -0.1549h 0.2904 l -0.0581,1.7233 h 0.0581 c 1.2392,-1.4522 2.1686,-1.7233 3.1561 -1.7233c 1.7426,-0.0000 2.1105,1.3360 2.1105 3.0593v 4.1048 c 0.0000,0.5615 0.2130,0.8519 0.8326 0.8519h 0.3679 c 0.0968,-0.0000 0.1743,0.0581 0.1743 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3360,-0.0387 -2.0911 -0.0387c -0.6777,-0.0000 -1.8975,0.0387 -1.8975 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.2711 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 135.9650,280.3226 ZM 138.1724,274.9592 h 3.5627 c 0.1936,-0.0000 0.2711,-0.0968 0.2711 -0.2711c 0.0000,-1.8007 -0.9100,-2.2654 -1.6071 -2.2654c -0.4453,-0.0000 -1.8975,0.1743 -2.2267 2.5365ZM 138.1724,274.9592 ZM 143.2840,278.5219 l 0.3872,0.3098 c -0.7358,1.0068 -1.8781,1.7233 -3.2722 1.7233c -2.6526,-0.0000 -3.7757,-1.9750 -3.7757 -4.0855c 0.0000,-2.9431 1.9362,-4.7051 3.7757 -4.7051c 2.5558,-0.0000 3.1561,1.9943 3.1561 3.6208c 0.0000,0.2130 -0.1355,0.3292 -0.3485 0.3292h -5.0923 c -0.0194,0.1162 -0.0194,0.2323 -0.0194 0.3872c 0.0000,1.9750 1.3747,3.5046 2.7688 3.5046c 1.0649,-0.0000 1.7426,-0.3485 2.4203 -1.0843ZM 149.0927,280.3226 ZM 153.2750,269.7314 c -0.4841,-0.0000 -1.8975,0.2711 -1.8975 1.4522c 0.0000,0.3485 -0.1355,0.9488 -0.6583 0.9488c -0.5034,-0.0000 -0.5421,-0.5615 -0.5421 -0.6196c 0.0000,-0.6002 0.7939,-2.3816 3.4852 -2.3816c 1.8781,-0.0000 2.4397,1.1811 2.4397 1.9556c 0.0000,0.4841 -0.1549,1.4522 -1.8975 2.5558c 1.0843,0.1743 2.5171,0.9681 2.5171 2.9818c 0.0000,2.5558 -1.9362,3.9306 -4.1242 3.9306c -1.1037,-0.0000 -2.6526,-0.4841 -2.6526 -1.2198c 0.0000,-0.2904 0.2904,-0.6196 0.6777 -0.6196c 0.3679,-0.0000 0.5421,0.1936 0.7164 0.4453c 0.2130,0.3292 0.5615,0.7939 1.4909 0.7939c 0.6390,-0.0000 2.4590,-0.6390 2.4590 -3.0786c 0.0000,-2.0718 -1.4522,-2.4009 -2.4977 -2.4009c -0.1743,-0.0000 -0.3872,0.0387 -0.6002 0.0774l -0.0774,-0.5809 c 1.4909,-0.2517 2.7301,-1.7039 2.7301 -2.5946c 0.0000,-1.1037 -0.7745,-1.6458 -1.5684 -1.6458Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="1.3279760788600725" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 92.3997,280.3226 h 16.6793 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 115.7507,246.9640 ZM 127.4262,245.5699 v -4.4533 c 0.0000,-1.2973 -0.5034,-1.7813 -1.2392 -1.7813c -0.7551,-0.0000 -1.3554,0.3872 -2.2848 1.4135c 0.0387,0.2323 0.0387,0.5034 0.0387 0.7745v 4.0467 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.3292 c 0.0968,-0.0000 0.1743,0.0581 0.1743 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.2973,-0.0387 -2.0524 -0.0387c -0.6970,-0.0000 -2.0330,0.0387 -2.0330 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3872 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519v -4.4146 c 0.0000,-1.2973 -0.5228,-1.8201 -1.2586 -1.8201c -0.6777,-0.0000 -1.3166,0.4841 -2.2267 1.4328v 4.8019 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.3679 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3166,-0.0387 -2.0718 -0.0387c -0.6970,-0.0000 -2.0137,0.0387 -2.0137 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519v -4.8212 c 0.0000,-1.1037 -0.1743,-1.1811 -0.4260 -1.1811c -0.2517,-0.0000 -0.4841,0.0194 -0.8132 0.0968l -0.0968,-0.5421 c 1.2198,-0.2130 1.4909,-0.2904 2.0137 -0.5615c 0.1936,-0.0968 0.3485,-0.1549 0.4841 -0.1549h 0.2904 l -0.0581,1.6845 h 0.0581 c 0.9100,-0.9681 1.7233,-1.6845 2.9237 -1.6845c 1.0843,-0.0000 1.7620,0.7939 1.8781 1.6652c 1.1230,-1.1617 2.0330,-1.6652 3.0786 -1.6652c 1.7039,-0.0000 1.9943,1.4135 1.9943 3.1367v 4.0274 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.3679 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3166,-0.0387 -2.0718 -0.0387c -0.6970,-0.0000 -2.0137,0.0387 -2.0137 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 130.4661,246.9640 ZM 138.7726,244.7179 c 0.0000,0.9681 0.0968,1.2779 0.4841 1.2779c 0.2323,-0.0000 0.6583,-0.0387 0.9875 -0.0968l 0.0774,0.5421 c -1.1811,0.2130 -2.1299,0.4066 -2.5752 0.7551h -0.4260 l 0.0581,-1.4328 h -0.0581 c -1.0649,1.1617 -1.9362,1.4328 -2.7301 1.4328c -1.9169,-0.0000 -2.4203,-1.2973 -2.4203 -2.6333v -4.4146 c 0.0000,-0.6390 -0.1355,-0.9681 -0.8519 -0.9681c -0.0774,-0.0000 -0.2130,0.0194 -0.3292 0.0194l -0.0581,-0.0194 v -0.5034 l 0.0581,-0.0581 c 0.0000,-0.0000 1.3166,0.0387 1.9362 0.0387c 0.2711,-0.0000 0.7164,-0.0387 0.7164 -0.0387l -0.0194,1.5490 v 4.1242 c 0.0000,1.7233 0.8907,2.0330 1.4715 2.0330c 0.4453,-0.0000 0.8519,-0.1743 1.2586 -0.4647c 0.4647,-0.3485 0.7745,-0.6196 0.9681 -0.8713v -4.7825 c 0.0000,-0.6970 -0.0968,-1.0262 -0.8132 -1.0262c -0.1162,-0.0000 -0.3292,0.0194 -0.3872 0.0194l -0.0387,-0.0387 v -0.4841 l 0.0387,-0.0581 c 0.0000,-0.0000 1.3747,0.0387 1.9169 0.0387c 0.4453,-0.0000 0.7551,-0.0387 0.7551 -0.0387l -0.0194,1.5296 v 4.5695 ZM 140.4765,246.9640 ZM 154.3593,245.5699 v -3.9499 c 0.0000,-1.5684 -0.4066,-2.3041 -1.2973 -2.3041c -0.5615,-0.0000 -1.3941,0.3292 -2.5365 1.4135v 4.8406 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.3679 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3166,-0.0387 -2.0718 -0.0387c -0.6970,-0.0000 -1.4715,0.0387 -1.4715 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.0387 c 0.5034,-0.0000 0.6196,-0.2904 0.6196 -0.8519v -9.7974 c 0.0000,-0.9100 -0.1743,-1.3166 -0.5615 -1.3166l -0.6390,0.0774 c -0.0581,-0.0000 -0.0968,-0.0387 -0.0968 -0.0968l -0.0387,-0.4841 c 0.3098,-0.0000 1.0068,-0.1162 1.3360 -0.1743c 0.3485,-0.0774 0.6390,-0.1549 1.0262 -0.3292h 0.4260 v 6.5638 c 1.2973,-1.2973 2.6333,-1.6071 3.3884 -1.6071c 1.4135,-0.0000 1.8975,1.0649 1.8975 3.0593v 4.1048 c 0.0000,0.5615 0.1936,0.8519 0.8132 0.8519h 0.3872 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3166,-0.0387 -2.0911 -0.0387c -0.6777,-0.0000 -1.9943,0.0387 -1.9943 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 154.3593,245.5699 ZM 147.7180,245.1439 c -0.8519,1.4715 -1.7813,1.9943 -2.9237 1.9943c -2.3235,-0.0000 -3.6014,-1.7813 -3.6014 -4.2791c 0.0000,-2.7495 1.5490,-4.4921 3.6208 -4.4921c 1.8588,-0.0000 2.8463,0.9488 2.8463 1.9750c 0.0000,0.5809 -0.3485,0.8519 -0.7358 0.8519c -0.4260,-0.0000 -0.8132,-0.2130 -0.8713 -0.6777c -0.0581,-0.6583 -0.1936,-1.4909 -1.3360 -1.4909c -1.2779,-0.0000 -2.0330,1.3166 -2.0330 3.4078c 0.0000,2.2654 1.0262,3.8531 2.5365 3.8531c 0.8326,-0.0000 1.5490,-0.5421 2.1492 -1.4135ZM 162.2398,246.9640 ZM 164.0792,245.5699 v -9.7005 c 0.0000,-1.1037 -0.1936,-1.4135 -0.5809 -1.4135l -0.6196,0.0774 c -0.0581,-0.0000 -0.1162,-0.0387 -0.1162 -0.0968l -0.0387,-0.4841 c 0.3098,-0.0000 1.0262,-0.1162 1.3554 -0.1743c 0.3485,-0.0774 0.6196,-0.1549 1.0068 -0.3292h 0.4260 v 12.1208 c 0.0000,0.5615 0.2130,0.8519 0.8326 0.8519h 0.4647 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.4135,-0.0387 -2.1686 -0.0387c -0.6777,-0.0000 -2.0911,0.0387 -2.0911 0.0387l -0.0194,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0387,-0.1549 0.1355 -0.1549h 0.4647 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 167.2740,246.9640 ZM 167.9323,242.9947 c 0.0000,-2.6526 1.4328,-4.5889 4.0080 -4.5889c 2.8656,-0.0000 3.9693,2.4009 3.9693 4.4146c 0.0000,1.9362 -1.2586,4.3759 -4.0080 4.3759c -2.5946,-0.0000 -3.9693,-2.2267 -3.9693 -4.2016ZM 167.9323,242.9947 ZM 171.7273,239.0448 c -1.5490,-0.0000 -2.2654,1.8201 -2.2654 3.5046c 0.0000,1.4909 0.8519,3.9693 2.7688 3.9693c 0.8713,-0.0000 2.1492,-0.5228 2.1492 -3.0786c 0.0000,-2.8463 -1.0649,-4.3953 -2.6526 -4.3953ZM 176.5486,246.9640 ZM 183.5965,245.5699 v -4.2404 c 0.0000,-1.3554 -0.2323,-1.9943 -1.2586 -1.9943c -0.8519,-0.0000 -1.5877,0.3292 -2.5752 1.4909v 4.7438 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.2711 c 0.0968,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.2198,-0.0387 -1.9750 -0.0387c -0.6970,-0.0000 -2.0137,0.0387 -2.0137 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519v -4.8212 c 0.0000,-1.0456 -0.1549,-1.1811 -0.4260 -1.1811c -0.2517,-0.0000 -0.4841,0.0194 -0.8132 0.0968l -0.0968,-0.5421 c 0.8132,-0.1355 1.3941,-0.2323 1.9943 -0.5615c 0.2130,-0.0968 0.3679,-0.1549 0.5034 -0.1549h 0.2904 l -0.0581,1.7233 h 0.0581 c 1.2392,-1.4522 2.1686,-1.7233 3.1561 -1.7233c 1.7426,-0.0000 2.1105,1.3360 2.1105 3.0593v 4.1048 c 0.0000,0.5615 0.2130,0.8519 0.8326 0.8519h 0.3679 c 0.0968,-0.0000 0.1743,0.0581 0.1743 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3360,-0.0387 -2.0911 -0.0387c -0.6777,-0.0000 -1.8975,0.0387 -1.8975 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.2711 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 186.6170,246.9640 ZM 192.7355,241.4844 c 0.0000,-1.6071 -0.7551,-2.5365 -1.9169 -2.5365c -1.0068,-0.0000 -1.6845,0.6970 -1.6845 2.2073c 0.0000,1.0068 0.3872,2.5946 1.9362 2.5946c 0.6777,-0.0000 1.6652,-0.3292 1.6652 -2.2654ZM 192.7355,241.4844 ZM 189.1148,247.0995 c -0.6002,0.5615 -0.7358,1.1617 -0.7358 1.8201c 0.0000,1.4522 1.7426,1.8781 2.4009 1.8781c 1.6652,-0.0000 3.7757,-0.5809 3.7757 -1.9750c 0.0000,-0.5034 -0.2711,-0.8326 -1.0262 -1.2005c -0.5421,-0.2711 -1.3360,-0.4841 -2.2654 -0.4841c -0.1549,-0.0000 -0.3679,0.0194 -0.6390 0.0387c -0.2711,0.0194 -0.5615,0.0194 -0.7745 0.0194c -0.3098,-0.0000 -0.4647,-0.0387 -0.7358 -0.0968ZM 189.1148,247.0995 ZM 195.0009,239.4514 c -0.3098,-0.0000 -0.5034,-0.1743 -0.5809 -0.3292c -0.1162,-0.1743 -0.1936,-0.2323 -0.3292 -0.2323c -0.2323,-0.0000 -0.6002,0.2711 -0.7358 0.4647c 0.5421,0.5809 0.7939,1.1424 0.7939 2.0524c 0.0000,1.8975 -1.5490,2.9237 -3.1754 2.9237c -0.7164,-0.0000 -1.2973,-0.1355 -1.7426 -0.4066c -0.2130,0.3292 -0.3292,0.7358 -0.3292 1.1230c 0.0000,0.8326 0.6390,1.0456 1.1811 1.0456c 0.0968,-0.0000 0.3292,-0.0194 0.6002 -0.0387c 0.4453,-0.0581 0.9294,-0.0968 1.2586 -0.0968c 0.6777,-0.0000 1.9556,0.1355 2.7301 0.7939c 0.5228,0.4841 0.8132,0.9488 0.8132 1.5684c 0.0000,2.0911 -2.7495,3.1948 -5.2472 3.1948c -1.4135,-0.0000 -2.9818,-0.5228 -2.9818 -2.2073c 0.0000,-0.8326 0.5228,-1.7233 1.5103 -2.3428c -0.4841,-0.2517 -0.8326,-0.7358 -0.8326 -1.4328c 0.0000,-0.6583 0.2904,-1.4909 0.8132 -1.9556c -0.5228,-0.5228 -0.9681,-1.1811 -0.9681 -2.2460c 0.0000,-1.7813 1.5684,-2.9237 3.2142 -2.9237c 1.0843,-0.0000 1.7620,0.4453 1.9750 0.6002c 0.4841,-0.6583 1.3554,-0.9875 1.8394 -0.9875c 0.5034,-0.0000 0.8519,0.3292 0.8519 0.7358c 0.0000,0.4260 -0.2711,0.6970 -0.6583 0.6970ZM 195.9884,246.9640 ZM 198.1957,241.6006 h 3.5627 c 0.1936,-0.0000 0.2711,-0.0968 0.2711 -0.2711c 0.0000,-1.8007 -0.9100,-2.2654 -1.6071 -2.2654c -0.4453,-0.0000 -1.8975,0.1743 -2.2267 2.5365ZM 198.1957,241.6006 ZM 203.3074,245.1633 l 0.3872,0.3098 c -0.7358,1.0068 -1.8781,1.7233 -3.2722 1.7233c -2.6526,-0.0000 -3.7757,-1.9750 -3.7757 -4.0855c 0.0000,-2.9431 1.9362,-4.7051 3.7757 -4.7051c 2.5558,-0.0000 3.1561,1.9943 3.1561 3.6208c 0.0000,0.2130 -0.1355,0.3292 -0.3485 0.3292h -5.0923 c -0.0194,0.1162 -0.0194,0.2323 -0.0194 0.3872c 0.0000,1.9750 1.3747,3.5046 2.7688 3.5046c 1.0649,-0.0000 1.7426,-0.3485 2.4203 -1.0843ZM 204.2755,246.9640 ZM 205.9987,245.5699 v -4.8212 c 0.0000,-0.9681 -0.1355,-1.1811 -0.4260 -1.1811c -0.2517,-0.0000 -0.4841,0.0194 -0.8132 0.0968l -0.0968,-0.5421 c 1.2198,-0.2130 1.4328,-0.2711 2.0137 -0.5615c 0.1936,-0.0968 0.3485,-0.1549 0.4841 -0.1549h 0.2904 l -0.0581,1.7426 h 0.0581 c 0.5034,-0.7551 1.3554,-1.7426 2.2654 -1.7426c 0.7939,-0.0000 1.0843,0.3872 1.0843 0.8907c 0.0000,0.5034 -0.3292,0.8132 -0.8326 0.8132c -0.3872,-0.0000 -0.6002,-0.1549 -0.7939 -0.3485c -0.1162,-0.1162 -0.2517,-0.1743 -0.3872 -0.1743c -0.2130,-0.0000 -0.6390,0.3485 -1.1037 1.0068c -0.1355,0.1743 -0.2323,0.4260 -0.2323 0.6777v 4.2984 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.5615 c 0.0968,-0.0000 0.1743,0.0581 0.1743 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.5296,-0.0387 -2.2848 -0.0387c -0.6970,-0.0000 -2.0137,0.0387 -2.0137 0.0387l -0.0194,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0387,-0.1549 0.1355 -0.1549h 0.3679 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 215.8348,246.9640 ZM 222.8827,245.5699 v -4.2404 c 0.0000,-1.3554 -0.2323,-1.9943 -1.2586 -1.9943c -0.8519,-0.0000 -1.5877,0.3292 -2.5752 1.4909v 4.7438 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.2711 c 0.0968,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.2198,-0.0387 -1.9750 -0.0387c -0.6970,-0.0000 -2.0137,0.0387 -2.0137 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519v -4.8212 c 0.0000,-1.0456 -0.1549,-1.1811 -0.4260 -1.1811c -0.2517,-0.0000 -0.4841,0.0194 -0.8132 0.0968l -0.0968,-0.5421 c 0.8132,-0.1355 1.3941,-0.2323 1.9943 -0.5615c 0.2130,-0.0968 0.3679,-0.1549 0.5034 -0.1549h 0.2904 l -0.0581,1.7233 h 0.0581 c 1.2392,-1.4522 2.1686,-1.7233 3.1561 -1.7233c 1.7426,-0.0000 2.1105,1.3360 2.1105 3.0593v 4.1048 c 0.0000,0.5615 0.2130,0.8519 0.8326 0.8519h 0.3679 c 0.0968,-0.0000 0.1743,0.0581 0.1743 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3360,-0.0387 -2.0911 -0.0387c -0.6777,-0.0000 -1.8975,0.0387 -1.8975 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.2711 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 225.9033,246.9640 ZM 231.5377,242.2202 l -1.5296,0.3872 c -1.7039,0.5228 -1.9556,1.4135 -1.9556 2.2848c 0.0000,0.6002 0.2904,1.5103 1.5103 1.5103c 0.5809,-0.0000 1.4715,-0.5615 1.9750 -0.9875v -3.1948 ZM 231.5377,242.2202 ZM 232.7769,247.1963 c -0.7358,-0.0000 -1.1424,-0.6583 -1.2198 -1.1230l -0.4453,0.3098 c -0.8907,0.6196 -1.2198,0.8132 -2.1105 0.8132c -1.3554,-0.0000 -2.3428,-0.7745 -2.3428 -2.2267c 0.0000,-1.4715 1.2586,-2.4784 3.0980 -2.9431l 1.7813,-0.4453 c 0.0000,-2.1879 -1.0068,-2.5946 -1.6652 -2.5946c -0.7358,-0.0000 -1.5877,0.3292 -1.5877 0.9294c 0.0000,0.2130 0.0387,0.3292 0.0581 0.3872c 0.0387,0.0774 0.0581,0.2130 0.0581 0.3485c 0.0000,0.2517 -0.1936,0.6390 -0.7551 0.6390c -0.4647,-0.0000 -0.7745,-0.3098 -0.7745 -0.7745c 0.0000,-1.1230 1.8201,-2.1105 3.0593 -2.1105c 1.4135,-0.0000 3.0399,0.5809 3.0399 3.3303v 2.8463 c 0.0000,1.1811 0.0194,1.6845 0.4647 1.6845c 0.4260,-0.0000 0.5421,-0.5421 0.5615 -0.9681l 0.4841,0.0968 c -0.1162,1.4135 -0.7164,1.8007 -1.7039 1.8007ZM 234.6357,246.9640 ZM 246.3112,245.5699 v -4.4533 c 0.0000,-1.2973 -0.5034,-1.7813 -1.2392 -1.7813c -0.7551,-0.0000 -1.3554,0.3872 -2.2848 1.4135c 0.0387,0.2323 0.0387,0.5034 0.0387 0.7745v 4.0467 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.3292 c 0.0968,-0.0000 0.1743,0.0581 0.1743 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.2973,-0.0387 -2.0524 -0.0387c -0.6970,-0.0000 -2.0330,0.0387 -2.0330 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3872 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519v -4.4146 c 0.0000,-1.2973 -0.5228,-1.8201 -1.2586 -1.8201c -0.6777,-0.0000 -1.3166,0.4841 -2.2267 1.4328v 4.8019 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.3679 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3166,-0.0387 -2.0718 -0.0387c -0.6970,-0.0000 -2.0137,0.0387 -2.0137 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519v -4.8212 c 0.0000,-1.1037 -0.1743,-1.1811 -0.4260 -1.1811c -0.2517,-0.0000 -0.4841,0.0194 -0.8132 0.0968l -0.0968,-0.5421 c 1.2198,-0.2130 1.4909,-0.2904 2.0137 -0.5615c 0.1936,-0.0968 0.3485,-0.1549 0.4841 -0.1549h 0.2904 l -0.0581,1.6845 h 0.0581 c 0.9100,-0.9681 1.7233,-1.6845 2.9237 -1.6845c 1.0843,-0.0000 1.7620,0.7939 1.8781 1.6652c 1.1230,-1.1617 2.0330,-1.6652 3.0786 -1.6652c 1.7039,-0.0000 1.9943,1.4135 1.9943 3.1367v 4.0274 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.3679 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3166,-0.0387 -2.0718 -0.0387c -0.6970,-0.0000 -2.0137,0.0387 -2.0137 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 249.3511,246.9640 ZM 251.5584,241.6006 h 3.5627 c 0.1936,-0.0000 0.2711,-0.0968 0.2711 -0.2711c 0.0000,-1.8007 -0.9100,-2.2654 -1.6071 -2.2654c -0.4453,-0.0000 -1.8975,0.1743 -2.2267 2.5365ZM 251.5584,241.6006 ZM 256.6701,245.1633 l 0.3872,0.3098 c -0.7358,1.0068 -1.8781,1.7233 -3.2722 1.7233c -2.6526,-0.0000 -3.7757,-1.9750 -3.7757 -4.0855c 0.0000,-2.9431 1.9362,-4.7051 3.7757 -4.7051c 2.5558,-0.0000 3.1561,1.9943 3.1561 3.6208c 0.0000,0.2130 -0.1355,0.3292 -0.3485 0.3292h -5.0923 c -0.0194,0.1162 -0.0194,0.2323 -0.0194 0.3872c 0.0000,1.9750 1.3747,3.5046 2.7688 3.5046c 1.0649,-0.0000 1.7426,-0.3485 2.4203 -1.0843Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="5.31190431544029" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 92.3997,246.9640 h 16.6793 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 115.7507,213.6054 ZM 116.5833,210.8947 l 0.5228,-0.0194 c 0.0581,0.4841 0.2711,1.4135 0.6970 1.8588c 0.1936,0.2130 0.7164,0.5615 1.4328 0.5615c 0.6777,-0.0000 1.6845,-0.5421 1.6845 -1.4909c 0.0000,-0.8326 -0.4647,-1.3941 -1.9943 -2.0524c -1.4135,-0.6196 -2.1492,-1.0262 -2.1492 -2.4784c 0.0000,-1.2973 1.1424,-2.2267 2.6720 -2.2267c 0.9681,-0.0000 1.6845,0.1743 2.2848 0.4841c 0.1162,0.6196 0.1743,1.2779 0.2130 1.9750l -0.5228,0.0194 c -0.4066,-1.5877 -1.5684,-1.8975 -1.9750 -1.8975c -0.7358,-0.0000 -1.4909,0.2904 -1.4909 1.3554c 0.0000,0.7745 0.3679,1.1617 1.4328 1.5490c 1.5684,0.5809 2.8269,1.2779 2.8269 2.8269c 0.0000,1.9169 -2.0330,2.4784 -2.9431 2.4784c -0.6777,-0.0000 -1.2392,-0.0774 -1.7426 -0.2130c -0.1355,-0.0194 -0.2323,-0.0387 -0.3679 -0.0387c -0.0968,-0.0000 -0.2517,0.0194 -0.4453 0.0581c 0.0000,-0.8132 -0.0581,-1.8007 -0.1355 -2.7495ZM 122.9342,213.6054 ZM 126.0902,200.0904 v 6.5638 c 1.2973,-1.2973 2.4397,-1.6071 3.1948 -1.6071c 1.3941,-0.0000 2.0911,1.0649 2.0911 3.0593v 4.1048 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.3679 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3166,-0.0387 -2.0911 -0.0387c -0.6777,-0.0000 -1.9943,0.0387 -1.9943 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519v -4.3178 c 0.0000,-1.5684 -0.4260,-1.9362 -1.5103 -1.9362c -0.5615,-0.0000 -1.3941,0.5034 -2.3235 1.4135v 4.8406 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.3679 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3166,-0.0387 -2.0718 -0.0387c -0.6970,-0.0000 -1.9943,0.0387 -1.9943 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0387,-0.1549 0.1355 -0.1549h 0.3679 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519v -9.7005 c 0.0000,-1.1037 -0.1743,-1.4135 -0.5615 -1.4135l -0.6390,0.0774 c -0.0581,-0.0000 -0.0968,-0.0387 -0.0968 -0.0968l -0.0387,-0.4841 c 0.3098,-0.0000 1.0068,-0.1162 1.3360 -0.1743c 0.3485,-0.0774 0.6390,-0.1549 1.0262 -0.3292h 0.4260 ZM 132.9639,213.6054 ZM 133.6222,209.6361 c 0.0000,-2.6526 1.4328,-4.5889 4.0080 -4.5889c 2.8656,-0.0000 3.9693,2.4009 3.9693 4.4146c 0.0000,1.9362 -1.2586,4.3759 -4.0080 4.3759c -2.5946,-0.0000 -3.9693,-2.2267 -3.9693 -4.2016ZM 133.6222,209.6361 ZM 137.4172,205.6862 c -1.5490,-0.0000 -2.2654,1.8201 -2.2654 3.5046c 0.0000,1.4909 0.8519,3.9693 2.7688 3.9693c 0.8713,-0.0000 2.1492,-0.5228 2.1492 -3.0786c 0.0000,-2.8463 -1.0649,-4.3953 -2.6526 -4.3953ZM 142.2385,213.6054 ZM 143.9617,212.2113 v -4.8212 c 0.0000,-0.9681 -0.1355,-1.1811 -0.4260 -1.1811c -0.2517,-0.0000 -0.4841,0.0194 -0.8132 0.0968l -0.0968,-0.5421 c 1.2198,-0.2130 1.4328,-0.2711 2.0137 -0.5615c 0.1936,-0.0968 0.3485,-0.1549 0.4841 -0.1549h 0.2904 l -0.0581,1.7426 h 0.0581 c 0.5034,-0.7551 1.3554,-1.7426 2.2654 -1.7426c 0.7939,-0.0000 1.0843,0.3872 1.0843 0.8907c 0.0000,0.5034 -0.3292,0.8132 -0.8326 0.8132c -0.3872,-0.0000 -0.6002,-0.1549 -0.7939 -0.3485c -0.1162,-0.1162 -0.2517,-0.1743 -0.3872 -0.1743c -0.2130,-0.0000 -0.6390,0.3485 -1.1037 1.0068c -0.1355,0.1743 -0.2323,0.4260 -0.2323 0.6777v 4.2984 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.5615 c 0.0968,-0.0000 0.1743,0.0581 0.1743 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.5296,-0.0387 -2.2848 -0.0387c -0.6970,-0.0000 -2.0137,0.0387 -2.0137 0.0387l -0.0194,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0387,-0.1549 0.1355 -0.1549h 0.3679 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 148.9572,213.6054 ZM 152.1326,206.0347 v 4.9568 c 0.0000,1.2005 0.1162,1.7813 0.6390 1.7813c 0.5034,-0.0000 0.8907,-0.1549 1.3941 -0.5421l 0.3485,0.3292 c -0.7551,0.8519 -1.5296,1.2779 -2.4203 1.2779c -0.8907,-0.0000 -1.4135,-0.5421 -1.4135 -1.9169v -5.8862 h -1.2586 c -0.0581,-0.0000 -0.0774,-0.0194 -0.0774 -0.0774v -0.6002 c 0.0000,-0.0581 0.0194,-0.0774 0.0581 -0.0774c 1.2973,-0.0000 1.6071,-0.7551 1.6071 -2.2267v -0.3679 l 1.1230,-0.3872 v 2.9818 h 2.1299 c 0.0968,-0.0000 0.1549,0.0387 0.1549 0.1162v 0.3872 c 0.0000,0.1743 -0.2711,0.2517 -0.4647 0.2517h -1.8201 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="2.655952157720145" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 92.3997,213.6054 h 16.6793 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 109.0790,176.2803 ZM 111.0927,165.2244 c 0.0000,-0.5034 0.4066,-0.9294 0.9294 -0.9294c 0.5034,-0.0000 0.9294,0.4260 0.9294 0.9294c 0.0000,0.5228 -0.4260,0.9294 -0.9294 0.9294c -0.5228,-0.0000 -0.9294,-0.4066 -0.9294 -0.9294ZM 111.0927,165.2244 ZM 110.0665,180.0366 c 0.8519,-0.0000 1.4328,-1.5296 1.4328 -4.2597v -5.7119 c 0.0000,-1.0262 -0.1743,-1.1811 -0.4260 -1.1811c -0.2711,-0.0000 -0.4841,0.0194 -0.8132 0.0968l -0.0968,-0.5421 c 1.4135,-0.2323 1.8394,-0.4647 2.0911 -0.6002c 0.1355,-0.0581 0.2130,-0.1162 0.4066 -0.1162h 0.2904 v 7.4545 c 0.0000,2.5365 -0.1936,3.6014 -1.2586 4.6857c -0.5228,0.5034 -1.0843,0.7358 -1.5490 0.7358c -0.7939,-0.0000 -1.8201,-0.4066 -1.8201 -0.9875c 0.0000,-0.4841 0.2904,-0.7358 0.6196 -0.7358c 0.4647,-0.0000 0.7164,0.4453 0.8132 0.8519c 0.0581,0.1936 0.1549,0.3098 0.3098 0.3098ZM 114.4424,176.2803 ZM 122.7488,174.0342 c 0.0000,0.9681 0.0968,1.2779 0.4841 1.2779c 0.2323,-0.0000 0.6583,-0.0387 0.9875 -0.0968l 0.0774,0.5421 c -1.1811,0.2130 -2.1299,0.4066 -2.5752 0.7551h -0.4260 l 0.0581,-1.4328 h -0.0581 c -1.0649,1.1617 -1.9362,1.4328 -2.7301 1.4328c -1.9169,-0.0000 -2.4203,-1.2973 -2.4203 -2.6333v -4.4146 c 0.0000,-0.6390 -0.1355,-0.9681 -0.8519 -0.9681c -0.0774,-0.0000 -0.2130,0.0194 -0.3292 0.0194l -0.0581,-0.0194 v -0.5034 l 0.0581,-0.0581 c 0.0000,-0.0000 1.3166,0.0387 1.9362 0.0387c 0.2711,-0.0000 0.7164,-0.0387 0.7164 -0.0387l -0.0194,1.5490 v 4.1242 c 0.0000,1.7233 0.8907,2.0330 1.4715 2.0330c 0.4453,-0.0000 0.8519,-0.1743 1.2586 -0.4647c 0.4647,-0.3485 0.7745,-0.6196 0.9681 -0.8713v -4.7825 c 0.0000,-0.6970 -0.0968,-1.0262 -0.8132 -1.0262c -0.1162,-0.0000 -0.3292,0.0194 -0.3872 0.0194l -0.0387,-0.0387 v -0.4841 l 0.0387,-0.0581 c 0.0000,-0.0000 1.3747,0.0387 1.9169 0.0387c 0.4453,-0.0000 0.7551,-0.0387 0.7551 -0.0387l -0.0194,1.5296 v 4.5695 ZM 124.4527,176.2803 ZM 125.2853,173.5695 l 0.5228,-0.0194 c 0.0581,0.4841 0.2711,1.4135 0.6970 1.8588c 0.1936,0.2130 0.7164,0.5615 1.4328 0.5615c 0.6777,-0.0000 1.6845,-0.5421 1.6845 -1.4909c 0.0000,-0.8326 -0.4647,-1.3941 -1.9943 -2.0524c -1.4135,-0.6196 -2.1492,-1.0262 -2.1492 -2.4784c 0.0000,-1.2973 1.1424,-2.2267 2.6720 -2.2267c 0.9681,-0.0000 1.6845,0.1743 2.2848 0.4841c 0.1162,0.6196 0.1743,1.2779 0.2130 1.9750l -0.5228,0.0194 c -0.4066,-1.5877 -1.5684,-1.8975 -1.9750 -1.8975c -0.7358,-0.0000 -1.4909,0.2904 -1.4909 1.3554c 0.0000,0.7745 0.3679,1.1617 1.4328 1.5490c 1.5684,0.5809 2.8269,1.2779 2.8269 2.8269c 0.0000,1.9169 -2.0330,2.4784 -2.9431 2.4784c -0.6777,-0.0000 -1.2392,-0.0774 -1.7426 -0.2130c -0.1355,-0.0194 -0.2323,-0.0387 -0.3679 -0.0387c -0.0968,-0.0000 -0.2517,0.0194 -0.4453 0.0581c 0.0000,-0.8132 -0.0581,-1.8007 -0.1355 -2.7495ZM 131.6362,176.2803 ZM 134.8116,168.7096 v 4.9568 c 0.0000,1.2005 0.1162,1.7813 0.6390 1.7813c 0.5034,-0.0000 0.8907,-0.1549 1.3941 -0.5421l 0.3485,0.3292 c -0.7551,0.8519 -1.5296,1.2779 -2.4203 1.2779c -0.8907,-0.0000 -1.4135,-0.5421 -1.4135 -1.9169v -5.8862 h -1.2586 c -0.0581,-0.0000 -0.0774,-0.0194 -0.0774 -0.0774v -0.6002 c 0.0000,-0.0581 0.0194,-0.0774 0.0581 -0.0774c 1.2973,-0.0000 1.6071,-0.7551 1.6071 -2.2267v -0.3679 l 1.1230,-0.3872 v 2.9818 h 2.1299 c 0.0968,-0.0000 0.1549,0.0387 0.1549 0.1162v 0.3872 c 0.0000,0.1743 -0.2711,0.2517 -0.4647 0.2517h -1.8201 ZM 142.3242,176.2803 ZM 147.9587,171.5365 l -1.5296,0.3872 c -1.7039,0.5228 -1.9556,1.4135 -1.9556 2.2848c 0.0000,0.6002 0.2904,1.5103 1.5103 1.5103c 0.5809,-0.0000 1.4715,-0.5615 1.9750 -0.9875v -3.1948 ZM 147.9587,171.5365 ZM 149.1978,176.5126 c -0.7358,-0.0000 -1.1424,-0.6583 -1.2198 -1.1230l -0.4453,0.3098 c -0.8907,0.6196 -1.2198,0.8132 -2.1105 0.8132c -1.3554,-0.0000 -2.3428,-0.7745 -2.3428 -2.2267c 0.0000,-1.4715 1.2586,-2.4784 3.0980 -2.9431l 1.7813,-0.4453 c 0.0000,-2.1879 -1.0068,-2.5946 -1.6652 -2.5946c -0.7358,-0.0000 -1.5877,0.3292 -1.5877 0.9294c 0.0000,0.2130 0.0387,0.3292 0.0581 0.3872c 0.0387,0.0774 0.0581,0.2130 0.0581 0.3485c 0.0000,0.2517 -0.1936,0.6390 -0.7551 0.6390c -0.4647,-0.0000 -0.7745,-0.3098 -0.7745 -0.7745c 0.0000,-1.1230 1.8201,-2.1105 3.0593 -2.1105c 1.4135,-0.0000 3.0399,0.5809 3.0399 3.3303v 2.8463 c 0.0000,1.1811 0.0194,1.6845 0.4647 1.6845c 0.4260,-0.0000 0.5421,-0.5421 0.5615 -0.9681l 0.4841,0.0968 c -0.1162,1.4135 -0.7164,1.8007 -1.7039 1.8007ZM 155.8972,176.2803 ZM 162.0157,170.8007 c 0.0000,-1.6071 -0.7551,-2.5365 -1.9169 -2.5365c -1.0068,-0.0000 -1.6845,0.6970 -1.6845 2.2073c 0.0000,1.0068 0.3872,2.5946 1.9362 2.5946c 0.6777,-0.0000 1.6652,-0.3292 1.6652 -2.2654ZM 162.0157,170.8007 ZM 158.3950,176.4158 c -0.6002,0.5615 -0.7358,1.1617 -0.7358 1.8201c 0.0000,1.4522 1.7426,1.8781 2.4009 1.8781c 1.6652,-0.0000 3.7757,-0.5809 3.7757 -1.9750c 0.0000,-0.5034 -0.2711,-0.8326 -1.0262 -1.2005c -0.5421,-0.2711 -1.3360,-0.4841 -2.2654 -0.4841c -0.1549,-0.0000 -0.3679,0.0194 -0.6390 0.0387c -0.2711,0.0194 -0.5615,0.0194 -0.7745 0.0194c -0.3098,-0.0000 -0.4647,-0.0387 -0.7358 -0.0968ZM 158.3950,176.4158 ZM 164.2811,168.7677 c -0.3098,-0.0000 -0.5034,-0.1743 -0.5809 -0.3292c -0.1162,-0.1743 -0.1936,-0.2323 -0.3292 -0.2323c -0.2323,-0.0000 -0.6002,0.2711 -0.7358 0.4647c 0.5421,0.5809 0.7939,1.1424 0.7939 2.0524c 0.0000,1.8975 -1.5490,2.9237 -3.1754 2.9237c -0.7164,-0.0000 -1.2973,-0.1355 -1.7426 -0.4066c -0.2130,0.3292 -0.3292,0.7358 -0.3292 1.1230c 0.0000,0.8326 0.6390,1.0456 1.1811 1.0456c 0.0968,-0.0000 0.3292,-0.0194 0.6002 -0.0387c 0.4453,-0.0581 0.9294,-0.0968 1.2586 -0.0968c 0.6777,-0.0000 1.9556,0.1355 2.7301 0.7939c 0.5228,0.4841 0.8132,0.9488 0.8132 1.5684c 0.0000,2.0911 -2.7495,3.1948 -5.2472 3.1948c -1.4135,-0.0000 -2.9818,-0.5228 -2.9818 -2.2073c 0.0000,-0.8326 0.5228,-1.7233 1.5103 -2.3428c -0.4841,-0.2517 -0.8326,-0.7358 -0.8326 -1.4328c 0.0000,-0.6583 0.2904,-1.4909 0.8132 -1.9556c -0.5228,-0.5228 -0.9681,-1.1811 -0.9681 -2.2460c 0.0000,-1.7813 1.5684,-2.9237 3.2142 -2.9237c 1.0843,-0.0000 1.7620,0.4453 1.9750 0.6002c 0.4841,-0.6583 1.3554,-0.9875 1.8394 -0.9875c 0.5034,-0.0000 0.8519,0.3292 0.8519 0.7358c 0.0000,0.4260 -0.2711,0.6970 -0.6583 0.6970ZM 165.1718,176.2803 ZM 167.0112,174.8862 v -9.7005 c 0.0000,-1.1037 -0.1936,-1.4135 -0.5809 -1.4135l -0.6196,0.0774 c -0.0581,-0.0000 -0.1162,-0.0387 -0.1162 -0.0968l -0.0387,-0.4841 c 0.3098,-0.0000 1.0262,-0.1162 1.3554 -0.1743c 0.3485,-0.0774 0.6196,-0.1549 1.0068 -0.3292h 0.4260 v 12.1208 c 0.0000,0.5615 0.2130,0.8519 0.8326 0.8519h 0.4647 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.4135,-0.0387 -2.1686 -0.0387c -0.6777,-0.0000 -2.0911,0.0387 -2.0911 0.0387l -0.0194,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0387,-0.1549 0.1355 -0.1549h 0.4647 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 170.2060,176.2803 ZM 174.2334,168.3417 c 0.0000,0.0968 -0.1162,0.1549 -0.2130 0.1549c -0.5809,-0.0000 -0.8326,0.1162 -0.8326 0.4260c 0.0000,0.1162 0.0387,0.2711 0.1162 0.4453l 2.1299,4.9955 l 2.1492,-4.9180 c 0.0968,-0.1743 0.1355,-0.3292 0.1355 -0.4453c 0.0000,-0.4066 -0.3872,-0.5034 -0.8132 -0.5034h -0.0774 c -0.0968,-0.0000 -0.1936,-0.0774 -0.1936 -0.1355v -0.3679 l 0.0387,-0.0581 c 0.0000,-0.0000 1.1424,0.0387 1.8201 0.0387c 0.5421,-0.0000 1.3360,-0.0387 1.3360 -0.0387l 0.0581,0.0387 v 0.3679 c 0.0000,0.0968 -0.0774,0.1549 -0.2130 0.1549c -0.7358,-0.0000 -1.1037,0.7551 -1.3747 1.3166c -1.0262,2.1686 -1.8781,4.1629 -3.4271 7.8998c -0.5809,1.3941 -1.2779,3.0205 -2.6526 3.0205c -0.3679,-0.0000 -1.1230,-0.2130 -1.1230 -0.9100c 0.0000,-0.5809 0.4260,-0.7551 0.7358 -0.7551c 0.2904,-0.0000 0.4841,0.1162 0.6002 0.2711c 0.1936,0.1936 0.3292,0.3292 0.5228 0.3292c 0.2904,-0.0000 0.9681,-1.6652 1.4522 -2.8463c 0.1162,-0.2323 0.1549,-0.4260 0.1549 -0.6002c 0.0000,-0.1936 -0.1743,-0.7164 -0.3292 -1.1037l -2.4397,-5.6732 c -0.3098,-0.7358 -0.5228,-0.9488 -1.1811 -0.9488c -0.1162,-0.0000 -0.1936,-0.0581 -0.1936 -0.1355v -0.3872 l 0.0387,-0.0387 c 0.0000,-0.0000 0.8519,0.0387 1.4328 0.0387c 0.9100,-0.0000 2.3041,-0.0387 2.3041 -0.0387l 0.0387,0.0581 v 0.3485 ZM 180.0615,176.2803 ZM 182.9465,170.2005 v 4.8212 c 0.6777,0.7939 1.3166,0.8326 1.6264 0.8326c 2.0718,-0.0000 2.5365,-1.9362 2.5365 -3.6014c 0.0000,-2.3428 -0.9488,-3.6401 -2.1299 -3.6401c -0.6583,-0.0000 -1.6071,0.5615 -2.0330 1.5877ZM 182.9465,170.2005 ZM 181.5136,179.3395 v -9.5844 c 0.0000,-0.7358 -0.1743,-0.8713 -0.4453 -0.8713c -0.2517,-0.0000 -0.4841,0.0194 -0.8132 0.0968l -0.0968,-0.5421 c 1.2392,-0.2130 1.4715,-0.2904 2.0137 -0.5615c 0.2130,-0.0968 0.3485,-0.1549 0.4841 -0.1549h 0.2904 l -0.0581,1.5490 h 0.0581 c 0.8907,-1.3554 1.9362,-1.5490 2.5558 -1.5490c 1.8781,-0.0000 3.1173,1.9556 3.1173 4.0080c 0.0000,1.5684 -0.4841,2.7688 -1.3554 3.6595c -0.7551,0.7551 -1.5490,1.1230 -2.5752 1.1230c -0.6970,-0.0000 -1.2392,-0.1549 -1.7426 -0.4260v 3.2529 c 0.0000,0.5615 0.2130,0.8519 0.8326 0.8519h 0.3679 c 0.0968,-0.0000 0.1743,0.0581 0.1743 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3360,-0.0387 -2.0911 -0.0387c -0.6777,-0.0000 -1.9943,0.0387 -1.9943 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 189.3360,176.2803 ZM 192.4921,162.7653 v 6.5638 c 1.2973,-1.2973 2.4397,-1.6071 3.1948 -1.6071c 1.3941,-0.0000 2.0911,1.0649 2.0911 3.0593v 4.1048 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.3679 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3166,-0.0387 -2.0911 -0.0387c -0.6777,-0.0000 -1.9943,0.0387 -1.9943 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519v -4.3178 c 0.0000,-1.5684 -0.4260,-1.9362 -1.5103 -1.9362c -0.5615,-0.0000 -1.3941,0.5034 -2.3235 1.4135v 4.8406 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.3679 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3166,-0.0387 -2.0718 -0.0387c -0.6970,-0.0000 -1.9943,0.0387 -1.9943 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0387,-0.1549 0.1355 -0.1549h 0.3679 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519v -9.7005 c 0.0000,-1.1037 -0.1743,-1.4135 -0.5615 -1.4135l -0.6390,0.0774 c -0.0581,-0.0000 -0.0968,-0.0387 -0.0968 -0.0968l -0.0387,-0.4841 c 0.3098,-0.0000 1.0068,-0.1162 1.3360 -0.1743c 0.3485,-0.0774 0.6390,-0.1549 1.0262 -0.3292h 0.4260 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.9839282365802173" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 102.4073,176.2803 c 0.0000,-5.5270 -4.4805,-10.0076 -10.0076 -10.0076c -5.5270,-0.0000 -10.0076,4.4805 -10.0076 10.0076c -0.0000,5.5270 4.4805,10.0076 10.0076 10.0076c 5.5270,0.0000 10.0076,-4.4805 10.0076 -10.0076Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 132.4300,138.9552 ZM 138.5485,133.4756 c 0.0000,-1.6071 -0.7551,-2.5365 -1.9169 -2.5365c -1.0068,-0.0000 -1.6845,0.6970 -1.6845 2.2073c 0.0000,1.0068 0.3872,2.5946 1.9362 2.5946c 0.6777,-0.0000 1.6652,-0.3292 1.6652 -2.2654ZM 138.5485,133.4756 ZM 134.9278,139.0907 c -0.6002,0.5615 -0.7358,1.1617 -0.7358 1.8201c 0.0000,1.4522 1.7426,1.8781 2.4009 1.8781c 1.6652,-0.0000 3.7757,-0.5809 3.7757 -1.9750c 0.0000,-0.5034 -0.2711,-0.8326 -1.0262 -1.2005c -0.5421,-0.2711 -1.3360,-0.4841 -2.2654 -0.4841c -0.1549,-0.0000 -0.3679,0.0194 -0.6390 0.0387c -0.2711,0.0194 -0.5615,0.0194 -0.7745 0.0194c -0.3098,-0.0000 -0.4647,-0.0387 -0.7358 -0.0968ZM 134.9278,139.0907 ZM 140.8139,131.4426 c -0.3098,-0.0000 -0.5034,-0.1743 -0.5809 -0.3292c -0.1162,-0.1743 -0.1936,-0.2323 -0.3292 -0.2323c -0.2323,-0.0000 -0.6002,0.2711 -0.7358 0.4647c 0.5421,0.5809 0.7939,1.1424 0.7939 2.0524c 0.0000,1.8975 -1.5490,2.9237 -3.1754 2.9237c -0.7164,-0.0000 -1.2973,-0.1355 -1.7426 -0.4066c -0.2130,0.3292 -0.3292,0.7358 -0.3292 1.1230c 0.0000,0.8326 0.6390,1.0456 1.1811 1.0456c 0.0968,-0.0000 0.3292,-0.0194 0.6002 -0.0387c 0.4453,-0.0581 0.9294,-0.0968 1.2586 -0.0968c 0.6777,-0.0000 1.9556,0.1355 2.7301 0.7939c 0.5228,0.4841 0.8132,0.9488 0.8132 1.5684c 0.0000,2.0911 -2.7495,3.1948 -5.2472 3.1948c -1.4135,-0.0000 -2.9818,-0.5228 -2.9818 -2.2073c 0.0000,-0.8326 0.5228,-1.7233 1.5103 -2.3428c -0.4841,-0.2517 -0.8326,-0.7358 -0.8326 -1.4328c 0.0000,-0.6583 0.2904,-1.4909 0.8132 -1.9556c -0.5228,-0.5228 -0.9681,-1.1811 -0.9681 -2.2460c 0.0000,-1.7813 1.5684,-2.9237 3.2142 -2.9237c 1.0843,-0.0000 1.7620,0.4453 1.9750 0.6002c 0.4841,-0.6583 1.3554,-0.9875 1.8394 -0.9875c 0.5034,-0.0000 0.8519,0.3292 0.8519 0.7358c 0.0000,0.4260 -0.2711,0.6970 -0.6583 0.6970ZM 141.7046,138.9552 ZM 143.5440,137.5611 v -9.7005 c 0.0000,-1.1037 -0.1936,-1.4135 -0.5809 -1.4135l -0.6196,0.0774 c -0.0581,-0.0000 -0.1162,-0.0387 -0.1162 -0.0968l -0.0387,-0.4841 c 0.3098,-0.0000 1.0262,-0.1162 1.3554 -0.1743c 0.3485,-0.0774 0.6196,-0.1549 1.0068 -0.3292h 0.4260 v 12.1208 c 0.0000,0.5615 0.2130,0.8519 0.8326 0.8519h 0.4647 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.4135,-0.0387 -2.1686 -0.0387c -0.6777,-0.0000 -2.0911,0.0387 -2.0911 0.0387l -0.0194,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0387,-0.1549 0.1355 -0.1549h 0.4647 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 146.7388,138.9552 ZM 150.7662,131.0166 c 0.0000,0.0968 -0.1162,0.1549 -0.2130 0.1549c -0.5809,-0.0000 -0.8326,0.1162 -0.8326 0.4260c 0.0000,0.1162 0.0387,0.2711 0.1162 0.4453l 2.1299,4.9955 l 2.1492,-4.9180 c 0.0968,-0.1743 0.1355,-0.3292 0.1355 -0.4453c 0.0000,-0.4066 -0.3872,-0.5034 -0.8132 -0.5034h -0.0774 c -0.0968,-0.0000 -0.1936,-0.0774 -0.1936 -0.1355v -0.3679 l 0.0387,-0.0581 c 0.0000,-0.0000 1.1424,0.0387 1.8201 0.0387c 0.5421,-0.0000 1.3360,-0.0387 1.3360 -0.0387l 0.0581,0.0387 v 0.3679 c 0.0000,0.0968 -0.0774,0.1549 -0.2130 0.1549c -0.7358,-0.0000 -1.1037,0.7551 -1.3747 1.3166c -1.0262,2.1686 -1.8781,4.1629 -3.4271 7.8998c -0.5809,1.3941 -1.2779,3.0205 -2.6526 3.0205c -0.3679,-0.0000 -1.1230,-0.2130 -1.1230 -0.9100c 0.0000,-0.5809 0.4260,-0.7551 0.7358 -0.7551c 0.2904,-0.0000 0.4841,0.1162 0.6002 0.2711c 0.1936,0.1936 0.3292,0.3292 0.5228 0.3292c 0.2904,-0.0000 0.9681,-1.6652 1.4522 -2.8463c 0.1162,-0.2323 0.1549,-0.4260 0.1549 -0.6002c 0.0000,-0.1936 -0.1743,-0.7164 -0.3292 -1.1037l -2.4397,-5.6732 c -0.3098,-0.7358 -0.5228,-0.9488 -1.1811 -0.9488c -0.1162,-0.0000 -0.1936,-0.0581 -0.1936 -0.1355v -0.3872 l 0.0387,-0.0387 c 0.0000,-0.0000 0.8519,0.0387 1.4328 0.0387c 0.9100,-0.0000 2.3041,-0.0387 2.3041 -0.0387l 0.0387,0.0581 v 0.3485 ZM 156.5943,138.9552 ZM 159.4793,132.8754 v 4.8212 c 0.6777,0.7939 1.3166,0.8326 1.6264 0.8326c 2.0718,-0.0000 2.5365,-1.9362 2.5365 -3.6014c 0.0000,-2.3428 -0.9488,-3.6401 -2.1299 -3.6401c -0.6583,-0.0000 -1.6071,0.5615 -2.0330 1.5877ZM 159.4793,132.8754 ZM 158.0464,142.0144 v -9.5844 c 0.0000,-0.7358 -0.1743,-0.8713 -0.4453 -0.8713c -0.2517,-0.0000 -0.4841,0.0194 -0.8132 0.0968l -0.0968,-0.5421 c 1.2392,-0.2130 1.4715,-0.2904 2.0137 -0.5615c 0.2130,-0.0968 0.3485,-0.1549 0.4841 -0.1549h 0.2904 l -0.0581,1.5490 h 0.0581 c 0.8907,-1.3554 1.9362,-1.5490 2.5558 -1.5490c 1.8781,-0.0000 3.1173,1.9556 3.1173 4.0080c 0.0000,1.5684 -0.4841,2.7688 -1.3554 3.6595c -0.7551,0.7551 -1.5490,1.1230 -2.5752 1.1230c -0.6970,-0.0000 -1.2392,-0.1549 -1.7426 -0.4260v 3.2529 c 0.0000,0.5615 0.2130,0.8519 0.8326 0.8519h 0.3679 c 0.0968,-0.0000 0.1743,0.0581 0.1743 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3360,-0.0387 -2.0911 -0.0387c -0.6777,-0.0000 -1.9943,0.0387 -1.9943 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 165.8688,138.9552 ZM 169.0249,125.4402 v 6.5638 c 1.2973,-1.2973 2.4397,-1.6071 3.1948 -1.6071c 1.3941,-0.0000 2.0911,1.0649 2.0911 3.0593v 4.1048 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.3679 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3166,-0.0387 -2.0911 -0.0387c -0.6777,-0.0000 -1.9943,0.0387 -1.9943 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519v -4.3178 c 0.0000,-1.5684 -0.4260,-1.9362 -1.5103 -1.9362c -0.5615,-0.0000 -1.3941,0.5034 -2.3235 1.4135v 4.8406 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.3679 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3166,-0.0387 -2.0718 -0.0387c -0.6970,-0.0000 -1.9943,0.0387 -1.9943 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0387,-0.1549 0.1355 -0.1549h 0.3679 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519v -9.7005 c 0.0000,-1.1037 -0.1743,-1.4135 -0.5615 -1.4135l -0.6390,0.0774 c -0.0581,-0.0000 -0.0968,-0.0387 -0.0968 -0.0968l -0.0387,-0.4841 c 0.3098,-0.0000 1.0068,-0.1162 1.3360 -0.1743c 0.3485,-0.0774 0.6390,-0.1549 1.0262 -0.3292h 0.4260 ZM 175.8986,138.9552 ZM 181.4943,133.9984 h 3.3303 v 0.9488 h -3.3303 v 3.3497 h -0.9681 v -3.3497 h -3.3497 v -0.9488 h 3.3497 v -3.3691 h 0.9681 v 3.3691 ZM 186.1025,138.9552 ZM 187.9419,137.5611 v -9.7005 c 0.0000,-1.1037 -0.1936,-1.4135 -0.5809 -1.4135l -0.6196,0.0774 c -0.0581,-0.0000 -0.1162,-0.0387 -0.1162 -0.0968l -0.0387,-0.4841 c 0.3098,-0.0000 1.0262,-0.1162 1.3554 -0.1743c 0.3485,-0.0774 0.6196,-0.1549 1.0068 -0.3292h 0.4260 v 12.1208 c 0.0000,0.5615 0.2130,0.8519 0.8326 0.8519h 0.4647 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.4135,-0.0387 -2.1686 -0.0387c -0.6777,-0.0000 -2.0911,0.0387 -2.0911 0.0387l -0.0194,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0387,-0.1549 0.1355 -0.1549h 0.4647 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 191.1367,138.9552 ZM 192.6470,127.8992 c 0.0000,-0.5034 0.4066,-0.9294 0.9100 -0.9294c 0.5228,-0.0000 0.9294,0.4260 0.9294 0.9294c 0.0000,0.5228 -0.4066,0.9294 -0.9294 0.9294c -0.5034,-0.0000 -0.9100,-0.4066 -0.9100 -0.9294ZM 192.6470,127.8992 ZM 194.4864,137.5611 c 0.0000,0.5615 0.2130,0.8519 0.8326 0.8519h 0.3679 c 0.0968,-0.0000 0.1743,0.0581 0.1743 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3360,-0.0387 -2.0911 -0.0387c -0.6777,-0.0000 -1.9943,0.0387 -1.9943 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519v -4.8212 c 0.0000,-1.0262 -0.1743,-1.1811 -0.4453 -1.1811c -0.2517,-0.0000 -0.4841,0.0194 -0.8132 0.0968l -0.0968,-0.5421 c 1.2392,-0.2130 1.4522,-0.2904 2.0137 -0.5615c 0.2130,-0.0774 0.3485,-0.1549 0.4841 -0.1549h 0.2904 v 7.1641 ZM 196.2484,138.9552 ZM 203.2963,137.5611 v -4.2404 c 0.0000,-1.3554 -0.2323,-1.9943 -1.2586 -1.9943c -0.8519,-0.0000 -1.5877,0.3292 -2.5752 1.4909v 4.7438 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.2711 c 0.0968,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.2198,-0.0387 -1.9750 -0.0387c -0.6970,-0.0000 -2.0137,0.0387 -2.0137 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519v -4.8212 c 0.0000,-1.0456 -0.1549,-1.1811 -0.4260 -1.1811c -0.2517,-0.0000 -0.4841,0.0194 -0.8132 0.0968l -0.0968,-0.5421 c 0.8132,-0.1355 1.3941,-0.2323 1.9943 -0.5615c 0.2130,-0.0968 0.3679,-0.1549 0.5034 -0.1549h 0.2904 l -0.0581,1.7233 h 0.0581 c 1.2392,-1.4522 2.1686,-1.7233 3.1561 -1.7233c 1.7426,-0.0000 2.1105,1.3360 2.1105 3.0593v 4.1048 c 0.0000,0.5615 0.2130,0.8519 0.8326 0.8519h 0.3679 c 0.0968,-0.0000 0.1743,0.0581 0.1743 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3360,-0.0387 -2.0911 -0.0387c -0.6777,-0.0000 -1.8975,0.0387 -1.8975 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.2711 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 206.3168,138.9552 ZM 208.5241,133.5918 h 3.5627 c 0.1936,-0.0000 0.2711,-0.0968 0.2711 -0.2711c 0.0000,-1.8007 -0.9100,-2.2654 -1.6071 -2.2654c -0.4453,-0.0000 -1.8975,0.1743 -2.2267 2.5365ZM 208.5241,133.5918 ZM 213.6358,137.1545 l 0.3872,0.3098 c -0.7358,1.0068 -1.8781,1.7233 -3.2722 1.7233c -2.6526,-0.0000 -3.7757,-1.9750 -3.7757 -4.0855c 0.0000,-2.9431 1.9362,-4.7051 3.7757 -4.7051c 2.5558,-0.0000 3.1561,1.9943 3.1561 3.6208c 0.0000,0.2130 -0.1355,0.3292 -0.3485 0.3292h -5.0923 c -0.0194,0.1162 -0.0194,0.2323 -0.0194 0.3872c 0.0000,1.9750 1.3747,3.5046 2.7688 3.5046c 1.0649,-0.0000 1.7426,-0.3485 2.4203 -1.0843Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="5.31190431544029" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 59.0411,138.9552 h 66.7172 "/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="3.9839282365802173" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 102.4073,138.9552 c 0.0000,-5.5270 -4.4805,-10.0076 -10.0076 -10.0076c -5.5270,-0.0000 -10.0076,4.4805 -10.0076 10.0076c -0.0000,5.5270 4.4805,10.0076 10.0076 10.0076c 5.5270,0.0000 10.0076,-4.4805 10.0076 -10.0076Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 107.4111,103.2980 ZM 109.1343,101.9039 v -4.8212 c 0.0000,-0.9681 -0.1355,-1.1811 -0.4260 -1.1811c -0.2517,-0.0000 -0.4841,0.0194 -0.8132 0.0968l -0.0968,-0.5421 c 1.2198,-0.2130 1.4328,-0.2711 2.0137 -0.5615c 0.1936,-0.0968 0.3485,-0.1549 0.4841 -0.1549h 0.2904 l -0.0581,1.7426 h 0.0581 c 0.5034,-0.7551 1.3554,-1.7426 2.2654 -1.7426c 0.7939,-0.0000 1.0843,0.3872 1.0843 0.8907c 0.0000,0.5034 -0.3292,0.8132 -0.8326 0.8132c -0.3872,-0.0000 -0.6002,-0.1549 -0.7939 -0.3485c -0.1162,-0.1162 -0.2517,-0.1743 -0.3872 -0.1743c -0.2130,-0.0000 -0.6390,0.3485 -1.1037 1.0068c -0.1355,0.1743 -0.2323,0.4260 -0.2323 0.6777v 4.2984 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.5615 c 0.0968,-0.0000 0.1743,0.0581 0.1743 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.5296,-0.0387 -2.2848 -0.0387c -0.6970,-0.0000 -2.0137,0.0387 -2.0137 0.0387l -0.0194,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0387,-0.1549 0.1355 -0.1549h 0.3679 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 114.1298,103.2980 ZM 116.3371,97.9346 h 3.5627 c 0.1936,-0.0000 0.2711,-0.0968 0.2711 -0.2711c 0.0000,-1.8007 -0.9100,-2.2654 -1.6071 -2.2654c -0.4453,-0.0000 -1.8975,0.1743 -2.2267 2.5365ZM 116.3371,97.9346 ZM 121.4488,101.4973 l 0.3872,0.3098 c -0.7358,1.0068 -1.8781,1.7233 -3.2722 1.7233c -2.6526,-0.0000 -3.7757,-1.9750 -3.7757 -4.0855c 0.0000,-2.9431 1.9362,-4.7051 3.7757 -4.7051c 2.5558,-0.0000 3.1561,1.9943 3.1561 3.6208c 0.0000,0.2130 -0.1355,0.3292 -0.3485 0.3292h -5.0923 c -0.0194,0.1162 -0.0194,0.2323 -0.0194 0.3872c 0.0000,1.9750 1.3747,3.5046 2.7688 3.5046c 1.0649,-0.0000 1.7426,-0.3485 2.4203 -1.0843ZM 122.4169,103.2980 ZM 129.8521,101.5360 c -0.8519,1.4715 -1.7813,1.9943 -2.9431 1.9943c -2.3235,-0.0000 -3.7757,-1.7620 -3.7757 -4.2597c 0.0000,-2.7495 1.7233,-4.5308 3.8144 -4.5308c 1.8588,-0.0000 2.8463,0.9488 2.8463 1.9750c 0.0000,0.5615 -0.3485,0.8519 -0.7551 0.8519c -0.4066,-0.0000 -0.7939,-0.2130 -0.8519 -0.6970c -0.0774,-0.6390 -0.1936,-1.4715 -1.3360 -1.4715c -1.2779,-0.0000 -2.2267,1.3554 -2.2267 3.4465c 0.0000,2.2654 1.2198,3.8337 2.7107 3.8337c 0.8326,-0.0000 1.5684,-0.5421 2.1686 -1.4135ZM 130.2200,103.2980 ZM 133.3954,95.7273 v 4.9568 c 0.0000,1.2005 0.1162,1.7813 0.6390 1.7813c 0.5034,-0.0000 0.8907,-0.1549 1.3941 -0.5421l 0.3485,0.3292 c -0.7551,0.8519 -1.5296,1.2779 -2.4203 1.2779c -0.8907,-0.0000 -1.4135,-0.5421 -1.4135 -1.9169v -5.8862 h -1.2586 c -0.0581,-0.0000 -0.0774,-0.0194 -0.0774 -0.0774v -0.6002 c 0.0000,-0.0581 0.0194,-0.0774 0.0581 -0.0774c 1.2973,-0.0000 1.6071,-0.7551 1.6071 -2.2267v -0.3679 l 1.1230,-0.3872 v 2.9818 h 2.1299 c 0.0968,-0.0000 0.1549,0.0387 0.1549 0.1162v 0.3872 c 0.0000,0.1743 -0.2711,0.2517 -0.4647 0.2517h -1.8201 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="1.3279760788600725" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 100.7394,111.6376 l -0.0000,-16.6793 h -16.6793 l -0.0000,16.6793 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 107.4111,67.6408 ZM 110.2961,61.5610 v 4.8212 c 0.6777,0.7939 1.3166,0.8326 1.6264 0.8326c 2.0718,-0.0000 2.5365,-1.9362 2.5365 -3.6014c 0.0000,-2.3428 -0.9488,-3.6401 -2.1299 -3.6401c -0.6583,-0.0000 -1.6071,0.5615 -2.0330 1.5877ZM 110.2961,61.5610 ZM 108.8633,70.7000 v -9.5844 c 0.0000,-0.7358 -0.1743,-0.8713 -0.4453 -0.8713c -0.2517,-0.0000 -0.4841,0.0194 -0.8132 0.0968l -0.0968,-0.5421 c 1.2392,-0.2130 1.4715,-0.2904 2.0137 -0.5615c 0.2130,-0.0968 0.3485,-0.1549 0.4841 -0.1549h 0.2904 l -0.0581,1.5490 h 0.0581 c 0.8907,-1.3554 1.9362,-1.5490 2.5558 -1.5490c 1.8781,-0.0000 3.1173,1.9556 3.1173 4.0080c 0.0000,1.5684 -0.4841,2.7688 -1.3554 3.6595c -0.7551,0.7551 -1.5490,1.1230 -2.5752 1.1230c -0.6970,-0.0000 -1.2392,-0.1549 -1.7426 -0.4260v 3.2529 c 0.0000,0.5615 0.2130,0.8519 0.8326 0.8519h 0.3679 c 0.0968,-0.0000 0.1743,0.0581 0.1743 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3360,-0.0387 -2.0911 -0.0387c -0.6777,-0.0000 -1.9943,0.0387 -1.9943 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 116.6857,67.6408 ZM 118.1959,56.5849 c 0.0000,-0.5034 0.4066,-0.9294 0.9100 -0.9294c 0.5228,-0.0000 0.9294,0.4260 0.9294 0.9294c 0.0000,0.5228 -0.4066,0.9294 -0.9294 0.9294c -0.5034,-0.0000 -0.9100,-0.4066 -0.9100 -0.9294ZM 118.1959,56.5849 ZM 120.0354,66.2467 c 0.0000,0.5615 0.2130,0.8519 0.8326 0.8519h 0.3679 c 0.0968,-0.0000 0.1743,0.0581 0.1743 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3360,-0.0387 -2.0911 -0.0387c -0.6777,-0.0000 -1.9943,0.0387 -1.9943 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519v -4.8212 c 0.0000,-1.0262 -0.1743,-1.1811 -0.4453 -1.1811c -0.2517,-0.0000 -0.4841,0.0194 -0.8132 0.0968l -0.0968,-0.5421 c 1.2392,-0.2130 1.4522,-0.2904 2.0137 -0.5615c 0.2130,-0.0774 0.3485,-0.1549 0.4841 -0.1549h 0.2904 v 7.1641 ZM 121.7973,67.6408 ZM 125.6117,59.8571 c -0.3872,-0.0000 -0.4647,0.0968 -0.4647 0.2323c 0.0000,0.0968 0.0774,0.2711 0.2904 0.6196l 1.1811,1.7426 c 0.0581,0.1162 0.1162,0.1743 0.1936 0.1743c 0.0581,-0.0000 0.0968,-0.0387 0.1743 -0.1355l 1.2586,-1.7620 c 0.2130,-0.2711 0.3292,-0.4841 0.3292 -0.6390c 0.0000,-0.1549 -0.1355,-0.2323 -0.4066 -0.2323h -0.3098 c -0.0581,-0.0000 -0.1162,-0.0387 -0.1162 -0.1355v -0.3679 l 0.0581,-0.0581 c 0.0000,-0.0000 0.9100,0.0387 1.5103 0.0387c 0.6196,-0.0000 1.5684,-0.0387 1.5684 -0.0387l 0.0194,0.0387 v 0.3679 c 0.0000,0.1355 -0.1162,0.1549 -0.2323 0.1549c -0.7164,-0.0000 -1.0068,0.2323 -1.7233 1.1424l -1.6264,2.0718 c -0.0387,0.0581 -0.0581,0.0968 -0.0581 0.1355c 0.0000,0.0387 0.0194,0.0968 0.0581 0.1549l 1.7426,2.4590 c 0.8907,1.2586 1.1424,1.2779 1.7620 1.2779c 0.1936,-0.0000 0.2711,0.0387 0.2711 0.1549v 0.3679 l -0.0194,0.0387 c 0.0000,-0.0000 -1.0456,-0.0387 -1.7039 -0.0387c -0.7939,-0.0000 -2.0137,0.0387 -2.0137 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0387,-0.1549 0.1355 -0.1549h 0.2323 c 0.3098,-0.0000 0.4453,-0.0581 0.4453 -0.2130c 0.0000,-0.1743 -0.2130,-0.4647 -0.5228 -0.8713l -1.1230,-1.5490 c -0.0774,-0.0968 -0.1162,-0.1355 -0.1743 -0.1355c -0.0387,-0.0000 -0.0968,0.0581 -0.1743 0.1743l -1.2198,1.7620 c -0.2904,0.3872 -0.3485,0.4841 -0.3485 0.6196c 0.0000,0.1355 0.1162,0.2130 0.4066 0.2130h 0.2711 c 0.0968,-0.0000 0.1355,0.0581 0.1355 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.0068,-0.0387 -1.6264 -0.0387c -0.5615,-0.0000 -1.4522,0.0387 -1.4522 0.0387l -0.0387,-0.0387 v -0.3292 c 0.0000,-0.1162 0.0774,-0.1936 0.2517 -0.1936c 0.4647,-0.0000 0.9100,-0.0968 1.7233 -1.1424l 1.6264,-2.0911 c 0.0194,-0.0387 0.0387,-0.0774 0.0387 -0.1355c 0.0000,-0.0581 -0.0194,-0.0968 -0.0581 -0.1549l -1.6845,-2.4590 c -0.5421,-0.7939 -0.8907,-1.2586 -1.5684 -1.2586c -0.1355,-0.0000 -0.2711,-0.0581 -0.2711 -0.1355v -0.3679 l 0.0387,-0.0581 l 1.5296,0.0387 l 2.1492,-0.0387 l 0.0581,0.0581 v 0.3485 c 0.0000,0.0968 -0.0774,0.1549 -0.1549 0.1549h -0.2904 ZM 131.4204,67.6408 ZM 133.6277,62.2774 h 3.5627 c 0.1936,-0.0000 0.2711,-0.0968 0.2711 -0.2711c 0.0000,-1.8007 -0.9100,-2.2654 -1.6071 -2.2654c -0.4453,-0.0000 -1.8975,0.1743 -2.2267 2.5365ZM 133.6277,62.2774 ZM 138.7394,65.8401 l 0.3872,0.3098 c -0.7358,1.0068 -1.8781,1.7233 -3.2722 1.7233c -2.6526,-0.0000 -3.7757,-1.9750 -3.7757 -4.0855c 0.0000,-2.9431 1.9362,-4.7051 3.7757 -4.7051c 2.5558,-0.0000 3.1561,1.9943 3.1561 3.6208c 0.0000,0.2130 -0.1355,0.3292 -0.3485 0.3292h -5.0923 c -0.0194,0.1162 -0.0194,0.2323 -0.0194 0.3872c 0.0000,1.9750 1.3747,3.5046 2.7688 3.5046c 1.0649,-0.0000 1.7426,-0.3485 2.4203 -1.0843ZM 139.7075,67.6408 ZM 141.5469,66.2467 v -9.7005 c 0.0000,-1.1037 -0.1936,-1.4135 -0.5809 -1.4135l -0.6196,0.0774 c -0.0581,-0.0000 -0.1162,-0.0387 -0.1162 -0.0968l -0.0387,-0.4841 c 0.3098,-0.0000 1.0262,-0.1162 1.3554 -0.1743c 0.3485,-0.0774 0.6196,-0.1549 1.0068 -0.3292h 0.4260 v 12.1208 c 0.0000,0.5615 0.2130,0.8519 0.8326 0.8519h 0.4647 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.4135,-0.0387 -2.1686 -0.0387c -0.6777,-0.0000 -2.0911,0.0387 -2.0911 0.0387l -0.0194,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0387,-0.1549 0.1355 -0.1549h 0.4647 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 100.7394,75.9804 l -0.0000,-16.6793 h -16.6793 l -0.0000,16.6793 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 63.4779,33.4192 ZM 65.5801,31.8259 v -11.0863 c 0.0000,-1.2613 -0.2213,-1.6154 -0.6639 -1.6154l -0.7081,0.0885 c -0.0664,-0.0000 -0.1328,-0.0443 -0.1328 -0.1106l -0.0443,-0.5532 c 0.3541,-0.0000 1.1728,-0.1328 1.5490 -0.1992c 0.3983,-0.0885 0.7081,-0.1770 1.1507 -0.3762h 0.4868 v 13.8524 c 0.0000,0.6417 0.2434,0.9737 0.9515 0.9737h 0.5311 c 0.0885,-0.0000 0.1770,0.0664 0.1770 0.1770v 0.4204 l -0.0443,0.0443 c 0.0000,-0.0000 -1.6154,-0.0443 -2.4784 -0.0443c -0.7745,-0.0000 -2.3899,0.0443 -2.3899 0.0443l -0.0221,-0.0443 v -0.4204 c 0.0000,-0.1106 0.0443,-0.1770 0.1549 -0.1770h 0.5311 c 0.7302,-0.0000 0.9515,-0.3319 0.9515 -0.9737ZM 69.2313,33.4192 ZM 71.7539,27.2896 h 4.0716 c 0.2213,-0.0000 0.3098,-0.1106 0.3098 -0.3098c 0.0000,-2.0579 -1.0400,-2.5890 -1.8367 -2.5890c -0.5090,-0.0000 -2.1686,0.1992 -2.5448 2.8988ZM 71.7539,27.2896 ZM 77.5958,31.3612 l 0.4426,0.3541 c -0.8409,1.1507 -2.1465,1.9694 -3.7397 1.9694c -3.0316,-0.0000 -4.3150,-2.2571 -4.3150 -4.6691c 0.0000,-3.3635 2.2128,-5.3772 4.3150 -5.3772c 2.9210,-0.0000 3.6069,2.2792 3.6069 4.1380c 0.0000,0.2434 -0.1549,0.3762 -0.3983 0.3762h -5.8198 c -0.0221,0.1328 -0.0221,0.2655 -0.0221 0.4426c 0.0000,2.2571 1.5711,4.0052 3.1644 4.0052c 1.2171,-0.0000 1.9916,-0.3983 2.7661 -1.2392ZM 78.7022,33.4192 ZM 85.6948,27.1568 c 0.0000,-1.8367 -0.8630,-2.8988 -2.1907 -2.8988c -1.1507,-0.0000 -1.9252,0.7966 -1.9252 2.5226c 0.0000,1.1507 0.4426,2.9652 2.2128 2.9652c 0.7745,-0.0000 1.9030,-0.3762 1.9030 -2.5890ZM 85.6948,27.1568 ZM 81.5568,33.5741 c -0.6860,0.6417 -0.8409,1.3277 -0.8409 2.0801c 0.0000,1.6596 1.9916,2.1465 2.7439 2.1465c 1.9030,-0.0000 4.3150,-0.6639 4.3150 -2.2571c 0.0000,-0.5753 -0.3098,-0.9515 -1.1728 -1.3720c -0.6196,-0.3098 -1.5269,-0.5532 -2.5890 -0.5532c -0.1770,-0.0000 -0.4204,0.0221 -0.7302 0.0443c -0.3098,0.0221 -0.6417,0.0221 -0.8851 0.0221c -0.3541,-0.0000 -0.5311,-0.0443 -0.8409 -0.1106ZM 81.5568,33.5741 ZM 88.2838,24.8333 c -0.3541,-0.0000 -0.5753,-0.1992 -0.6639 -0.3762c -0.1328,-0.1992 -0.2213,-0.2655 -0.3762 -0.2655c -0.2655,-0.0000 -0.6860,0.3098 -0.8409 0.5311c 0.6196,0.6639 0.9073,1.3056 0.9073 2.3456c 0.0000,2.1686 -1.7703,3.3414 -3.6291 3.3414c -0.8188,-0.0000 -1.4826,-0.1549 -1.9916 -0.4647c -0.2434,0.3762 -0.3762,0.8409 -0.3762 1.2834c 0.0000,0.9515 0.7302,1.1949 1.3498 1.1949c 0.1106,-0.0000 0.3762,-0.0221 0.6860 -0.0443c 0.5090,-0.0664 1.0622,-0.1106 1.4383 -0.1106c 0.7745,-0.0000 2.2350,0.1549 3.1201 0.9073c 0.5975,0.5532 0.9294,1.0843 0.9294 1.7924c 0.0000,2.3899 -3.1422,3.6512 -5.9968 3.6512c -1.6154,-0.0000 -3.4078,-0.5975 -3.4078 -2.5226c 0.0000,-0.9515 0.5975,-1.9694 1.7260 -2.6775c -0.5532,-0.2877 -0.9515,-0.8409 -0.9515 -1.6375c 0.0000,-0.7524 0.3319,-1.7039 0.9294 -2.2350c -0.5975,-0.5975 -1.1064,-1.3498 -1.1064 -2.5669c 0.0000,-2.0358 1.7924,-3.3414 3.6733 -3.3414c 1.2392,-0.0000 2.0137,0.5090 2.2571 0.6860c 0.5532,-0.7524 1.5490,-1.1285 2.1022 -1.1285c 0.5753,-0.0000 0.9737,0.3762 0.9737 0.8409c 0.0000,0.4868 -0.3098,0.7966 -0.7524 0.7966ZM 89.4124,33.4192 ZM 91.9350,27.2896 h 4.0716 c 0.2213,-0.0000 0.3098,-0.1106 0.3098 -0.3098c 0.0000,-2.0579 -1.0400,-2.5890 -1.8367 -2.5890c -0.5090,-0.0000 -2.1686,0.1992 -2.5448 2.8988ZM 91.9350,27.2896 ZM 97.7769,31.3612 l 0.4426,0.3541 c -0.8409,1.1507 -2.1465,1.9694 -3.7397 1.9694c -3.0316,-0.0000 -4.3150,-2.2571 -4.3150 -4.6691c 0.0000,-3.3635 2.2128,-5.3772 4.3150 -5.3772c 2.9210,-0.0000 3.6069,2.2792 3.6069 4.1380c 0.0000,0.2434 -0.1549,0.3762 -0.3983 0.3762h -5.8198 c -0.0221,0.1328 -0.0221,0.2655 -0.0221 0.4426c 0.0000,2.2571 1.5711,4.0052 3.1644 4.0052c 1.2171,-0.0000 1.9916,-0.3983 2.7661 -1.2392ZM 98.8833,33.4192 ZM 106.9381,31.8259 v -4.8461 c 0.0000,-1.5490 -0.2655,-2.2792 -1.4383 -2.2792c -0.9737,-0.0000 -1.8145,0.3762 -2.9431 1.7039v 5.4215 c 0.0000,0.6417 0.2213,0.9737 0.9515 0.9737h 0.3098 c 0.1106,-0.0000 0.1770,0.0664 0.1770 0.1770v 0.4204 l -0.0443,0.0443 c 0.0000,-0.0000 -1.3941,-0.0443 -2.2571 -0.0443c -0.7966,-0.0000 -2.3014,0.0443 -2.3014 0.0443l -0.0443,-0.0443 v -0.4204 c 0.0000,-0.1106 0.0664,-0.1770 0.1770 -0.1770h 0.4204 c 0.7524,-0.0000 0.9515,-0.3319 0.9515 -0.9737v -5.5100 c 0.0000,-1.1949 -0.1770,-1.3498 -0.4868 -1.3498c -0.2877,-0.0000 -0.5532,0.0221 -0.9294 0.1106l -0.1106,-0.6196 c 0.9294,-0.1549 1.5932,-0.2655 2.2792 -0.6417c 0.2434,-0.1106 0.4204,-0.1770 0.5753 -0.1770h 0.3319 l -0.0664,1.9694 h 0.0664 c 1.4162,-1.6596 2.4784,-1.9694 3.6069 -1.9694c 1.9916,-0.0000 2.4120,1.5269 2.4120 3.4963v 4.6912 c 0.0000,0.6417 0.2434,0.9737 0.9515 0.9737h 0.4204 c 0.1106,-0.0000 0.1992,0.0664 0.1992 0.1770v 0.4204 l -0.0443,0.0443 c 0.0000,-0.0000 -1.5269,-0.0443 -2.3899 -0.0443c -0.7745,-0.0000 -2.1686,0.0443 -2.1686 0.0443l -0.0443,-0.0443 v -0.4204 c 0.0000,-0.1106 0.0664,-0.1770 0.1770 -0.1770h 0.3098 c 0.7302,-0.0000 0.9515,-0.3319 0.9515 -0.9737ZM 110.3901,33.4192 ZM 117.7810,31.4497 v -5.7313 c -0.5311,-0.8409 -1.1285,-1.3056 -2.1686 -1.3056c -0.4426,-0.0000 -1.3498,0.0664 -2.0579 1.1064c -0.3098,0.4647 -0.6860,1.4162 -0.6860 3.0095c 0.0000,2.8988 1.5047,4.2265 2.6997 4.2265c 0.7302,-0.0000 1.3277,-0.4426 2.2128 -1.3056ZM 117.7810,31.4497 ZM 119.4406,17.9735 v 12.7902 c 0.0000,0.6639 0.0443,1.0179 0.0885 1.1728c 0.0664,0.1992 0.3098,0.3319 0.4868 0.3319c 0.2655,-0.0000 0.7524,-0.0000 1.0843 -0.0664l 0.0885,0.6196 c -1.2834,0.2213 -2.4341,0.4647 -2.8988 0.8630h -0.5311 l 0.0664,-1.5269 c -0.8409,0.8630 -1.7039,1.5269 -2.8324 1.5269c -2.3899,-0.0000 -3.8503,-2.0358 -3.8503 -4.7576c 0.0000,-1.6375 0.4426,-3.0095 1.3941 -3.9610c 0.8851,-0.8409 1.8588,-1.3277 3.3193 -1.3277c 0.4426,-0.0000 1.4162,0.1992 1.9252 0.4868v -3.3856 c 0.0000,-1.2613 -0.1992,-1.6154 -0.6417 -1.6154l -0.7302,0.0885 c -0.0443,-0.0000 -0.1106,-0.0443 -0.1106 -0.1106l -0.0443,-0.5532 c 0.3541,-0.0000 1.1507,-0.1328 1.5269 -0.1992c 0.4204,-0.0885 0.7302,-0.1770 1.1728 -0.3762h 0.4868 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.2" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.531190431544029" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 267.5680,300.0000 l -0.0000,-300.0000 h -218.4568 l -0.0000,300.0000 Z"/></g></svg>
+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="300.0000" stroke-opacity="1" viewBox="0 0 300 300" font-size="1" width="300.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 115.7507,280.3226 ZM 117.5902,278.9285 v -9.7005 c 0.0000,-1.1037 -0.1936,-1.4135 -0.5809 -1.4135l -0.6196,0.0774 c -0.0581,-0.0000 -0.1162,-0.0387 -0.1162 -0.0968l -0.0387,-0.4841 c 0.3098,-0.0000 1.0262,-0.1162 1.3554 -0.1743c 0.3485,-0.0774 0.6196,-0.1549 1.0068 -0.3292h 0.4260 v 12.1208 c 0.0000,0.5615 0.2130,0.8519 0.8326 0.8519h 0.4647 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.4135,-0.0387 -2.1686 -0.0387c -0.6777,-0.0000 -2.0911,0.0387 -2.0911 0.0387l -0.0194,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0387,-0.1549 0.1355 -0.1549h 0.4647 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 120.7850,280.3226 ZM 122.2952,269.2667 c 0.0000,-0.5034 0.4066,-0.9294 0.9100 -0.9294c 0.5228,-0.0000 0.9294,0.4260 0.9294 0.9294c 0.0000,0.5228 -0.4066,0.9294 -0.9294 0.9294c -0.5034,-0.0000 -0.9100,-0.4066 -0.9100 -0.9294ZM 122.2952,269.2667 ZM 124.1346,278.9285 c 0.0000,0.5615 0.2130,0.8519 0.8326 0.8519h 0.3679 c 0.0968,-0.0000 0.1743,0.0581 0.1743 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3360,-0.0387 -2.0911 -0.0387c -0.6777,-0.0000 -1.9943,0.0387 -1.9943 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519v -4.8212 c 0.0000,-1.0262 -0.1743,-1.1811 -0.4453 -1.1811c -0.2517,-0.0000 -0.4841,0.0194 -0.8132 0.0968l -0.0968,-0.5421 c 1.2392,-0.2130 1.4522,-0.2904 2.0137 -0.5615c 0.2130,-0.0774 0.3485,-0.1549 0.4841 -0.1549h 0.2904 v 7.1641 ZM 125.8966,280.3226 ZM 132.9445,278.9285 v -4.2404 c 0.0000,-1.3554 -0.2323,-1.9943 -1.2586 -1.9943c -0.8519,-0.0000 -1.5877,0.3292 -2.5752 1.4909v 4.7438 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.2711 c 0.0968,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.2198,-0.0387 -1.9750 -0.0387c -0.6970,-0.0000 -2.0137,0.0387 -2.0137 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519v -4.8212 c 0.0000,-1.0456 -0.1549,-1.1811 -0.4260 -1.1811c -0.2517,-0.0000 -0.4841,0.0194 -0.8132 0.0968l -0.0968,-0.5421 c 0.8132,-0.1355 1.3941,-0.2323 1.9943 -0.5615c 0.2130,-0.0968 0.3679,-0.1549 0.5034 -0.1549h 0.2904 l -0.0581,1.7233 h 0.0581 c 1.2392,-1.4522 2.1686,-1.7233 3.1561 -1.7233c 1.7426,-0.0000 2.1105,1.3360 2.1105 3.0593v 4.1048 c 0.0000,0.5615 0.2130,0.8519 0.8326 0.8519h 0.3679 c 0.0968,-0.0000 0.1743,0.0581 0.1743 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3360,-0.0387 -2.0911 -0.0387c -0.6777,-0.0000 -1.8975,0.0387 -1.8975 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.2711 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 135.9650,280.3226 ZM 138.1724,274.9592 h 3.5627 c 0.1936,-0.0000 0.2711,-0.0968 0.2711 -0.2711c 0.0000,-1.8007 -0.9100,-2.2654 -1.6071 -2.2654c -0.4453,-0.0000 -1.8975,0.1743 -2.2267 2.5365ZM 138.1724,274.9592 ZM 143.2840,278.5219 l 0.3872,0.3098 c -0.7358,1.0068 -1.8781,1.7233 -3.2722 1.7233c -2.6526,-0.0000 -3.7757,-1.9750 -3.7757 -4.0855c 0.0000,-2.9431 1.9362,-4.7051 3.7757 -4.7051c 2.5558,-0.0000 3.1561,1.9943 3.1561 3.6208c 0.0000,0.2130 -0.1355,0.3292 -0.3485 0.3292h -5.0923 c -0.0194,0.1162 -0.0194,0.2323 -0.0194 0.3872c 0.0000,1.9750 1.3747,3.5046 2.7688 3.5046c 1.0649,-0.0000 1.7426,-0.3485 2.4203 -1.0843ZM 149.0927,280.3226 ZM 153.2750,269.7314 c -0.4841,-0.0000 -1.8975,0.2711 -1.8975 1.4522c 0.0000,0.3485 -0.1355,0.9488 -0.6583 0.9488c -0.5034,-0.0000 -0.5421,-0.5615 -0.5421 -0.6196c 0.0000,-0.6002 0.7939,-2.3816 3.4852 -2.3816c 1.8781,-0.0000 2.4397,1.1811 2.4397 1.9556c 0.0000,0.4841 -0.1549,1.4522 -1.8975 2.5558c 1.0843,0.1743 2.5171,0.9681 2.5171 2.9818c 0.0000,2.5558 -1.9362,3.9306 -4.1242 3.9306c -1.1037,-0.0000 -2.6526,-0.4841 -2.6526 -1.2198c 0.0000,-0.2904 0.2904,-0.6196 0.6777 -0.6196c 0.3679,-0.0000 0.5421,0.1936 0.7164 0.4453c 0.2130,0.3292 0.5615,0.7939 1.4909 0.7939c 0.6390,-0.0000 2.4590,-0.6390 2.4590 -3.0786c 0.0000,-2.0718 -1.4522,-2.4009 -2.4977 -2.4009c -0.1743,-0.0000 -0.3872,0.0387 -0.6002 0.0774l -0.0774,-0.5809 c 1.4909,-0.2517 2.7301,-1.7039 2.7301 -2.5946c 0.0000,-1.1037 -0.7745,-1.6458 -1.5684 -1.6458Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="1.3279760788600725" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 92.3997,280.3226 h 16.6793 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 115.7507,246.9640 ZM 127.4262,245.5699 v -4.4533 c 0.0000,-1.2973 -0.5034,-1.7813 -1.2392 -1.7813c -0.7551,-0.0000 -1.3554,0.3872 -2.2848 1.4135c 0.0387,0.2323 0.0387,0.5034 0.0387 0.7745v 4.0467 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.3292 c 0.0968,-0.0000 0.1743,0.0581 0.1743 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.2973,-0.0387 -2.0524 -0.0387c -0.6970,-0.0000 -2.0330,0.0387 -2.0330 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3872 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519v -4.4146 c 0.0000,-1.2973 -0.5228,-1.8201 -1.2586 -1.8201c -0.6777,-0.0000 -1.3166,0.4841 -2.2267 1.4328v 4.8019 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.3679 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3166,-0.0387 -2.0718 -0.0387c -0.6970,-0.0000 -2.0137,0.0387 -2.0137 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519v -4.8212 c 0.0000,-1.1037 -0.1743,-1.1811 -0.4260 -1.1811c -0.2517,-0.0000 -0.4841,0.0194 -0.8132 0.0968l -0.0968,-0.5421 c 1.2198,-0.2130 1.4909,-0.2904 2.0137 -0.5615c 0.1936,-0.0968 0.3485,-0.1549 0.4841 -0.1549h 0.2904 l -0.0581,1.6845 h 0.0581 c 0.9100,-0.9681 1.7233,-1.6845 2.9237 -1.6845c 1.0843,-0.0000 1.7620,0.7939 1.8781 1.6652c 1.1230,-1.1617 2.0330,-1.6652 3.0786 -1.6652c 1.7039,-0.0000 1.9943,1.4135 1.9943 3.1367v 4.0274 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.3679 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3166,-0.0387 -2.0718 -0.0387c -0.6970,-0.0000 -2.0137,0.0387 -2.0137 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 130.4661,246.9640 ZM 138.7726,244.7179 c 0.0000,0.9681 0.0968,1.2779 0.4841 1.2779c 0.2323,-0.0000 0.6583,-0.0387 0.9875 -0.0968l 0.0774,0.5421 c -1.1811,0.2130 -2.1299,0.4066 -2.5752 0.7551h -0.4260 l 0.0581,-1.4328 h -0.0581 c -1.0649,1.1617 -1.9362,1.4328 -2.7301 1.4328c -1.9169,-0.0000 -2.4203,-1.2973 -2.4203 -2.6333v -4.4146 c 0.0000,-0.6390 -0.1355,-0.9681 -0.8519 -0.9681c -0.0774,-0.0000 -0.2130,0.0194 -0.3292 0.0194l -0.0581,-0.0194 v -0.5034 l 0.0581,-0.0581 c 0.0000,-0.0000 1.3166,0.0387 1.9362 0.0387c 0.2711,-0.0000 0.7164,-0.0387 0.7164 -0.0387l -0.0194,1.5490 v 4.1242 c 0.0000,1.7233 0.8907,2.0330 1.4715 2.0330c 0.4453,-0.0000 0.8519,-0.1743 1.2586 -0.4647c 0.4647,-0.3485 0.7745,-0.6196 0.9681 -0.8713v -4.7825 c 0.0000,-0.6970 -0.0968,-1.0262 -0.8132 -1.0262c -0.1162,-0.0000 -0.3292,0.0194 -0.3872 0.0194l -0.0387,-0.0387 v -0.4841 l 0.0387,-0.0581 c 0.0000,-0.0000 1.3747,0.0387 1.9169 0.0387c 0.4453,-0.0000 0.7551,-0.0387 0.7551 -0.0387l -0.0194,1.5296 v 4.5695 ZM 140.4765,246.9640 ZM 154.3593,245.5699 v -3.9499 c 0.0000,-1.5684 -0.4066,-2.3041 -1.2973 -2.3041c -0.5615,-0.0000 -1.3941,0.3292 -2.5365 1.4135v 4.8406 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.3679 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3166,-0.0387 -2.0718 -0.0387c -0.6970,-0.0000 -1.4715,0.0387 -1.4715 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.0387 c 0.5034,-0.0000 0.6196,-0.2904 0.6196 -0.8519v -9.7974 c 0.0000,-0.9100 -0.1743,-1.3166 -0.5615 -1.3166l -0.6390,0.0774 c -0.0581,-0.0000 -0.0968,-0.0387 -0.0968 -0.0968l -0.0387,-0.4841 c 0.3098,-0.0000 1.0068,-0.1162 1.3360 -0.1743c 0.3485,-0.0774 0.6390,-0.1549 1.0262 -0.3292h 0.4260 v 6.5638 c 1.2973,-1.2973 2.6333,-1.6071 3.3884 -1.6071c 1.4135,-0.0000 1.8975,1.0649 1.8975 3.0593v 4.1048 c 0.0000,0.5615 0.1936,0.8519 0.8132 0.8519h 0.3872 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3166,-0.0387 -2.0911 -0.0387c -0.6777,-0.0000 -1.9943,0.0387 -1.9943 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 154.3593,245.5699 ZM 147.7180,245.1439 c -0.8519,1.4715 -1.7813,1.9943 -2.9237 1.9943c -2.3235,-0.0000 -3.6014,-1.7813 -3.6014 -4.2791c 0.0000,-2.7495 1.5490,-4.4921 3.6208 -4.4921c 1.8588,-0.0000 2.8463,0.9488 2.8463 1.9750c 0.0000,0.5809 -0.3485,0.8519 -0.7358 0.8519c -0.4260,-0.0000 -0.8132,-0.2130 -0.8713 -0.6777c -0.0581,-0.6583 -0.1936,-1.4909 -1.3360 -1.4909c -1.2779,-0.0000 -2.0330,1.3166 -2.0330 3.4078c 0.0000,2.2654 1.0262,3.8531 2.5365 3.8531c 0.8326,-0.0000 1.5490,-0.5421 2.1492 -1.4135ZM 162.2398,246.9640 ZM 164.0792,245.5699 v -9.7005 c 0.0000,-1.1037 -0.1936,-1.4135 -0.5809 -1.4135l -0.6196,0.0774 c -0.0581,-0.0000 -0.1162,-0.0387 -0.1162 -0.0968l -0.0387,-0.4841 c 0.3098,-0.0000 1.0262,-0.1162 1.3554 -0.1743c 0.3485,-0.0774 0.6196,-0.1549 1.0068 -0.3292h 0.4260 v 12.1208 c 0.0000,0.5615 0.2130,0.8519 0.8326 0.8519h 0.4647 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.4135,-0.0387 -2.1686 -0.0387c -0.6777,-0.0000 -2.0911,0.0387 -2.0911 0.0387l -0.0194,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0387,-0.1549 0.1355 -0.1549h 0.4647 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 167.2740,246.9640 ZM 167.9323,242.9947 c 0.0000,-2.6526 1.4328,-4.5889 4.0080 -4.5889c 2.8656,-0.0000 3.9693,2.4009 3.9693 4.4146c 0.0000,1.9362 -1.2586,4.3759 -4.0080 4.3759c -2.5946,-0.0000 -3.9693,-2.2267 -3.9693 -4.2016ZM 167.9323,242.9947 ZM 171.7273,239.0448 c -1.5490,-0.0000 -2.2654,1.8201 -2.2654 3.5046c 0.0000,1.4909 0.8519,3.9693 2.7688 3.9693c 0.8713,-0.0000 2.1492,-0.5228 2.1492 -3.0786c 0.0000,-2.8463 -1.0649,-4.3953 -2.6526 -4.3953ZM 176.5486,246.9640 ZM 183.5965,245.5699 v -4.2404 c 0.0000,-1.3554 -0.2323,-1.9943 -1.2586 -1.9943c -0.8519,-0.0000 -1.5877,0.3292 -2.5752 1.4909v 4.7438 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.2711 c 0.0968,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.2198,-0.0387 -1.9750 -0.0387c -0.6970,-0.0000 -2.0137,0.0387 -2.0137 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519v -4.8212 c 0.0000,-1.0456 -0.1549,-1.1811 -0.4260 -1.1811c -0.2517,-0.0000 -0.4841,0.0194 -0.8132 0.0968l -0.0968,-0.5421 c 0.8132,-0.1355 1.3941,-0.2323 1.9943 -0.5615c 0.2130,-0.0968 0.3679,-0.1549 0.5034 -0.1549h 0.2904 l -0.0581,1.7233 h 0.0581 c 1.2392,-1.4522 2.1686,-1.7233 3.1561 -1.7233c 1.7426,-0.0000 2.1105,1.3360 2.1105 3.0593v 4.1048 c 0.0000,0.5615 0.2130,0.8519 0.8326 0.8519h 0.3679 c 0.0968,-0.0000 0.1743,0.0581 0.1743 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3360,-0.0387 -2.0911 -0.0387c -0.6777,-0.0000 -1.8975,0.0387 -1.8975 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.2711 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 186.6170,246.9640 ZM 192.7355,241.4844 c 0.0000,-1.6071 -0.7551,-2.5365 -1.9169 -2.5365c -1.0068,-0.0000 -1.6845,0.6970 -1.6845 2.2073c 0.0000,1.0068 0.3872,2.5946 1.9362 2.5946c 0.6777,-0.0000 1.6652,-0.3292 1.6652 -2.2654ZM 192.7355,241.4844 ZM 189.1148,247.0995 c -0.6002,0.5615 -0.7358,1.1617 -0.7358 1.8201c 0.0000,1.4522 1.7426,1.8781 2.4009 1.8781c 1.6652,-0.0000 3.7757,-0.5809 3.7757 -1.9750c 0.0000,-0.5034 -0.2711,-0.8326 -1.0262 -1.2005c -0.5421,-0.2711 -1.3360,-0.4841 -2.2654 -0.4841c -0.1549,-0.0000 -0.3679,0.0194 -0.6390 0.0387c -0.2711,0.0194 -0.5615,0.0194 -0.7745 0.0194c -0.3098,-0.0000 -0.4647,-0.0387 -0.7358 -0.0968ZM 189.1148,247.0995 ZM 195.0009,239.4514 c -0.3098,-0.0000 -0.5034,-0.1743 -0.5809 -0.3292c -0.1162,-0.1743 -0.1936,-0.2323 -0.3292 -0.2323c -0.2323,-0.0000 -0.6002,0.2711 -0.7358 0.4647c 0.5421,0.5809 0.7939,1.1424 0.7939 2.0524c 0.0000,1.8975 -1.5490,2.9237 -3.1754 2.9237c -0.7164,-0.0000 -1.2973,-0.1355 -1.7426 -0.4066c -0.2130,0.3292 -0.3292,0.7358 -0.3292 1.1230c 0.0000,0.8326 0.6390,1.0456 1.1811 1.0456c 0.0968,-0.0000 0.3292,-0.0194 0.6002 -0.0387c 0.4453,-0.0581 0.9294,-0.0968 1.2586 -0.0968c 0.6777,-0.0000 1.9556,0.1355 2.7301 0.7939c 0.5228,0.4841 0.8132,0.9488 0.8132 1.5684c 0.0000,2.0911 -2.7495,3.1948 -5.2472 3.1948c -1.4135,-0.0000 -2.9818,-0.5228 -2.9818 -2.2073c 0.0000,-0.8326 0.5228,-1.7233 1.5103 -2.3428c -0.4841,-0.2517 -0.8326,-0.7358 -0.8326 -1.4328c 0.0000,-0.6583 0.2904,-1.4909 0.8132 -1.9556c -0.5228,-0.5228 -0.9681,-1.1811 -0.9681 -2.2460c 0.0000,-1.7813 1.5684,-2.9237 3.2142 -2.9237c 1.0843,-0.0000 1.7620,0.4453 1.9750 0.6002c 0.4841,-0.6583 1.3554,-0.9875 1.8394 -0.9875c 0.5034,-0.0000 0.8519,0.3292 0.8519 0.7358c 0.0000,0.4260 -0.2711,0.6970 -0.6583 0.6970ZM 195.9884,246.9640 ZM 198.1957,241.6006 h 3.5627 c 0.1936,-0.0000 0.2711,-0.0968 0.2711 -0.2711c 0.0000,-1.8007 -0.9100,-2.2654 -1.6071 -2.2654c -0.4453,-0.0000 -1.8975,0.1743 -2.2267 2.5365ZM 198.1957,241.6006 ZM 203.3074,245.1633 l 0.3872,0.3098 c -0.7358,1.0068 -1.8781,1.7233 -3.2722 1.7233c -2.6526,-0.0000 -3.7757,-1.9750 -3.7757 -4.0855c 0.0000,-2.9431 1.9362,-4.7051 3.7757 -4.7051c 2.5558,-0.0000 3.1561,1.9943 3.1561 3.6208c 0.0000,0.2130 -0.1355,0.3292 -0.3485 0.3292h -5.0923 c -0.0194,0.1162 -0.0194,0.2323 -0.0194 0.3872c 0.0000,1.9750 1.3747,3.5046 2.7688 3.5046c 1.0649,-0.0000 1.7426,-0.3485 2.4203 -1.0843ZM 204.2755,246.9640 ZM 205.9987,245.5699 v -4.8212 c 0.0000,-0.9681 -0.1355,-1.1811 -0.4260 -1.1811c -0.2517,-0.0000 -0.4841,0.0194 -0.8132 0.0968l -0.0968,-0.5421 c 1.2198,-0.2130 1.4328,-0.2711 2.0137 -0.5615c 0.1936,-0.0968 0.3485,-0.1549 0.4841 -0.1549h 0.2904 l -0.0581,1.7426 h 0.0581 c 0.5034,-0.7551 1.3554,-1.7426 2.2654 -1.7426c 0.7939,-0.0000 1.0843,0.3872 1.0843 0.8907c 0.0000,0.5034 -0.3292,0.8132 -0.8326 0.8132c -0.3872,-0.0000 -0.6002,-0.1549 -0.7939 -0.3485c -0.1162,-0.1162 -0.2517,-0.1743 -0.3872 -0.1743c -0.2130,-0.0000 -0.6390,0.3485 -1.1037 1.0068c -0.1355,0.1743 -0.2323,0.4260 -0.2323 0.6777v 4.2984 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.5615 c 0.0968,-0.0000 0.1743,0.0581 0.1743 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.5296,-0.0387 -2.2848 -0.0387c -0.6970,-0.0000 -2.0137,0.0387 -2.0137 0.0387l -0.0194,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0387,-0.1549 0.1355 -0.1549h 0.3679 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 215.8348,246.9640 ZM 222.8827,245.5699 v -4.2404 c 0.0000,-1.3554 -0.2323,-1.9943 -1.2586 -1.9943c -0.8519,-0.0000 -1.5877,0.3292 -2.5752 1.4909v 4.7438 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.2711 c 0.0968,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.2198,-0.0387 -1.9750 -0.0387c -0.6970,-0.0000 -2.0137,0.0387 -2.0137 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519v -4.8212 c 0.0000,-1.0456 -0.1549,-1.1811 -0.4260 -1.1811c -0.2517,-0.0000 -0.4841,0.0194 -0.8132 0.0968l -0.0968,-0.5421 c 0.8132,-0.1355 1.3941,-0.2323 1.9943 -0.5615c 0.2130,-0.0968 0.3679,-0.1549 0.5034 -0.1549h 0.2904 l -0.0581,1.7233 h 0.0581 c 1.2392,-1.4522 2.1686,-1.7233 3.1561 -1.7233c 1.7426,-0.0000 2.1105,1.3360 2.1105 3.0593v 4.1048 c 0.0000,0.5615 0.2130,0.8519 0.8326 0.8519h 0.3679 c 0.0968,-0.0000 0.1743,0.0581 0.1743 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3360,-0.0387 -2.0911 -0.0387c -0.6777,-0.0000 -1.8975,0.0387 -1.8975 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.2711 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 225.9033,246.9640 ZM 231.5377,242.2202 l -1.5296,0.3872 c -1.7039,0.5228 -1.9556,1.4135 -1.9556 2.2848c 0.0000,0.6002 0.2904,1.5103 1.5103 1.5103c 0.5809,-0.0000 1.4715,-0.5615 1.9750 -0.9875v -3.1948 ZM 231.5377,242.2202 ZM 232.7769,247.1963 c -0.7358,-0.0000 -1.1424,-0.6583 -1.2198 -1.1230l -0.4453,0.3098 c -0.8907,0.6196 -1.2198,0.8132 -2.1105 0.8132c -1.3554,-0.0000 -2.3428,-0.7745 -2.3428 -2.2267c 0.0000,-1.4715 1.2586,-2.4784 3.0980 -2.9431l 1.7813,-0.4453 c 0.0000,-2.1879 -1.0068,-2.5946 -1.6652 -2.5946c -0.7358,-0.0000 -1.5877,0.3292 -1.5877 0.9294c 0.0000,0.2130 0.0387,0.3292 0.0581 0.3872c 0.0387,0.0774 0.0581,0.2130 0.0581 0.3485c 0.0000,0.2517 -0.1936,0.6390 -0.7551 0.6390c -0.4647,-0.0000 -0.7745,-0.3098 -0.7745 -0.7745c 0.0000,-1.1230 1.8201,-2.1105 3.0593 -2.1105c 1.4135,-0.0000 3.0399,0.5809 3.0399 3.3303v 2.8463 c 0.0000,1.1811 0.0194,1.6845 0.4647 1.6845c 0.4260,-0.0000 0.5421,-0.5421 0.5615 -0.9681l 0.4841,0.0968 c -0.1162,1.4135 -0.7164,1.8007 -1.7039 1.8007ZM 234.6357,246.9640 ZM 246.3112,245.5699 v -4.4533 c 0.0000,-1.2973 -0.5034,-1.7813 -1.2392 -1.7813c -0.7551,-0.0000 -1.3554,0.3872 -2.2848 1.4135c 0.0387,0.2323 0.0387,0.5034 0.0387 0.7745v 4.0467 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.3292 c 0.0968,-0.0000 0.1743,0.0581 0.1743 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.2973,-0.0387 -2.0524 -0.0387c -0.6970,-0.0000 -2.0330,0.0387 -2.0330 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3872 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519v -4.4146 c 0.0000,-1.2973 -0.5228,-1.8201 -1.2586 -1.8201c -0.6777,-0.0000 -1.3166,0.4841 -2.2267 1.4328v 4.8019 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.3679 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3166,-0.0387 -2.0718 -0.0387c -0.6970,-0.0000 -2.0137,0.0387 -2.0137 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519v -4.8212 c 0.0000,-1.1037 -0.1743,-1.1811 -0.4260 -1.1811c -0.2517,-0.0000 -0.4841,0.0194 -0.8132 0.0968l -0.0968,-0.5421 c 1.2198,-0.2130 1.4909,-0.2904 2.0137 -0.5615c 0.1936,-0.0968 0.3485,-0.1549 0.4841 -0.1549h 0.2904 l -0.0581,1.6845 h 0.0581 c 0.9100,-0.9681 1.7233,-1.6845 2.9237 -1.6845c 1.0843,-0.0000 1.7620,0.7939 1.8781 1.6652c 1.1230,-1.1617 2.0330,-1.6652 3.0786 -1.6652c 1.7039,-0.0000 1.9943,1.4135 1.9943 3.1367v 4.0274 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.3679 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3166,-0.0387 -2.0718 -0.0387c -0.6970,-0.0000 -2.0137,0.0387 -2.0137 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 249.3511,246.9640 ZM 251.5584,241.6006 h 3.5627 c 0.1936,-0.0000 0.2711,-0.0968 0.2711 -0.2711c 0.0000,-1.8007 -0.9100,-2.2654 -1.6071 -2.2654c -0.4453,-0.0000 -1.8975,0.1743 -2.2267 2.5365ZM 251.5584,241.6006 ZM 256.6701,245.1633 l 0.3872,0.3098 c -0.7358,1.0068 -1.8781,1.7233 -3.2722 1.7233c -2.6526,-0.0000 -3.7757,-1.9750 -3.7757 -4.0855c 0.0000,-2.9431 1.9362,-4.7051 3.7757 -4.7051c 2.5558,-0.0000 3.1561,1.9943 3.1561 3.6208c 0.0000,0.2130 -0.1355,0.3292 -0.3485 0.3292h -5.0923 c -0.0194,0.1162 -0.0194,0.2323 -0.0194 0.3872c 0.0000,1.9750 1.3747,3.5046 2.7688 3.5046c 1.0649,-0.0000 1.7426,-0.3485 2.4203 -1.0843Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="5.31190431544029" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 92.3997,246.9640 h 16.6793 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 115.7507,213.6054 ZM 116.5833,210.8947 l 0.5228,-0.0194 c 0.0581,0.4841 0.2711,1.4135 0.6970 1.8588c 0.1936,0.2130 0.7164,0.5615 1.4328 0.5615c 0.6777,-0.0000 1.6845,-0.5421 1.6845 -1.4909c 0.0000,-0.8326 -0.4647,-1.3941 -1.9943 -2.0524c -1.4135,-0.6196 -2.1492,-1.0262 -2.1492 -2.4784c 0.0000,-1.2973 1.1424,-2.2267 2.6720 -2.2267c 0.9681,-0.0000 1.6845,0.1743 2.2848 0.4841c 0.1162,0.6196 0.1743,1.2779 0.2130 1.9750l -0.5228,0.0194 c -0.4066,-1.5877 -1.5684,-1.8975 -1.9750 -1.8975c -0.7358,-0.0000 -1.4909,0.2904 -1.4909 1.3554c 0.0000,0.7745 0.3679,1.1617 1.4328 1.5490c 1.5684,0.5809 2.8269,1.2779 2.8269 2.8269c 0.0000,1.9169 -2.0330,2.4784 -2.9431 2.4784c -0.6777,-0.0000 -1.2392,-0.0774 -1.7426 -0.2130c -0.1355,-0.0194 -0.2323,-0.0387 -0.3679 -0.0387c -0.0968,-0.0000 -0.2517,0.0194 -0.4453 0.0581c 0.0000,-0.8132 -0.0581,-1.8007 -0.1355 -2.7495ZM 122.9342,213.6054 ZM 126.0902,200.0904 v 6.5638 c 1.2973,-1.2973 2.4397,-1.6071 3.1948 -1.6071c 1.3941,-0.0000 2.0911,1.0649 2.0911 3.0593v 4.1048 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.3679 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3166,-0.0387 -2.0911 -0.0387c -0.6777,-0.0000 -1.9943,0.0387 -1.9943 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519v -4.3178 c 0.0000,-1.5684 -0.4260,-1.9362 -1.5103 -1.9362c -0.5615,-0.0000 -1.3941,0.5034 -2.3235 1.4135v 4.8406 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.3679 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3166,-0.0387 -2.0718 -0.0387c -0.6970,-0.0000 -1.9943,0.0387 -1.9943 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0387,-0.1549 0.1355 -0.1549h 0.3679 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519v -9.7005 c 0.0000,-1.1037 -0.1743,-1.4135 -0.5615 -1.4135l -0.6390,0.0774 c -0.0581,-0.0000 -0.0968,-0.0387 -0.0968 -0.0968l -0.0387,-0.4841 c 0.3098,-0.0000 1.0068,-0.1162 1.3360 -0.1743c 0.3485,-0.0774 0.6390,-0.1549 1.0262 -0.3292h 0.4260 ZM 132.9639,213.6054 ZM 133.6222,209.6361 c 0.0000,-2.6526 1.4328,-4.5889 4.0080 -4.5889c 2.8656,-0.0000 3.9693,2.4009 3.9693 4.4146c 0.0000,1.9362 -1.2586,4.3759 -4.0080 4.3759c -2.5946,-0.0000 -3.9693,-2.2267 -3.9693 -4.2016ZM 133.6222,209.6361 ZM 137.4172,205.6862 c -1.5490,-0.0000 -2.2654,1.8201 -2.2654 3.5046c 0.0000,1.4909 0.8519,3.9693 2.7688 3.9693c 0.8713,-0.0000 2.1492,-0.5228 2.1492 -3.0786c 0.0000,-2.8463 -1.0649,-4.3953 -2.6526 -4.3953ZM 142.2385,213.6054 ZM 143.9617,212.2113 v -4.8212 c 0.0000,-0.9681 -0.1355,-1.1811 -0.4260 -1.1811c -0.2517,-0.0000 -0.4841,0.0194 -0.8132 0.0968l -0.0968,-0.5421 c 1.2198,-0.2130 1.4328,-0.2711 2.0137 -0.5615c 0.1936,-0.0968 0.3485,-0.1549 0.4841 -0.1549h 0.2904 l -0.0581,1.7426 h 0.0581 c 0.5034,-0.7551 1.3554,-1.7426 2.2654 -1.7426c 0.7939,-0.0000 1.0843,0.3872 1.0843 0.8907c 0.0000,0.5034 -0.3292,0.8132 -0.8326 0.8132c -0.3872,-0.0000 -0.6002,-0.1549 -0.7939 -0.3485c -0.1162,-0.1162 -0.2517,-0.1743 -0.3872 -0.1743c -0.2130,-0.0000 -0.6390,0.3485 -1.1037 1.0068c -0.1355,0.1743 -0.2323,0.4260 -0.2323 0.6777v 4.2984 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.5615 c 0.0968,-0.0000 0.1743,0.0581 0.1743 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.5296,-0.0387 -2.2848 -0.0387c -0.6970,-0.0000 -2.0137,0.0387 -2.0137 0.0387l -0.0194,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0387,-0.1549 0.1355 -0.1549h 0.3679 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 148.9572,213.6054 ZM 152.1326,206.0347 v 4.9568 c 0.0000,1.2005 0.1162,1.7813 0.6390 1.7813c 0.5034,-0.0000 0.8907,-0.1549 1.3941 -0.5421l 0.3485,0.3292 c -0.7551,0.8519 -1.5296,1.2779 -2.4203 1.2779c -0.8907,-0.0000 -1.4135,-0.5421 -1.4135 -1.9169v -5.8862 h -1.2586 c -0.0581,-0.0000 -0.0774,-0.0194 -0.0774 -0.0774v -0.6002 c 0.0000,-0.0581 0.0194,-0.0774 0.0581 -0.0774c 1.2973,-0.0000 1.6071,-0.7551 1.6071 -2.2267v -0.3679 l 1.1230,-0.3872 v 2.9818 h 2.1299 c 0.0968,-0.0000 0.1549,0.0387 0.1549 0.1162v 0.3872 c 0.0000,0.1743 -0.2711,0.2517 -0.4647 0.2517h -1.8201 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="2.655952157720145" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 92.3997,213.6054 h 16.6793 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 109.0790,176.2803 ZM 111.0927,165.2244 c 0.0000,-0.5034 0.4066,-0.9294 0.9294 -0.9294c 0.5034,-0.0000 0.9294,0.4260 0.9294 0.9294c 0.0000,0.5228 -0.4260,0.9294 -0.9294 0.9294c -0.5228,-0.0000 -0.9294,-0.4066 -0.9294 -0.9294ZM 111.0927,165.2244 ZM 110.0665,180.0366 c 0.8519,-0.0000 1.4328,-1.5296 1.4328 -4.2597v -5.7119 c 0.0000,-1.0262 -0.1743,-1.1811 -0.4260 -1.1811c -0.2711,-0.0000 -0.4841,0.0194 -0.8132 0.0968l -0.0968,-0.5421 c 1.4135,-0.2323 1.8394,-0.4647 2.0911 -0.6002c 0.1355,-0.0581 0.2130,-0.1162 0.4066 -0.1162h 0.2904 v 7.4545 c 0.0000,2.5365 -0.1936,3.6014 -1.2586 4.6857c -0.5228,0.5034 -1.0843,0.7358 -1.5490 0.7358c -0.7939,-0.0000 -1.8201,-0.4066 -1.8201 -0.9875c 0.0000,-0.4841 0.2904,-0.7358 0.6196 -0.7358c 0.4647,-0.0000 0.7164,0.4453 0.8132 0.8519c 0.0581,0.1936 0.1549,0.3098 0.3098 0.3098ZM 114.4424,176.2803 ZM 122.7488,174.0342 c 0.0000,0.9681 0.0968,1.2779 0.4841 1.2779c 0.2323,-0.0000 0.6583,-0.0387 0.9875 -0.0968l 0.0774,0.5421 c -1.1811,0.2130 -2.1299,0.4066 -2.5752 0.7551h -0.4260 l 0.0581,-1.4328 h -0.0581 c -1.0649,1.1617 -1.9362,1.4328 -2.7301 1.4328c -1.9169,-0.0000 -2.4203,-1.2973 -2.4203 -2.6333v -4.4146 c 0.0000,-0.6390 -0.1355,-0.9681 -0.8519 -0.9681c -0.0774,-0.0000 -0.2130,0.0194 -0.3292 0.0194l -0.0581,-0.0194 v -0.5034 l 0.0581,-0.0581 c 0.0000,-0.0000 1.3166,0.0387 1.9362 0.0387c 0.2711,-0.0000 0.7164,-0.0387 0.7164 -0.0387l -0.0194,1.5490 v 4.1242 c 0.0000,1.7233 0.8907,2.0330 1.4715 2.0330c 0.4453,-0.0000 0.8519,-0.1743 1.2586 -0.4647c 0.4647,-0.3485 0.7745,-0.6196 0.9681 -0.8713v -4.7825 c 0.0000,-0.6970 -0.0968,-1.0262 -0.8132 -1.0262c -0.1162,-0.0000 -0.3292,0.0194 -0.3872 0.0194l -0.0387,-0.0387 v -0.4841 l 0.0387,-0.0581 c 0.0000,-0.0000 1.3747,0.0387 1.9169 0.0387c 0.4453,-0.0000 0.7551,-0.0387 0.7551 -0.0387l -0.0194,1.5296 v 4.5695 ZM 124.4527,176.2803 ZM 125.2853,173.5695 l 0.5228,-0.0194 c 0.0581,0.4841 0.2711,1.4135 0.6970 1.8588c 0.1936,0.2130 0.7164,0.5615 1.4328 0.5615c 0.6777,-0.0000 1.6845,-0.5421 1.6845 -1.4909c 0.0000,-0.8326 -0.4647,-1.3941 -1.9943 -2.0524c -1.4135,-0.6196 -2.1492,-1.0262 -2.1492 -2.4784c 0.0000,-1.2973 1.1424,-2.2267 2.6720 -2.2267c 0.9681,-0.0000 1.6845,0.1743 2.2848 0.4841c 0.1162,0.6196 0.1743,1.2779 0.2130 1.9750l -0.5228,0.0194 c -0.4066,-1.5877 -1.5684,-1.8975 -1.9750 -1.8975c -0.7358,-0.0000 -1.4909,0.2904 -1.4909 1.3554c 0.0000,0.7745 0.3679,1.1617 1.4328 1.5490c 1.5684,0.5809 2.8269,1.2779 2.8269 2.8269c 0.0000,1.9169 -2.0330,2.4784 -2.9431 2.4784c -0.6777,-0.0000 -1.2392,-0.0774 -1.7426 -0.2130c -0.1355,-0.0194 -0.2323,-0.0387 -0.3679 -0.0387c -0.0968,-0.0000 -0.2517,0.0194 -0.4453 0.0581c 0.0000,-0.8132 -0.0581,-1.8007 -0.1355 -2.7495ZM 131.6362,176.2803 ZM 134.8116,168.7096 v 4.9568 c 0.0000,1.2005 0.1162,1.7813 0.6390 1.7813c 0.5034,-0.0000 0.8907,-0.1549 1.3941 -0.5421l 0.3485,0.3292 c -0.7551,0.8519 -1.5296,1.2779 -2.4203 1.2779c -0.8907,-0.0000 -1.4135,-0.5421 -1.4135 -1.9169v -5.8862 h -1.2586 c -0.0581,-0.0000 -0.0774,-0.0194 -0.0774 -0.0774v -0.6002 c 0.0000,-0.0581 0.0194,-0.0774 0.0581 -0.0774c 1.2973,-0.0000 1.6071,-0.7551 1.6071 -2.2267v -0.3679 l 1.1230,-0.3872 v 2.9818 h 2.1299 c 0.0968,-0.0000 0.1549,0.0387 0.1549 0.1162v 0.3872 c 0.0000,0.1743 -0.2711,0.2517 -0.4647 0.2517h -1.8201 ZM 142.3242,176.2803 ZM 147.9587,171.5365 l -1.5296,0.3872 c -1.7039,0.5228 -1.9556,1.4135 -1.9556 2.2848c 0.0000,0.6002 0.2904,1.5103 1.5103 1.5103c 0.5809,-0.0000 1.4715,-0.5615 1.9750 -0.9875v -3.1948 ZM 147.9587,171.5365 ZM 149.1978,176.5126 c -0.7358,-0.0000 -1.1424,-0.6583 -1.2198 -1.1230l -0.4453,0.3098 c -0.8907,0.6196 -1.2198,0.8132 -2.1105 0.8132c -1.3554,-0.0000 -2.3428,-0.7745 -2.3428 -2.2267c 0.0000,-1.4715 1.2586,-2.4784 3.0980 -2.9431l 1.7813,-0.4453 c 0.0000,-2.1879 -1.0068,-2.5946 -1.6652 -2.5946c -0.7358,-0.0000 -1.5877,0.3292 -1.5877 0.9294c 0.0000,0.2130 0.0387,0.3292 0.0581 0.3872c 0.0387,0.0774 0.0581,0.2130 0.0581 0.3485c 0.0000,0.2517 -0.1936,0.6390 -0.7551 0.6390c -0.4647,-0.0000 -0.7745,-0.3098 -0.7745 -0.7745c 0.0000,-1.1230 1.8201,-2.1105 3.0593 -2.1105c 1.4135,-0.0000 3.0399,0.5809 3.0399 3.3303v 2.8463 c 0.0000,1.1811 0.0194,1.6845 0.4647 1.6845c 0.4260,-0.0000 0.5421,-0.5421 0.5615 -0.9681l 0.4841,0.0968 c -0.1162,1.4135 -0.7164,1.8007 -1.7039 1.8007ZM 155.8972,176.2803 ZM 162.0157,170.8007 c 0.0000,-1.6071 -0.7551,-2.5365 -1.9169 -2.5365c -1.0068,-0.0000 -1.6845,0.6970 -1.6845 2.2073c 0.0000,1.0068 0.3872,2.5946 1.9362 2.5946c 0.6777,-0.0000 1.6652,-0.3292 1.6652 -2.2654ZM 162.0157,170.8007 ZM 158.3950,176.4158 c -0.6002,0.5615 -0.7358,1.1617 -0.7358 1.8201c 0.0000,1.4522 1.7426,1.8781 2.4009 1.8781c 1.6652,-0.0000 3.7757,-0.5809 3.7757 -1.9750c 0.0000,-0.5034 -0.2711,-0.8326 -1.0262 -1.2005c -0.5421,-0.2711 -1.3360,-0.4841 -2.2654 -0.4841c -0.1549,-0.0000 -0.3679,0.0194 -0.6390 0.0387c -0.2711,0.0194 -0.5615,0.0194 -0.7745 0.0194c -0.3098,-0.0000 -0.4647,-0.0387 -0.7358 -0.0968ZM 158.3950,176.4158 ZM 164.2811,168.7677 c -0.3098,-0.0000 -0.5034,-0.1743 -0.5809 -0.3292c -0.1162,-0.1743 -0.1936,-0.2323 -0.3292 -0.2323c -0.2323,-0.0000 -0.6002,0.2711 -0.7358 0.4647c 0.5421,0.5809 0.7939,1.1424 0.7939 2.0524c 0.0000,1.8975 -1.5490,2.9237 -3.1754 2.9237c -0.7164,-0.0000 -1.2973,-0.1355 -1.7426 -0.4066c -0.2130,0.3292 -0.3292,0.7358 -0.3292 1.1230c 0.0000,0.8326 0.6390,1.0456 1.1811 1.0456c 0.0968,-0.0000 0.3292,-0.0194 0.6002 -0.0387c 0.4453,-0.0581 0.9294,-0.0968 1.2586 -0.0968c 0.6777,-0.0000 1.9556,0.1355 2.7301 0.7939c 0.5228,0.4841 0.8132,0.9488 0.8132 1.5684c 0.0000,2.0911 -2.7495,3.1948 -5.2472 3.1948c -1.4135,-0.0000 -2.9818,-0.5228 -2.9818 -2.2073c 0.0000,-0.8326 0.5228,-1.7233 1.5103 -2.3428c -0.4841,-0.2517 -0.8326,-0.7358 -0.8326 -1.4328c 0.0000,-0.6583 0.2904,-1.4909 0.8132 -1.9556c -0.5228,-0.5228 -0.9681,-1.1811 -0.9681 -2.2460c 0.0000,-1.7813 1.5684,-2.9237 3.2142 -2.9237c 1.0843,-0.0000 1.7620,0.4453 1.9750 0.6002c 0.4841,-0.6583 1.3554,-0.9875 1.8394 -0.9875c 0.5034,-0.0000 0.8519,0.3292 0.8519 0.7358c 0.0000,0.4260 -0.2711,0.6970 -0.6583 0.6970ZM 165.1718,176.2803 ZM 167.0112,174.8862 v -9.7005 c 0.0000,-1.1037 -0.1936,-1.4135 -0.5809 -1.4135l -0.6196,0.0774 c -0.0581,-0.0000 -0.1162,-0.0387 -0.1162 -0.0968l -0.0387,-0.4841 c 0.3098,-0.0000 1.0262,-0.1162 1.3554 -0.1743c 0.3485,-0.0774 0.6196,-0.1549 1.0068 -0.3292h 0.4260 v 12.1208 c 0.0000,0.5615 0.2130,0.8519 0.8326 0.8519h 0.4647 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.4135,-0.0387 -2.1686 -0.0387c -0.6777,-0.0000 -2.0911,0.0387 -2.0911 0.0387l -0.0194,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0387,-0.1549 0.1355 -0.1549h 0.4647 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 170.2060,176.2803 ZM 174.2334,168.3417 c 0.0000,0.0968 -0.1162,0.1549 -0.2130 0.1549c -0.5809,-0.0000 -0.8326,0.1162 -0.8326 0.4260c 0.0000,0.1162 0.0387,0.2711 0.1162 0.4453l 2.1299,4.9955 l 2.1492,-4.9180 c 0.0968,-0.1743 0.1355,-0.3292 0.1355 -0.4453c 0.0000,-0.4066 -0.3872,-0.5034 -0.8132 -0.5034h -0.0774 c -0.0968,-0.0000 -0.1936,-0.0774 -0.1936 -0.1355v -0.3679 l 0.0387,-0.0581 c 0.0000,-0.0000 1.1424,0.0387 1.8201 0.0387c 0.5421,-0.0000 1.3360,-0.0387 1.3360 -0.0387l 0.0581,0.0387 v 0.3679 c 0.0000,0.0968 -0.0774,0.1549 -0.2130 0.1549c -0.7358,-0.0000 -1.1037,0.7551 -1.3747 1.3166c -1.0262,2.1686 -1.8781,4.1629 -3.4271 7.8998c -0.5809,1.3941 -1.2779,3.0205 -2.6526 3.0205c -0.3679,-0.0000 -1.1230,-0.2130 -1.1230 -0.9100c 0.0000,-0.5809 0.4260,-0.7551 0.7358 -0.7551c 0.2904,-0.0000 0.4841,0.1162 0.6002 0.2711c 0.1936,0.1936 0.3292,0.3292 0.5228 0.3292c 0.2904,-0.0000 0.9681,-1.6652 1.4522 -2.8463c 0.1162,-0.2323 0.1549,-0.4260 0.1549 -0.6002c 0.0000,-0.1936 -0.1743,-0.7164 -0.3292 -1.1037l -2.4397,-5.6732 c -0.3098,-0.7358 -0.5228,-0.9488 -1.1811 -0.9488c -0.1162,-0.0000 -0.1936,-0.0581 -0.1936 -0.1355v -0.3872 l 0.0387,-0.0387 c 0.0000,-0.0000 0.8519,0.0387 1.4328 0.0387c 0.9100,-0.0000 2.3041,-0.0387 2.3041 -0.0387l 0.0387,0.0581 v 0.3485 ZM 180.0615,176.2803 ZM 182.9465,170.2005 v 4.8212 c 0.6777,0.7939 1.3166,0.8326 1.6264 0.8326c 2.0718,-0.0000 2.5365,-1.9362 2.5365 -3.6014c 0.0000,-2.3428 -0.9488,-3.6401 -2.1299 -3.6401c -0.6583,-0.0000 -1.6071,0.5615 -2.0330 1.5877ZM 182.9465,170.2005 ZM 181.5136,179.3395 v -9.5844 c 0.0000,-0.7358 -0.1743,-0.8713 -0.4453 -0.8713c -0.2517,-0.0000 -0.4841,0.0194 -0.8132 0.0968l -0.0968,-0.5421 c 1.2392,-0.2130 1.4715,-0.2904 2.0137 -0.5615c 0.2130,-0.0968 0.3485,-0.1549 0.4841 -0.1549h 0.2904 l -0.0581,1.5490 h 0.0581 c 0.8907,-1.3554 1.9362,-1.5490 2.5558 -1.5490c 1.8781,-0.0000 3.1173,1.9556 3.1173 4.0080c 0.0000,1.5684 -0.4841,2.7688 -1.3554 3.6595c -0.7551,0.7551 -1.5490,1.1230 -2.5752 1.1230c -0.6970,-0.0000 -1.2392,-0.1549 -1.7426 -0.4260v 3.2529 c 0.0000,0.5615 0.2130,0.8519 0.8326 0.8519h 0.3679 c 0.0968,-0.0000 0.1743,0.0581 0.1743 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3360,-0.0387 -2.0911 -0.0387c -0.6777,-0.0000 -1.9943,0.0387 -1.9943 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 189.3360,176.2803 ZM 192.4921,162.7653 v 6.5638 c 1.2973,-1.2973 2.4397,-1.6071 3.1948 -1.6071c 1.3941,-0.0000 2.0911,1.0649 2.0911 3.0593v 4.1048 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.3679 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3166,-0.0387 -2.0911 -0.0387c -0.6777,-0.0000 -1.9943,0.0387 -1.9943 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519v -4.3178 c 0.0000,-1.5684 -0.4260,-1.9362 -1.5103 -1.9362c -0.5615,-0.0000 -1.3941,0.5034 -2.3235 1.4135v 4.8406 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.3679 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3166,-0.0387 -2.0718 -0.0387c -0.6970,-0.0000 -1.9943,0.0387 -1.9943 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0387,-0.1549 0.1355 -0.1549h 0.3679 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519v -9.7005 c 0.0000,-1.1037 -0.1743,-1.4135 -0.5615 -1.4135l -0.6390,0.0774 c -0.0581,-0.0000 -0.0968,-0.0387 -0.0968 -0.0968l -0.0387,-0.4841 c 0.3098,-0.0000 1.0068,-0.1162 1.3360 -0.1743c 0.3485,-0.0774 0.6390,-0.1549 1.0262 -0.3292h 0.4260 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.9839282365802173" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 102.4073,176.2803 c 0.0000,-5.5270 -4.4805,-10.0076 -10.0076 -10.0076c -5.5270,-0.0000 -10.0076,4.4805 -10.0076 10.0076c -0.0000,5.5270 4.4805,10.0076 10.0076 10.0076c 5.5270,0.0000 10.0076,-4.4805 10.0076 -10.0076Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 132.4300,138.9552 ZM 138.5485,133.4756 c 0.0000,-1.6071 -0.7551,-2.5365 -1.9169 -2.5365c -1.0068,-0.0000 -1.6845,0.6970 -1.6845 2.2073c 0.0000,1.0068 0.3872,2.5946 1.9362 2.5946c 0.6777,-0.0000 1.6652,-0.3292 1.6652 -2.2654ZM 138.5485,133.4756 ZM 134.9278,139.0907 c -0.6002,0.5615 -0.7358,1.1617 -0.7358 1.8201c 0.0000,1.4522 1.7426,1.8781 2.4009 1.8781c 1.6652,-0.0000 3.7757,-0.5809 3.7757 -1.9750c 0.0000,-0.5034 -0.2711,-0.8326 -1.0262 -1.2005c -0.5421,-0.2711 -1.3360,-0.4841 -2.2654 -0.4841c -0.1549,-0.0000 -0.3679,0.0194 -0.6390 0.0387c -0.2711,0.0194 -0.5615,0.0194 -0.7745 0.0194c -0.3098,-0.0000 -0.4647,-0.0387 -0.7358 -0.0968ZM 134.9278,139.0907 ZM 140.8139,131.4426 c -0.3098,-0.0000 -0.5034,-0.1743 -0.5809 -0.3292c -0.1162,-0.1743 -0.1936,-0.2323 -0.3292 -0.2323c -0.2323,-0.0000 -0.6002,0.2711 -0.7358 0.4647c 0.5421,0.5809 0.7939,1.1424 0.7939 2.0524c 0.0000,1.8975 -1.5490,2.9237 -3.1754 2.9237c -0.7164,-0.0000 -1.2973,-0.1355 -1.7426 -0.4066c -0.2130,0.3292 -0.3292,0.7358 -0.3292 1.1230c 0.0000,0.8326 0.6390,1.0456 1.1811 1.0456c 0.0968,-0.0000 0.3292,-0.0194 0.6002 -0.0387c 0.4453,-0.0581 0.9294,-0.0968 1.2586 -0.0968c 0.6777,-0.0000 1.9556,0.1355 2.7301 0.7939c 0.5228,0.4841 0.8132,0.9488 0.8132 1.5684c 0.0000,2.0911 -2.7495,3.1948 -5.2472 3.1948c -1.4135,-0.0000 -2.9818,-0.5228 -2.9818 -2.2073c 0.0000,-0.8326 0.5228,-1.7233 1.5103 -2.3428c -0.4841,-0.2517 -0.8326,-0.7358 -0.8326 -1.4328c 0.0000,-0.6583 0.2904,-1.4909 0.8132 -1.9556c -0.5228,-0.5228 -0.9681,-1.1811 -0.9681 -2.2460c 0.0000,-1.7813 1.5684,-2.9237 3.2142 -2.9237c 1.0843,-0.0000 1.7620,0.4453 1.9750 0.6002c 0.4841,-0.6583 1.3554,-0.9875 1.8394 -0.9875c 0.5034,-0.0000 0.8519,0.3292 0.8519 0.7358c 0.0000,0.4260 -0.2711,0.6970 -0.6583 0.6970ZM 141.7046,138.9552 ZM 143.5440,137.5611 v -9.7005 c 0.0000,-1.1037 -0.1936,-1.4135 -0.5809 -1.4135l -0.6196,0.0774 c -0.0581,-0.0000 -0.1162,-0.0387 -0.1162 -0.0968l -0.0387,-0.4841 c 0.3098,-0.0000 1.0262,-0.1162 1.3554 -0.1743c 0.3485,-0.0774 0.6196,-0.1549 1.0068 -0.3292h 0.4260 v 12.1208 c 0.0000,0.5615 0.2130,0.8519 0.8326 0.8519h 0.4647 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.4135,-0.0387 -2.1686 -0.0387c -0.6777,-0.0000 -2.0911,0.0387 -2.0911 0.0387l -0.0194,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0387,-0.1549 0.1355 -0.1549h 0.4647 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 146.7388,138.9552 ZM 150.7662,131.0166 c 0.0000,0.0968 -0.1162,0.1549 -0.2130 0.1549c -0.5809,-0.0000 -0.8326,0.1162 -0.8326 0.4260c 0.0000,0.1162 0.0387,0.2711 0.1162 0.4453l 2.1299,4.9955 l 2.1492,-4.9180 c 0.0968,-0.1743 0.1355,-0.3292 0.1355 -0.4453c 0.0000,-0.4066 -0.3872,-0.5034 -0.8132 -0.5034h -0.0774 c -0.0968,-0.0000 -0.1936,-0.0774 -0.1936 -0.1355v -0.3679 l 0.0387,-0.0581 c 0.0000,-0.0000 1.1424,0.0387 1.8201 0.0387c 0.5421,-0.0000 1.3360,-0.0387 1.3360 -0.0387l 0.0581,0.0387 v 0.3679 c 0.0000,0.0968 -0.0774,0.1549 -0.2130 0.1549c -0.7358,-0.0000 -1.1037,0.7551 -1.3747 1.3166c -1.0262,2.1686 -1.8781,4.1629 -3.4271 7.8998c -0.5809,1.3941 -1.2779,3.0205 -2.6526 3.0205c -0.3679,-0.0000 -1.1230,-0.2130 -1.1230 -0.9100c 0.0000,-0.5809 0.4260,-0.7551 0.7358 -0.7551c 0.2904,-0.0000 0.4841,0.1162 0.6002 0.2711c 0.1936,0.1936 0.3292,0.3292 0.5228 0.3292c 0.2904,-0.0000 0.9681,-1.6652 1.4522 -2.8463c 0.1162,-0.2323 0.1549,-0.4260 0.1549 -0.6002c 0.0000,-0.1936 -0.1743,-0.7164 -0.3292 -1.1037l -2.4397,-5.6732 c -0.3098,-0.7358 -0.5228,-0.9488 -1.1811 -0.9488c -0.1162,-0.0000 -0.1936,-0.0581 -0.1936 -0.1355v -0.3872 l 0.0387,-0.0387 c 0.0000,-0.0000 0.8519,0.0387 1.4328 0.0387c 0.9100,-0.0000 2.3041,-0.0387 2.3041 -0.0387l 0.0387,0.0581 v 0.3485 ZM 156.5943,138.9552 ZM 159.4793,132.8754 v 4.8212 c 0.6777,0.7939 1.3166,0.8326 1.6264 0.8326c 2.0718,-0.0000 2.5365,-1.9362 2.5365 -3.6014c 0.0000,-2.3428 -0.9488,-3.6401 -2.1299 -3.6401c -0.6583,-0.0000 -1.6071,0.5615 -2.0330 1.5877ZM 159.4793,132.8754 ZM 158.0464,142.0144 v -9.5844 c 0.0000,-0.7358 -0.1743,-0.8713 -0.4453 -0.8713c -0.2517,-0.0000 -0.4841,0.0194 -0.8132 0.0968l -0.0968,-0.5421 c 1.2392,-0.2130 1.4715,-0.2904 2.0137 -0.5615c 0.2130,-0.0968 0.3485,-0.1549 0.4841 -0.1549h 0.2904 l -0.0581,1.5490 h 0.0581 c 0.8907,-1.3554 1.9362,-1.5490 2.5558 -1.5490c 1.8781,-0.0000 3.1173,1.9556 3.1173 4.0080c 0.0000,1.5684 -0.4841,2.7688 -1.3554 3.6595c -0.7551,0.7551 -1.5490,1.1230 -2.5752 1.1230c -0.6970,-0.0000 -1.2392,-0.1549 -1.7426 -0.4260v 3.2529 c 0.0000,0.5615 0.2130,0.8519 0.8326 0.8519h 0.3679 c 0.0968,-0.0000 0.1743,0.0581 0.1743 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3360,-0.0387 -2.0911 -0.0387c -0.6777,-0.0000 -1.9943,0.0387 -1.9943 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 165.8688,138.9552 ZM 169.0249,125.4402 v 6.5638 c 1.2973,-1.2973 2.4397,-1.6071 3.1948 -1.6071c 1.3941,-0.0000 2.0911,1.0649 2.0911 3.0593v 4.1048 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.3679 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3166,-0.0387 -2.0911 -0.0387c -0.6777,-0.0000 -1.9943,0.0387 -1.9943 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519v -4.3178 c 0.0000,-1.5684 -0.4260,-1.9362 -1.5103 -1.9362c -0.5615,-0.0000 -1.3941,0.5034 -2.3235 1.4135v 4.8406 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.3679 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3166,-0.0387 -2.0718 -0.0387c -0.6970,-0.0000 -1.9943,0.0387 -1.9943 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0387,-0.1549 0.1355 -0.1549h 0.3679 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519v -9.7005 c 0.0000,-1.1037 -0.1743,-1.4135 -0.5615 -1.4135l -0.6390,0.0774 c -0.0581,-0.0000 -0.0968,-0.0387 -0.0968 -0.0968l -0.0387,-0.4841 c 0.3098,-0.0000 1.0068,-0.1162 1.3360 -0.1743c 0.3485,-0.0774 0.6390,-0.1549 1.0262 -0.3292h 0.4260 ZM 175.8986,138.9552 ZM 181.4943,133.9984 h 3.3303 v 0.9488 h -3.3303 v 3.3497 h -0.9681 v -3.3497 h -3.3497 v -0.9488 h 3.3497 v -3.3691 h 0.9681 v 3.3691 ZM 186.1025,138.9552 ZM 187.9419,137.5611 v -9.7005 c 0.0000,-1.1037 -0.1936,-1.4135 -0.5809 -1.4135l -0.6196,0.0774 c -0.0581,-0.0000 -0.1162,-0.0387 -0.1162 -0.0968l -0.0387,-0.4841 c 0.3098,-0.0000 1.0262,-0.1162 1.3554 -0.1743c 0.3485,-0.0774 0.6196,-0.1549 1.0068 -0.3292h 0.4260 v 12.1208 c 0.0000,0.5615 0.2130,0.8519 0.8326 0.8519h 0.4647 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.4135,-0.0387 -2.1686 -0.0387c -0.6777,-0.0000 -2.0911,0.0387 -2.0911 0.0387l -0.0194,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0387,-0.1549 0.1355 -0.1549h 0.4647 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 191.1367,138.9552 ZM 192.6470,127.8992 c 0.0000,-0.5034 0.4066,-0.9294 0.9100 -0.9294c 0.5228,-0.0000 0.9294,0.4260 0.9294 0.9294c 0.0000,0.5228 -0.4066,0.9294 -0.9294 0.9294c -0.5034,-0.0000 -0.9100,-0.4066 -0.9100 -0.9294ZM 192.6470,127.8992 ZM 194.4864,137.5611 c 0.0000,0.5615 0.2130,0.8519 0.8326 0.8519h 0.3679 c 0.0968,-0.0000 0.1743,0.0581 0.1743 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3360,-0.0387 -2.0911 -0.0387c -0.6777,-0.0000 -1.9943,0.0387 -1.9943 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519v -4.8212 c 0.0000,-1.0262 -0.1743,-1.1811 -0.4453 -1.1811c -0.2517,-0.0000 -0.4841,0.0194 -0.8132 0.0968l -0.0968,-0.5421 c 1.2392,-0.2130 1.4522,-0.2904 2.0137 -0.5615c 0.2130,-0.0774 0.3485,-0.1549 0.4841 -0.1549h 0.2904 v 7.1641 ZM 196.2484,138.9552 ZM 203.2963,137.5611 v -4.2404 c 0.0000,-1.3554 -0.2323,-1.9943 -1.2586 -1.9943c -0.8519,-0.0000 -1.5877,0.3292 -2.5752 1.4909v 4.7438 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.2711 c 0.0968,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.2198,-0.0387 -1.9750 -0.0387c -0.6970,-0.0000 -2.0137,0.0387 -2.0137 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519v -4.8212 c 0.0000,-1.0456 -0.1549,-1.1811 -0.4260 -1.1811c -0.2517,-0.0000 -0.4841,0.0194 -0.8132 0.0968l -0.0968,-0.5421 c 0.8132,-0.1355 1.3941,-0.2323 1.9943 -0.5615c 0.2130,-0.0968 0.3679,-0.1549 0.5034 -0.1549h 0.2904 l -0.0581,1.7233 h 0.0581 c 1.2392,-1.4522 2.1686,-1.7233 3.1561 -1.7233c 1.7426,-0.0000 2.1105,1.3360 2.1105 3.0593v 4.1048 c 0.0000,0.5615 0.2130,0.8519 0.8326 0.8519h 0.3679 c 0.0968,-0.0000 0.1743,0.0581 0.1743 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3360,-0.0387 -2.0911 -0.0387c -0.6777,-0.0000 -1.8975,0.0387 -1.8975 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.2711 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 206.3168,138.9552 ZM 208.5241,133.5918 h 3.5627 c 0.1936,-0.0000 0.2711,-0.0968 0.2711 -0.2711c 0.0000,-1.8007 -0.9100,-2.2654 -1.6071 -2.2654c -0.4453,-0.0000 -1.8975,0.1743 -2.2267 2.5365ZM 208.5241,133.5918 ZM 213.6358,137.1545 l 0.3872,0.3098 c -0.7358,1.0068 -1.8781,1.7233 -3.2722 1.7233c -2.6526,-0.0000 -3.7757,-1.9750 -3.7757 -4.0855c 0.0000,-2.9431 1.9362,-4.7051 3.7757 -4.7051c 2.5558,-0.0000 3.1561,1.9943 3.1561 3.6208c 0.0000,0.2130 -0.1355,0.3292 -0.3485 0.3292h -5.0923 c -0.0194,0.1162 -0.0194,0.2323 -0.0194 0.3872c 0.0000,1.9750 1.3747,3.5046 2.7688 3.5046c 1.0649,-0.0000 1.7426,-0.3485 2.4203 -1.0843Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="5.31190431544029" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 59.0411,138.9552 h 66.7172 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="3.9839282365802173" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 102.4073,138.9552 c 0.0000,-5.5270 -4.4805,-10.0076 -10.0076 -10.0076c -5.5270,-0.0000 -10.0076,4.4805 -10.0076 10.0076c -0.0000,5.5270 4.4805,10.0076 10.0076 10.0076c 5.5270,0.0000 10.0076,-4.4805 10.0076 -10.0076Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 107.4111,103.2980 ZM 109.1343,101.9039 v -4.8212 c 0.0000,-0.9681 -0.1355,-1.1811 -0.4260 -1.1811c -0.2517,-0.0000 -0.4841,0.0194 -0.8132 0.0968l -0.0968,-0.5421 c 1.2198,-0.2130 1.4328,-0.2711 2.0137 -0.5615c 0.1936,-0.0968 0.3485,-0.1549 0.4841 -0.1549h 0.2904 l -0.0581,1.7426 h 0.0581 c 0.5034,-0.7551 1.3554,-1.7426 2.2654 -1.7426c 0.7939,-0.0000 1.0843,0.3872 1.0843 0.8907c 0.0000,0.5034 -0.3292,0.8132 -0.8326 0.8132c -0.3872,-0.0000 -0.6002,-0.1549 -0.7939 -0.3485c -0.1162,-0.1162 -0.2517,-0.1743 -0.3872 -0.1743c -0.2130,-0.0000 -0.6390,0.3485 -1.1037 1.0068c -0.1355,0.1743 -0.2323,0.4260 -0.2323 0.6777v 4.2984 c 0.0000,0.5615 0.1936,0.8519 0.8326 0.8519h 0.5615 c 0.0968,-0.0000 0.1743,0.0581 0.1743 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.5296,-0.0387 -2.2848 -0.0387c -0.6970,-0.0000 -2.0137,0.0387 -2.0137 0.0387l -0.0194,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0387,-0.1549 0.1355 -0.1549h 0.3679 c 0.6583,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 114.1298,103.2980 ZM 116.3371,97.9346 h 3.5627 c 0.1936,-0.0000 0.2711,-0.0968 0.2711 -0.2711c 0.0000,-1.8007 -0.9100,-2.2654 -1.6071 -2.2654c -0.4453,-0.0000 -1.8975,0.1743 -2.2267 2.5365ZM 116.3371,97.9346 ZM 121.4488,101.4973 l 0.3872,0.3098 c -0.7358,1.0068 -1.8781,1.7233 -3.2722 1.7233c -2.6526,-0.0000 -3.7757,-1.9750 -3.7757 -4.0855c 0.0000,-2.9431 1.9362,-4.7051 3.7757 -4.7051c 2.5558,-0.0000 3.1561,1.9943 3.1561 3.6208c 0.0000,0.2130 -0.1355,0.3292 -0.3485 0.3292h -5.0923 c -0.0194,0.1162 -0.0194,0.2323 -0.0194 0.3872c 0.0000,1.9750 1.3747,3.5046 2.7688 3.5046c 1.0649,-0.0000 1.7426,-0.3485 2.4203 -1.0843ZM 122.4169,103.2980 ZM 129.8521,101.5360 c -0.8519,1.4715 -1.7813,1.9943 -2.9431 1.9943c -2.3235,-0.0000 -3.7757,-1.7620 -3.7757 -4.2597c 0.0000,-2.7495 1.7233,-4.5308 3.8144 -4.5308c 1.8588,-0.0000 2.8463,0.9488 2.8463 1.9750c 0.0000,0.5615 -0.3485,0.8519 -0.7551 0.8519c -0.4066,-0.0000 -0.7939,-0.2130 -0.8519 -0.6970c -0.0774,-0.6390 -0.1936,-1.4715 -1.3360 -1.4715c -1.2779,-0.0000 -2.2267,1.3554 -2.2267 3.4465c 0.0000,2.2654 1.2198,3.8337 2.7107 3.8337c 0.8326,-0.0000 1.5684,-0.5421 2.1686 -1.4135ZM 130.2200,103.2980 ZM 133.3954,95.7273 v 4.9568 c 0.0000,1.2005 0.1162,1.7813 0.6390 1.7813c 0.5034,-0.0000 0.8907,-0.1549 1.3941 -0.5421l 0.3485,0.3292 c -0.7551,0.8519 -1.5296,1.2779 -2.4203 1.2779c -0.8907,-0.0000 -1.4135,-0.5421 -1.4135 -1.9169v -5.8862 h -1.2586 c -0.0581,-0.0000 -0.0774,-0.0194 -0.0774 -0.0774v -0.6002 c 0.0000,-0.0581 0.0194,-0.0774 0.0581 -0.0774c 1.2973,-0.0000 1.6071,-0.7551 1.6071 -2.2267v -0.3679 l 1.1230,-0.3872 v 2.9818 h 2.1299 c 0.0968,-0.0000 0.1549,0.0387 0.1549 0.1162v 0.3872 c 0.0000,0.1743 -0.2711,0.2517 -0.4647 0.2517h -1.8201 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="1.3279760788600725" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 100.7394,111.6376 l -0.0000,-16.6793 h -16.6793 l -0.0000,16.6793 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 107.4111,67.6408 ZM 110.2961,61.5610 v 4.8212 c 0.6777,0.7939 1.3166,0.8326 1.6264 0.8326c 2.0718,-0.0000 2.5365,-1.9362 2.5365 -3.6014c 0.0000,-2.3428 -0.9488,-3.6401 -2.1299 -3.6401c -0.6583,-0.0000 -1.6071,0.5615 -2.0330 1.5877ZM 110.2961,61.5610 ZM 108.8633,70.7000 v -9.5844 c 0.0000,-0.7358 -0.1743,-0.8713 -0.4453 -0.8713c -0.2517,-0.0000 -0.4841,0.0194 -0.8132 0.0968l -0.0968,-0.5421 c 1.2392,-0.2130 1.4715,-0.2904 2.0137 -0.5615c 0.2130,-0.0968 0.3485,-0.1549 0.4841 -0.1549h 0.2904 l -0.0581,1.5490 h 0.0581 c 0.8907,-1.3554 1.9362,-1.5490 2.5558 -1.5490c 1.8781,-0.0000 3.1173,1.9556 3.1173 4.0080c 0.0000,1.5684 -0.4841,2.7688 -1.3554 3.6595c -0.7551,0.7551 -1.5490,1.1230 -2.5752 1.1230c -0.6970,-0.0000 -1.2392,-0.1549 -1.7426 -0.4260v 3.2529 c 0.0000,0.5615 0.2130,0.8519 0.8326 0.8519h 0.3679 c 0.0968,-0.0000 0.1743,0.0581 0.1743 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3360,-0.0387 -2.0911 -0.0387c -0.6777,-0.0000 -1.9943,0.0387 -1.9943 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519ZM 116.6857,67.6408 ZM 118.1959,56.5849 c 0.0000,-0.5034 0.4066,-0.9294 0.9100 -0.9294c 0.5228,-0.0000 0.9294,0.4260 0.9294 0.9294c 0.0000,0.5228 -0.4066,0.9294 -0.9294 0.9294c -0.5034,-0.0000 -0.9100,-0.4066 -0.9100 -0.9294ZM 118.1959,56.5849 ZM 120.0354,66.2467 c 0.0000,0.5615 0.2130,0.8519 0.8326 0.8519h 0.3679 c 0.0968,-0.0000 0.1743,0.0581 0.1743 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.3360,-0.0387 -2.0911 -0.0387c -0.6777,-0.0000 -1.9943,0.0387 -1.9943 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0581,-0.1549 0.1549 -0.1549h 0.3679 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519v -4.8212 c 0.0000,-1.0262 -0.1743,-1.1811 -0.4453 -1.1811c -0.2517,-0.0000 -0.4841,0.0194 -0.8132 0.0968l -0.0968,-0.5421 c 1.2392,-0.2130 1.4522,-0.2904 2.0137 -0.5615c 0.2130,-0.0774 0.3485,-0.1549 0.4841 -0.1549h 0.2904 v 7.1641 ZM 121.7973,67.6408 ZM 125.6117,59.8571 c -0.3872,-0.0000 -0.4647,0.0968 -0.4647 0.2323c 0.0000,0.0968 0.0774,0.2711 0.2904 0.6196l 1.1811,1.7426 c 0.0581,0.1162 0.1162,0.1743 0.1936 0.1743c 0.0581,-0.0000 0.0968,-0.0387 0.1743 -0.1355l 1.2586,-1.7620 c 0.2130,-0.2711 0.3292,-0.4841 0.3292 -0.6390c 0.0000,-0.1549 -0.1355,-0.2323 -0.4066 -0.2323h -0.3098 c -0.0581,-0.0000 -0.1162,-0.0387 -0.1162 -0.1355v -0.3679 l 0.0581,-0.0581 c 0.0000,-0.0000 0.9100,0.0387 1.5103 0.0387c 0.6196,-0.0000 1.5684,-0.0387 1.5684 -0.0387l 0.0194,0.0387 v 0.3679 c 0.0000,0.1355 -0.1162,0.1549 -0.2323 0.1549c -0.7164,-0.0000 -1.0068,0.2323 -1.7233 1.1424l -1.6264,2.0718 c -0.0387,0.0581 -0.0581,0.0968 -0.0581 0.1355c 0.0000,0.0387 0.0194,0.0968 0.0581 0.1549l 1.7426,2.4590 c 0.8907,1.2586 1.1424,1.2779 1.7620 1.2779c 0.1936,-0.0000 0.2711,0.0387 0.2711 0.1549v 0.3679 l -0.0194,0.0387 c 0.0000,-0.0000 -1.0456,-0.0387 -1.7039 -0.0387c -0.7939,-0.0000 -2.0137,0.0387 -2.0137 0.0387l -0.0387,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0387,-0.1549 0.1355 -0.1549h 0.2323 c 0.3098,-0.0000 0.4453,-0.0581 0.4453 -0.2130c 0.0000,-0.1743 -0.2130,-0.4647 -0.5228 -0.8713l -1.1230,-1.5490 c -0.0774,-0.0968 -0.1162,-0.1355 -0.1743 -0.1355c -0.0387,-0.0000 -0.0968,0.0581 -0.1743 0.1743l -1.2198,1.7620 c -0.2904,0.3872 -0.3485,0.4841 -0.3485 0.6196c 0.0000,0.1355 0.1162,0.2130 0.4066 0.2130h 0.2711 c 0.0968,-0.0000 0.1355,0.0581 0.1355 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.0068,-0.0387 -1.6264 -0.0387c -0.5615,-0.0000 -1.4522,0.0387 -1.4522 0.0387l -0.0387,-0.0387 v -0.3292 c 0.0000,-0.1162 0.0774,-0.1936 0.2517 -0.1936c 0.4647,-0.0000 0.9100,-0.0968 1.7233 -1.1424l 1.6264,-2.0911 c 0.0194,-0.0387 0.0387,-0.0774 0.0387 -0.1355c 0.0000,-0.0581 -0.0194,-0.0968 -0.0581 -0.1549l -1.6845,-2.4590 c -0.5421,-0.7939 -0.8907,-1.2586 -1.5684 -1.2586c -0.1355,-0.0000 -0.2711,-0.0581 -0.2711 -0.1355v -0.3679 l 0.0387,-0.0581 l 1.5296,0.0387 l 2.1492,-0.0387 l 0.0581,0.0581 v 0.3485 c 0.0000,0.0968 -0.0774,0.1549 -0.1549 0.1549h -0.2904 ZM 131.4204,67.6408 ZM 133.6277,62.2774 h 3.5627 c 0.1936,-0.0000 0.2711,-0.0968 0.2711 -0.2711c 0.0000,-1.8007 -0.9100,-2.2654 -1.6071 -2.2654c -0.4453,-0.0000 -1.8975,0.1743 -2.2267 2.5365ZM 133.6277,62.2774 ZM 138.7394,65.8401 l 0.3872,0.3098 c -0.7358,1.0068 -1.8781,1.7233 -3.2722 1.7233c -2.6526,-0.0000 -3.7757,-1.9750 -3.7757 -4.0855c 0.0000,-2.9431 1.9362,-4.7051 3.7757 -4.7051c 2.5558,-0.0000 3.1561,1.9943 3.1561 3.6208c 0.0000,0.2130 -0.1355,0.3292 -0.3485 0.3292h -5.0923 c -0.0194,0.1162 -0.0194,0.2323 -0.0194 0.3872c 0.0000,1.9750 1.3747,3.5046 2.7688 3.5046c 1.0649,-0.0000 1.7426,-0.3485 2.4203 -1.0843ZM 139.7075,67.6408 ZM 141.5469,66.2467 v -9.7005 c 0.0000,-1.1037 -0.1936,-1.4135 -0.5809 -1.4135l -0.6196,0.0774 c -0.0581,-0.0000 -0.1162,-0.0387 -0.1162 -0.0968l -0.0387,-0.4841 c 0.3098,-0.0000 1.0262,-0.1162 1.3554 -0.1743c 0.3485,-0.0774 0.6196,-0.1549 1.0068 -0.3292h 0.4260 v 12.1208 c 0.0000,0.5615 0.2130,0.8519 0.8326 0.8519h 0.4647 c 0.0774,-0.0000 0.1549,0.0581 0.1549 0.1549v 0.3679 l -0.0387,0.0387 c 0.0000,-0.0000 -1.4135,-0.0387 -2.1686 -0.0387c -0.6777,-0.0000 -2.0911,0.0387 -2.0911 0.0387l -0.0194,-0.0387 v -0.3679 c 0.0000,-0.0968 0.0387,-0.1549 0.1355 -0.1549h 0.4647 c 0.6390,-0.0000 0.8326,-0.2904 0.8326 -0.8519Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 100.7394,75.9804 l -0.0000,-16.6793 h -16.6793 l -0.0000,16.6793 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 63.4779,33.4192 ZM 65.5801,31.8259 v -11.0863 c 0.0000,-1.2613 -0.2213,-1.6154 -0.6639 -1.6154l -0.7081,0.0885 c -0.0664,-0.0000 -0.1328,-0.0443 -0.1328 -0.1106l -0.0443,-0.5532 c 0.3541,-0.0000 1.1728,-0.1328 1.5490 -0.1992c 0.3983,-0.0885 0.7081,-0.1770 1.1507 -0.3762h 0.4868 v 13.8524 c 0.0000,0.6417 0.2434,0.9737 0.9515 0.9737h 0.5311 c 0.0885,-0.0000 0.1770,0.0664 0.1770 0.1770v 0.4204 l -0.0443,0.0443 c 0.0000,-0.0000 -1.6154,-0.0443 -2.4784 -0.0443c -0.7745,-0.0000 -2.3899,0.0443 -2.3899 0.0443l -0.0221,-0.0443 v -0.4204 c 0.0000,-0.1106 0.0443,-0.1770 0.1549 -0.1770h 0.5311 c 0.7302,-0.0000 0.9515,-0.3319 0.9515 -0.9737ZM 69.2313,33.4192 ZM 71.7539,27.2896 h 4.0716 c 0.2213,-0.0000 0.3098,-0.1106 0.3098 -0.3098c 0.0000,-2.0579 -1.0400,-2.5890 -1.8367 -2.5890c -0.5090,-0.0000 -2.1686,0.1992 -2.5448 2.8988ZM 71.7539,27.2896 ZM 77.5958,31.3612 l 0.4426,0.3541 c -0.8409,1.1507 -2.1465,1.9694 -3.7397 1.9694c -3.0316,-0.0000 -4.3150,-2.2571 -4.3150 -4.6691c 0.0000,-3.3635 2.2128,-5.3772 4.3150 -5.3772c 2.9210,-0.0000 3.6069,2.2792 3.6069 4.1380c 0.0000,0.2434 -0.1549,0.3762 -0.3983 0.3762h -5.8198 c -0.0221,0.1328 -0.0221,0.2655 -0.0221 0.4426c 0.0000,2.2571 1.5711,4.0052 3.1644 4.0052c 1.2171,-0.0000 1.9916,-0.3983 2.7661 -1.2392ZM 78.7022,33.4192 ZM 85.6948,27.1568 c 0.0000,-1.8367 -0.8630,-2.8988 -2.1907 -2.8988c -1.1507,-0.0000 -1.9252,0.7966 -1.9252 2.5226c 0.0000,1.1507 0.4426,2.9652 2.2128 2.9652c 0.7745,-0.0000 1.9030,-0.3762 1.9030 -2.5890ZM 85.6948,27.1568 ZM 81.5568,33.5741 c -0.6860,0.6417 -0.8409,1.3277 -0.8409 2.0801c 0.0000,1.6596 1.9916,2.1465 2.7439 2.1465c 1.9030,-0.0000 4.3150,-0.6639 4.3150 -2.2571c 0.0000,-0.5753 -0.3098,-0.9515 -1.1728 -1.3720c -0.6196,-0.3098 -1.5269,-0.5532 -2.5890 -0.5532c -0.1770,-0.0000 -0.4204,0.0221 -0.7302 0.0443c -0.3098,0.0221 -0.6417,0.0221 -0.8851 0.0221c -0.3541,-0.0000 -0.5311,-0.0443 -0.8409 -0.1106ZM 81.5568,33.5741 ZM 88.2838,24.8333 c -0.3541,-0.0000 -0.5753,-0.1992 -0.6639 -0.3762c -0.1328,-0.1992 -0.2213,-0.2655 -0.3762 -0.2655c -0.2655,-0.0000 -0.6860,0.3098 -0.8409 0.5311c 0.6196,0.6639 0.9073,1.3056 0.9073 2.3456c 0.0000,2.1686 -1.7703,3.3414 -3.6291 3.3414c -0.8188,-0.0000 -1.4826,-0.1549 -1.9916 -0.4647c -0.2434,0.3762 -0.3762,0.8409 -0.3762 1.2834c 0.0000,0.9515 0.7302,1.1949 1.3498 1.1949c 0.1106,-0.0000 0.3762,-0.0221 0.6860 -0.0443c 0.5090,-0.0664 1.0622,-0.1106 1.4383 -0.1106c 0.7745,-0.0000 2.2350,0.1549 3.1201 0.9073c 0.5975,0.5532 0.9294,1.0843 0.9294 1.7924c 0.0000,2.3899 -3.1422,3.6512 -5.9968 3.6512c -1.6154,-0.0000 -3.4078,-0.5975 -3.4078 -2.5226c 0.0000,-0.9515 0.5975,-1.9694 1.7260 -2.6775c -0.5532,-0.2877 -0.9515,-0.8409 -0.9515 -1.6375c 0.0000,-0.7524 0.3319,-1.7039 0.9294 -2.2350c -0.5975,-0.5975 -1.1064,-1.3498 -1.1064 -2.5669c 0.0000,-2.0358 1.7924,-3.3414 3.6733 -3.3414c 1.2392,-0.0000 2.0137,0.5090 2.2571 0.6860c 0.5532,-0.7524 1.5490,-1.1285 2.1022 -1.1285c 0.5753,-0.0000 0.9737,0.3762 0.9737 0.8409c 0.0000,0.4868 -0.3098,0.7966 -0.7524 0.7966ZM 89.4124,33.4192 ZM 91.9350,27.2896 h 4.0716 c 0.2213,-0.0000 0.3098,-0.1106 0.3098 -0.3098c 0.0000,-2.0579 -1.0400,-2.5890 -1.8367 -2.5890c -0.5090,-0.0000 -2.1686,0.1992 -2.5448 2.8988ZM 91.9350,27.2896 ZM 97.7769,31.3612 l 0.4426,0.3541 c -0.8409,1.1507 -2.1465,1.9694 -3.7397 1.9694c -3.0316,-0.0000 -4.3150,-2.2571 -4.3150 -4.6691c 0.0000,-3.3635 2.2128,-5.3772 4.3150 -5.3772c 2.9210,-0.0000 3.6069,2.2792 3.6069 4.1380c 0.0000,0.2434 -0.1549,0.3762 -0.3983 0.3762h -5.8198 c -0.0221,0.1328 -0.0221,0.2655 -0.0221 0.4426c 0.0000,2.2571 1.5711,4.0052 3.1644 4.0052c 1.2171,-0.0000 1.9916,-0.3983 2.7661 -1.2392ZM 98.8833,33.4192 ZM 106.9381,31.8259 v -4.8461 c 0.0000,-1.5490 -0.2655,-2.2792 -1.4383 -2.2792c -0.9737,-0.0000 -1.8145,0.3762 -2.9431 1.7039v 5.4215 c 0.0000,0.6417 0.2213,0.9737 0.9515 0.9737h 0.3098 c 0.1106,-0.0000 0.1770,0.0664 0.1770 0.1770v 0.4204 l -0.0443,0.0443 c 0.0000,-0.0000 -1.3941,-0.0443 -2.2571 -0.0443c -0.7966,-0.0000 -2.3014,0.0443 -2.3014 0.0443l -0.0443,-0.0443 v -0.4204 c 0.0000,-0.1106 0.0664,-0.1770 0.1770 -0.1770h 0.4204 c 0.7524,-0.0000 0.9515,-0.3319 0.9515 -0.9737v -5.5100 c 0.0000,-1.1949 -0.1770,-1.3498 -0.4868 -1.3498c -0.2877,-0.0000 -0.5532,0.0221 -0.9294 0.1106l -0.1106,-0.6196 c 0.9294,-0.1549 1.5932,-0.2655 2.2792 -0.6417c 0.2434,-0.1106 0.4204,-0.1770 0.5753 -0.1770h 0.3319 l -0.0664,1.9694 h 0.0664 c 1.4162,-1.6596 2.4784,-1.9694 3.6069 -1.9694c 1.9916,-0.0000 2.4120,1.5269 2.4120 3.4963v 4.6912 c 0.0000,0.6417 0.2434,0.9737 0.9515 0.9737h 0.4204 c 0.1106,-0.0000 0.1992,0.0664 0.1992 0.1770v 0.4204 l -0.0443,0.0443 c 0.0000,-0.0000 -1.5269,-0.0443 -2.3899 -0.0443c -0.7745,-0.0000 -2.1686,0.0443 -2.1686 0.0443l -0.0443,-0.0443 v -0.4204 c 0.0000,-0.1106 0.0664,-0.1770 0.1770 -0.1770h 0.3098 c 0.7302,-0.0000 0.9515,-0.3319 0.9515 -0.9737ZM 110.3901,33.4192 ZM 117.7810,31.4497 v -5.7313 c -0.5311,-0.8409 -1.1285,-1.3056 -2.1686 -1.3056c -0.4426,-0.0000 -1.3498,0.0664 -2.0579 1.1064c -0.3098,0.4647 -0.6860,1.4162 -0.6860 3.0095c 0.0000,2.8988 1.5047,4.2265 2.6997 4.2265c 0.7302,-0.0000 1.3277,-0.4426 2.2128 -1.3056ZM 117.7810,31.4497 ZM 119.4406,17.9735 v 12.7902 c 0.0000,0.6639 0.0443,1.0179 0.0885 1.1728c 0.0664,0.1992 0.3098,0.3319 0.4868 0.3319c 0.2655,-0.0000 0.7524,-0.0000 1.0843 -0.0664l 0.0885,0.6196 c -1.2834,0.2213 -2.4341,0.4647 -2.8988 0.8630h -0.5311 l 0.0664,-1.5269 c -0.8409,0.8630 -1.7039,1.5269 -2.8324 1.5269c -2.3899,-0.0000 -3.8503,-2.0358 -3.8503 -4.7576c 0.0000,-1.6375 0.4426,-3.0095 1.3941 -3.9610c 0.8851,-0.8409 1.8588,-1.3277 3.3193 -1.3277c 0.4426,-0.0000 1.4162,0.1992 1.9252 0.4868v -3.3856 c 0.0000,-1.2613 -0.1992,-1.6154 -0.6417 -1.6154l -0.7302,0.0885 c -0.0443,-0.0000 -0.1106,-0.0443 -0.1106 -0.1106l -0.0443,-0.5532 c 0.3541,-0.0000 1.1507,-0.1328 1.5269 -0.1992c 0.4204,-0.0885 0.7302,-0.1770 1.1728 -0.3762h 0.4868 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.2" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.531190431544029" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 267.5680,300.0000 l -0.0000,-300.0000 h -218.4568 l -0.0000,300.0000 Z"/></g></svg>
diff --git a/other/lglyphChart_Example.svg b/other/lglyphChart_Example.svg
--- a/other/lglyphChart_Example.svg
+++ b/other/lglyphChart_Example.svg
@@ -1,3 +1,3 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="200.0000" stroke-opacity="1" viewBox="0 0 600 200" font-size="1" width="600.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 550.3069,15.4035 ZM 555.6309,12.4917 c 0.0000,-1.7747 -0.9649,-2.6534 -2.0331 -2.6534c -0.7926,-0.0000 -1.3956,0.1206 -2.0676 0.3963l 0.5514,-4.7038 c 0.5686,0.0517 1.1544,0.0689 1.7574 0.0689c 0.8615,-0.0000 1.7574,-0.0517 2.6879 -0.1551l 0.1034,0.0517 l -0.2584,1.1199 c -0.6720,0.0689 -1.2233,0.0861 -1.7058 0.0861c -0.7753,-0.0000 -1.3612,-0.0689 -1.9642 -0.1378l -0.3274,2.7223 c 0.3618,-0.1378 0.9821,-0.2584 1.6541 -0.2584c 1.8264,-0.0000 2.8429,1.5851 2.8429 3.1703c 0.0000,1.9297 -1.3439,3.4115 -3.2909 3.4115c -0.9821,-0.0000 -2.4122,-0.5514 -2.4122 -1.2233c 0.0000,-0.3274 0.2757,-0.5514 0.5858 -0.5514c 0.3446,-0.0000 0.5686,0.2584 0.7753 0.5341c 0.2584,0.3101 0.5341,0.6547 1.0855 0.6547c 1.1027,-0.0000 2.0159,-1.0338 2.0159 -2.5328ZM 557.8536,15.4035 ZM 559.6455,13.7667 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 561.6269,15.4035 ZM 566.9510,12.4917 c 0.0000,-1.7747 -0.9649,-2.6534 -2.0331 -2.6534c -0.7926,-0.0000 -1.3956,0.1206 -2.0676 0.3963l 0.5514,-4.7038 c 0.5686,0.0517 1.1544,0.0689 1.7574 0.0689c 0.8615,-0.0000 1.7574,-0.0517 2.6879 -0.1551l 0.1034,0.0517 l -0.2584,1.1199 c -0.6720,0.0689 -1.2233,0.0861 -1.7058 0.0861c -0.7753,-0.0000 -1.3612,-0.0689 -1.9642 -0.1378l -0.3274,2.7223 c 0.3618,-0.1378 0.9821,-0.2584 1.6541 -0.2584c 1.8264,-0.0000 2.8429,1.5851 2.8429 3.1703c 0.0000,1.9297 -1.3439,3.4115 -3.2909 3.4115c -0.9821,-0.0000 -2.4122,-0.5514 -2.4122 -1.2233c 0.0000,-0.3274 0.2757,-0.5514 0.5858 -0.5514c 0.3446,-0.0000 0.5686,0.2584 0.7753 0.5341c 0.2584,0.3101 0.5341,0.6547 1.0855 0.6547c 1.1027,-0.0000 2.0159,-1.0338 2.0159 -2.5328Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 561.4719,25.1082 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 550.3069,50.0355 ZM 555.6309,47.1237 c 0.0000,-1.7747 -0.9649,-2.6534 -2.0331 -2.6534c -0.7926,-0.0000 -1.3956,0.1206 -2.0676 0.3963l 0.5514,-4.7038 c 0.5686,0.0517 1.1544,0.0689 1.7574 0.0689c 0.8615,-0.0000 1.7574,-0.0517 2.6879 -0.1551l 0.1034,0.0517 l -0.2584,1.1199 c -0.6720,0.0689 -1.2233,0.0861 -1.7058 0.0861c -0.7753,-0.0000 -1.3612,-0.0689 -1.9642 -0.1378l -0.3274,2.7223 c 0.3618,-0.1378 0.9821,-0.2584 1.6541 -0.2584c 1.8264,-0.0000 2.8429,1.5851 2.8429 3.1703c 0.0000,1.9297 -1.3439,3.4115 -3.2909 3.4115c -0.9821,-0.0000 -2.4122,-0.5514 -2.4122 -1.2233c 0.0000,-0.3274 0.2757,-0.5514 0.5858 -0.5514c 0.3446,-0.0000 0.5686,0.2584 0.7753 0.5341c 0.2584,0.3101 0.5341,0.6547 1.0855 0.6547c 1.1027,-0.0000 2.0159,-1.0338 2.0159 -2.5328ZM 557.8536,50.0355 ZM 559.6455,48.3987 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 561.6269,50.0355 ZM 566.0722,43.9189 c 0.0000,-0.1206 0.0172,-0.2584 0.1723 -0.3446c 0.1895,-0.1378 0.4997,-0.2929 0.7581 -0.2929c 0.2240,-0.0000 0.2412,0.1895 0.2412 0.5341v 2.7740 h 1.3956 l -0.1034,0.8098 h -1.2922 v 1.4301 c 0.0000,0.4824 0.0689,0.7237 0.5686 0.7237h 0.4652 c 0.1034,-0.0000 0.1206,0.0861 0.1206 0.1206v 0.3791 c 0.0000,-0.0000 -1.1027,-0.0345 -1.8264 -0.0345c -0.6547,-0.0000 -1.6713,0.0345 -1.6713 0.0345v -0.3791 c 0.0000,-0.0345 0.0172,-0.1206 0.1206 -0.1206h 0.4652 c 0.5341,-0.0000 0.5858,-0.2240 0.5858 -0.7237v -1.4301 h -3.3771 c -0.0689,-0.0000 -0.1034,-0.0345 -0.1551 -0.1034l -0.1378,-0.1895 l -0.2068,-0.3618 c -0.0172,-0.0000 -0.0172,-0.0172 -0.0172 -0.0345c 0.0000,-0.0172 0.0172,-0.0345 0.0345 -0.0517c 1.1199,-1.2406 3.1014,-5.0828 3.7217 -6.4957c 0.0172,-0.0689 0.0517,-0.0861 0.1206 -0.0861c 0.0172,-0.0000 0.3963,0.1551 0.6030 0.1895c -0.7753,2.0848 -2.0504,4.3247 -3.3081 6.3234h 2.7223 v -2.6706 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 561.4719,59.7403 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 550.3069,84.6676 ZM 555.6309,81.7557 c 0.0000,-1.7747 -0.9649,-2.6534 -2.0331 -2.6534c -0.7926,-0.0000 -1.3956,0.1206 -2.0676 0.3963l 0.5514,-4.7038 c 0.5686,0.0517 1.1544,0.0689 1.7574 0.0689c 0.8615,-0.0000 1.7574,-0.0517 2.6879 -0.1551l 0.1034,0.0517 l -0.2584,1.1199 c -0.6720,0.0689 -1.2233,0.0861 -1.7058 0.0861c -0.7753,-0.0000 -1.3612,-0.0689 -1.9642 -0.1378l -0.3274,2.7223 c 0.3618,-0.1378 0.9821,-0.2584 1.6541 -0.2584c 1.8264,-0.0000 2.8429,1.5851 2.8429 3.1703c 0.0000,1.9297 -1.3439,3.4115 -3.2909 3.4115c -0.9821,-0.0000 -2.4122,-0.5514 -2.4122 -1.2233c 0.0000,-0.3274 0.2757,-0.5514 0.5858 -0.5514c 0.3446,-0.0000 0.5686,0.2584 0.7753 0.5341c 0.2584,0.3101 0.5341,0.6547 1.0855 0.6547c 1.1027,-0.0000 2.0159,-1.0338 2.0159 -2.5328ZM 557.8536,84.6676 ZM 559.6455,83.0307 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 561.6269,84.6676 ZM 565.3486,75.2428 c -0.4307,-0.0000 -1.6885,0.2412 -1.6885 1.2922c 0.0000,0.3101 -0.1206,0.8443 -0.5858 0.8443c -0.4480,-0.0000 -0.4824,-0.4997 -0.4824 -0.5514c 0.0000,-0.5341 0.7064,-2.1193 3.1014 -2.1193c 1.6713,-0.0000 2.1710,1.0510 2.1710 1.7402c 0.0000,0.4307 -0.1378,1.2922 -1.6885 2.2743c 0.9649,0.1551 2.2399,0.8615 2.2399 2.6534c 0.0000,2.2743 -1.7230,3.4977 -3.6700 3.4977c -0.9821,-0.0000 -2.3605,-0.4307 -2.3605 -1.0855c 0.0000,-0.2584 0.2584,-0.5514 0.6030 -0.5514c 0.3274,-0.0000 0.4824,0.1723 0.6375 0.3963c 0.1895,0.2929 0.4997,0.7064 1.3267 0.7064c 0.5686,-0.0000 2.1882,-0.5686 2.1882 -2.7395c 0.0000,-1.8436 -1.2922,-2.1365 -2.2227 -2.1365c -0.1551,-0.0000 -0.3446,0.0345 -0.5341 0.0689l -0.0689,-0.5169 c 1.3267,-0.2240 2.4294,-1.5162 2.4294 -2.3088c 0.0000,-0.9821 -0.6892,-1.4645 -1.3956 -1.4645Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 561.4719,94.3723 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 550.3069,119.2996 ZM 555.6309,116.3878 c 0.0000,-1.7747 -0.9649,-2.6534 -2.0331 -2.6534c -0.7926,-0.0000 -1.3956,0.1206 -2.0676 0.3963l 0.5514,-4.7038 c 0.5686,0.0517 1.1544,0.0689 1.7574 0.0689c 0.8615,-0.0000 1.7574,-0.0517 2.6879 -0.1551l 0.1034,0.0517 l -0.2584,1.1199 c -0.6720,0.0689 -1.2233,0.0861 -1.7058 0.0861c -0.7753,-0.0000 -1.3612,-0.0689 -1.9642 -0.1378l -0.3274,2.7223 c 0.3618,-0.1378 0.9821,-0.2584 1.6541 -0.2584c 1.8264,-0.0000 2.8429,1.5851 2.8429 3.1703c 0.0000,1.9297 -1.3439,3.4115 -3.2909 3.4115c -0.9821,-0.0000 -2.4122,-0.5514 -2.4122 -1.2233c 0.0000,-0.3274 0.2757,-0.5514 0.5858 -0.5514c 0.3446,-0.0000 0.5686,0.2584 0.7753 0.5341c 0.2584,0.3101 0.5341,0.6547 1.0855 0.6547c 1.1027,-0.0000 2.0159,-1.0338 2.0159 -2.5328ZM 557.8536,119.2996 ZM 559.6455,117.6628 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 561.6269,119.2996 ZM 562.6263,111.6668 c 0.0000,-0.9821 0.9476,-2.3260 2.7568 -2.3260c 1.3267,-0.0000 2.8774,0.4997 2.8774 2.4811c 0.0000,1.3095 -0.6720,1.9642 -1.6024 2.8602l -1.6368,1.5851 c -0.0861,0.0861 -1.2406,1.2233 -1.2406 2.0331h 2.9291 c 0.5858,-0.0000 0.8960,-0.2929 1.1372 -1.2406l 0.4307,0.0689 l -0.3446,2.1710 h -5.3240 c 0.0000,-0.9649 0.1551,-1.7058 1.7574 -3.3426l 1.2061,-1.1889 c 0.9649,-0.9821 1.3612,-1.8264 1.3612 -2.8774c 0.0000,-1.5679 -1.0683,-2.0159 -1.6541 -2.0159c -1.1889,-0.0000 -1.5162,0.6203 -1.5162 1.0338c 0.0000,0.1378 0.0345,0.2757 0.0689 0.3963c 0.0345,0.1206 0.0689,0.2412 0.0689 0.3791c 0.0000,0.4480 -0.3446,0.6203 -0.6203 0.6203c -0.3791,-0.0000 -0.6547,-0.2929 -0.6547 -0.6375Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 561.4719,129.0043 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 550.3069,153.9316 ZM 555.6309,151.0198 c 0.0000,-1.7747 -0.9649,-2.6534 -2.0331 -2.6534c -0.7926,-0.0000 -1.3956,0.1206 -2.0676 0.3963l 0.5514,-4.7038 c 0.5686,0.0517 1.1544,0.0689 1.7574 0.0689c 0.8615,-0.0000 1.7574,-0.0517 2.6879 -0.1551l 0.1034,0.0517 l -0.2584,1.1199 c -0.6720,0.0689 -1.2233,0.0861 -1.7058 0.0861c -0.7753,-0.0000 -1.3612,-0.0689 -1.9642 -0.1378l -0.3274,2.7223 c 0.3618,-0.1378 0.9821,-0.2584 1.6541 -0.2584c 1.8264,-0.0000 2.8429,1.5851 2.8429 3.1703c 0.0000,1.9297 -1.3439,3.4115 -3.2909 3.4115c -0.9821,-0.0000 -2.4122,-0.5514 -2.4122 -1.2233c 0.0000,-0.3274 0.2757,-0.5514 0.5858 -0.5514c 0.3446,-0.0000 0.5686,0.2584 0.7753 0.5341c 0.2584,0.3101 0.5341,0.6547 1.0855 0.6547c 1.1027,-0.0000 2.0159,-1.0338 2.0159 -2.5328ZM 557.8536,153.9316 ZM 559.6455,152.2948 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 561.6269,153.9316 ZM 564.8661,145.7130 c -0.3274,-0.0000 -1.0855,0.3101 -1.4645 0.4824l -0.2068,-0.5341 c 1.5162,-0.7064 2.1020,-1.0683 2.9635 -1.6885h 0.3274 v 8.6666 c 0.0000,0.6203 0.0861,0.7926 0.6547 0.7926h 0.8960 c 0.0517,-0.0000 0.1378,0.0345 0.1378 0.1378v 0.3791 l -2.3605,-0.0345 l -2.3950,0.0345 v -0.3791 c 0.0172,-0.0517 0.0345,-0.1378 0.1378 -0.1378h 1.0338 c 0.6547,-0.0000 0.6547,-0.2929 0.6547 -0.7926v -5.9271 c 0.0000,-0.5858 0.0000,-0.9993 -0.3791 -0.9993Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 561.4719,163.6364 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 550.3069,188.5637 ZM 555.6309,185.6518 c 0.0000,-1.7747 -0.9649,-2.6534 -2.0331 -2.6534c -0.7926,-0.0000 -1.3956,0.1206 -2.0676 0.3963l 0.5514,-4.7038 c 0.5686,0.0517 1.1544,0.0689 1.7574 0.0689c 0.8615,-0.0000 1.7574,-0.0517 2.6879 -0.1551l 0.1034,0.0517 l -0.2584,1.1199 c -0.6720,0.0689 -1.2233,0.0861 -1.7058 0.0861c -0.7753,-0.0000 -1.3612,-0.0689 -1.9642 -0.1378l -0.3274,2.7223 c 0.3618,-0.1378 0.9821,-0.2584 1.6541 -0.2584c 1.8264,-0.0000 2.8429,1.5851 2.8429 3.1703c 0.0000,1.9297 -1.3439,3.4115 -3.2909 3.4115c -0.9821,-0.0000 -2.4122,-0.5514 -2.4122 -1.2233c 0.0000,-0.3274 0.2757,-0.5514 0.5858 -0.5514c 0.3446,-0.0000 0.5686,0.2584 0.7753 0.5341c 0.2584,0.3101 0.5341,0.6547 1.0855 0.6547c 1.1027,-0.0000 2.0159,-1.0338 2.0159 -2.5328ZM 557.8536,188.5637 ZM 559.6455,186.9268 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 561.6269,188.5637 ZM 565.4003,179.2079 c -0.7409,-0.0000 -1.8264,0.7237 -1.8264 4.7382c 0.0000,1.4128 0.2584,4.2558 1.7747 4.2558c 0.2929,-0.0000 1.1199,-0.1895 1.4818 -1.5335c 0.2240,-0.8270 0.3446,-1.8608 0.3446 -3.3598c 0.0000,-2.1882 -0.5514,-3.4115 -1.0510 -3.8423c -0.1895,-0.1723 -0.4480,-0.2584 -0.7237 -0.2584ZM 565.4003,179.2079 ZM 565.3314,188.7704 c -1.8436,-0.0000 -3.0841,-2.3605 -3.0841 -4.9967c 0.0000,-3.2220 1.5335,-5.1690 3.1531 -5.1690c 0.7409,-0.0000 1.4818,0.4652 1.9814 1.1372c 0.7237,0.9649 1.1027,2.2571 1.1027 3.8767c 0.0000,3.8250 -1.8953,5.1517 -3.1531 5.1517Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 561.4719,198.2684 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 446.4108,15.4035 ZM 450.8561,9.2869 c 0.0000,-0.1206 0.0172,-0.2584 0.1723 -0.3446c 0.1895,-0.1378 0.4997,-0.2929 0.7581 -0.2929c 0.2240,-0.0000 0.2412,0.1895 0.2412 0.5341v 2.7740 h 1.3956 l -0.1034,0.8098 h -1.2922 v 1.4301 c 0.0000,0.4824 0.0689,0.7237 0.5686 0.7237h 0.4652 c 0.1034,-0.0000 0.1206,0.0861 0.1206 0.1206v 0.3791 c 0.0000,-0.0000 -1.1027,-0.0345 -1.8264 -0.0345c -0.6547,-0.0000 -1.6713,0.0345 -1.6713 0.0345v -0.3791 c 0.0000,-0.0345 0.0172,-0.1206 0.1206 -0.1206h 0.4652 c 0.5341,-0.0000 0.5858,-0.2240 0.5858 -0.7237v -1.4301 h -3.3771 c -0.0689,-0.0000 -0.1034,-0.0345 -0.1551 -0.1034l -0.1378,-0.1895 l -0.2068,-0.3618 c -0.0172,-0.0000 -0.0172,-0.0172 -0.0172 -0.0345c 0.0000,-0.0172 0.0172,-0.0345 0.0345 -0.0517c 1.1199,-1.2406 3.1014,-5.0828 3.7217 -6.4957c 0.0172,-0.0689 0.0517,-0.0861 0.1206 -0.0861c 0.0172,-0.0000 0.3963,0.1551 0.6030 0.1895c -0.7753,2.0848 -2.0504,4.3247 -3.3081 6.3234h 2.7223 v -2.6706 ZM 453.9575,15.4035 ZM 455.7494,13.7667 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 457.7308,15.4035 ZM 463.0549,12.4917 c 0.0000,-1.7747 -0.9649,-2.6534 -2.0331 -2.6534c -0.7926,-0.0000 -1.3956,0.1206 -2.0676 0.3963l 0.5514,-4.7038 c 0.5686,0.0517 1.1544,0.0689 1.7574 0.0689c 0.8615,-0.0000 1.7574,-0.0517 2.6879 -0.1551l 0.1034,0.0517 l -0.2584,1.1199 c -0.6720,0.0689 -1.2233,0.0861 -1.7058 0.0861c -0.7753,-0.0000 -1.3612,-0.0689 -1.9642 -0.1378l -0.3274,2.7223 c 0.3618,-0.1378 0.9821,-0.2584 1.6541 -0.2584c 1.8264,-0.0000 2.8429,1.5851 2.8429 3.1703c 0.0000,1.9297 -1.3439,3.4115 -3.2909 3.4115c -0.9821,-0.0000 -2.4122,-0.5514 -2.4122 -1.2233c 0.0000,-0.3274 0.2757,-0.5514 0.5858 -0.5514c 0.3446,-0.0000 0.5686,0.2584 0.7753 0.5341c 0.2584,0.3101 0.5341,0.6547 1.0855 0.6547c 1.1027,-0.0000 2.0159,-1.0338 2.0159 -2.5328Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 457.5758,25.1082 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 446.4108,50.0355 ZM 450.8561,43.9189 c 0.0000,-0.1206 0.0172,-0.2584 0.1723 -0.3446c 0.1895,-0.1378 0.4997,-0.2929 0.7581 -0.2929c 0.2240,-0.0000 0.2412,0.1895 0.2412 0.5341v 2.7740 h 1.3956 l -0.1034,0.8098 h -1.2922 v 1.4301 c 0.0000,0.4824 0.0689,0.7237 0.5686 0.7237h 0.4652 c 0.1034,-0.0000 0.1206,0.0861 0.1206 0.1206v 0.3791 c 0.0000,-0.0000 -1.1027,-0.0345 -1.8264 -0.0345c -0.6547,-0.0000 -1.6713,0.0345 -1.6713 0.0345v -0.3791 c 0.0000,-0.0345 0.0172,-0.1206 0.1206 -0.1206h 0.4652 c 0.5341,-0.0000 0.5858,-0.2240 0.5858 -0.7237v -1.4301 h -3.3771 c -0.0689,-0.0000 -0.1034,-0.0345 -0.1551 -0.1034l -0.1378,-0.1895 l -0.2068,-0.3618 c -0.0172,-0.0000 -0.0172,-0.0172 -0.0172 -0.0345c 0.0000,-0.0172 0.0172,-0.0345 0.0345 -0.0517c 1.1199,-1.2406 3.1014,-5.0828 3.7217 -6.4957c 0.0172,-0.0689 0.0517,-0.0861 0.1206 -0.0861c 0.0172,-0.0000 0.3963,0.1551 0.6030 0.1895c -0.7753,2.0848 -2.0504,4.3247 -3.3081 6.3234h 2.7223 v -2.6706 ZM 453.9575,50.0355 ZM 455.7494,48.3987 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 457.7308,50.0355 ZM 462.1761,43.9189 c 0.0000,-0.1206 0.0172,-0.2584 0.1723 -0.3446c 0.1895,-0.1378 0.4997,-0.2929 0.7581 -0.2929c 0.2240,-0.0000 0.2412,0.1895 0.2412 0.5341v 2.7740 h 1.3956 l -0.1034,0.8098 h -1.2922 v 1.4301 c 0.0000,0.4824 0.0689,0.7237 0.5686 0.7237h 0.4652 c 0.1034,-0.0000 0.1206,0.0861 0.1206 0.1206v 0.3791 c 0.0000,-0.0000 -1.1027,-0.0345 -1.8264 -0.0345c -0.6547,-0.0000 -1.6713,0.0345 -1.6713 0.0345v -0.3791 c 0.0000,-0.0345 0.0172,-0.1206 0.1206 -0.1206h 0.4652 c 0.5341,-0.0000 0.5858,-0.2240 0.5858 -0.7237v -1.4301 h -3.3771 c -0.0689,-0.0000 -0.1034,-0.0345 -0.1551 -0.1034l -0.1378,-0.1895 l -0.2068,-0.3618 c -0.0172,-0.0000 -0.0172,-0.0172 -0.0172 -0.0345c 0.0000,-0.0172 0.0172,-0.0345 0.0345 -0.0517c 1.1199,-1.2406 3.1014,-5.0828 3.7217 -6.4957c 0.0172,-0.0689 0.0517,-0.0861 0.1206 -0.0861c 0.0172,-0.0000 0.3963,0.1551 0.6030 0.1895c -0.7753,2.0848 -2.0504,4.3247 -3.3081 6.3234h 2.7223 v -2.6706 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 457.5758,59.7403 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 446.4108,84.6676 ZM 450.8561,78.5510 c 0.0000,-0.1206 0.0172,-0.2584 0.1723 -0.3446c 0.1895,-0.1378 0.4997,-0.2929 0.7581 -0.2929c 0.2240,-0.0000 0.2412,0.1895 0.2412 0.5341v 2.7740 h 1.3956 l -0.1034,0.8098 h -1.2922 v 1.4301 c 0.0000,0.4824 0.0689,0.7237 0.5686 0.7237h 0.4652 c 0.1034,-0.0000 0.1206,0.0861 0.1206 0.1206v 0.3791 c 0.0000,-0.0000 -1.1027,-0.0345 -1.8264 -0.0345c -0.6547,-0.0000 -1.6713,0.0345 -1.6713 0.0345v -0.3791 c 0.0000,-0.0345 0.0172,-0.1206 0.1206 -0.1206h 0.4652 c 0.5341,-0.0000 0.5858,-0.2240 0.5858 -0.7237v -1.4301 h -3.3771 c -0.0689,-0.0000 -0.1034,-0.0345 -0.1551 -0.1034l -0.1378,-0.1895 l -0.2068,-0.3618 c -0.0172,-0.0000 -0.0172,-0.0172 -0.0172 -0.0345c 0.0000,-0.0172 0.0172,-0.0345 0.0345 -0.0517c 1.1199,-1.2406 3.1014,-5.0828 3.7217 -6.4957c 0.0172,-0.0689 0.0517,-0.0861 0.1206 -0.0861c 0.0172,-0.0000 0.3963,0.1551 0.6030 0.1895c -0.7753,2.0848 -2.0504,4.3247 -3.3081 6.3234h 2.7223 v -2.6706 ZM 453.9575,84.6676 ZM 455.7494,83.0307 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 457.7308,84.6676 ZM 461.4525,75.2428 c -0.4307,-0.0000 -1.6885,0.2412 -1.6885 1.2922c 0.0000,0.3101 -0.1206,0.8443 -0.5858 0.8443c -0.4480,-0.0000 -0.4824,-0.4997 -0.4824 -0.5514c 0.0000,-0.5341 0.7064,-2.1193 3.1014 -2.1193c 1.6713,-0.0000 2.1710,1.0510 2.1710 1.7402c 0.0000,0.4307 -0.1378,1.2922 -1.6885 2.2743c 0.9649,0.1551 2.2399,0.8615 2.2399 2.6534c 0.0000,2.2743 -1.7230,3.4977 -3.6700 3.4977c -0.9821,-0.0000 -2.3605,-0.4307 -2.3605 -1.0855c 0.0000,-0.2584 0.2584,-0.5514 0.6030 -0.5514c 0.3274,-0.0000 0.4824,0.1723 0.6375 0.3963c 0.1895,0.2929 0.4997,0.7064 1.3267 0.7064c 0.5686,-0.0000 2.1882,-0.5686 2.1882 -2.7395c 0.0000,-1.8436 -1.2922,-2.1365 -2.2227 -2.1365c -0.1551,-0.0000 -0.3446,0.0345 -0.5341 0.0689l -0.0689,-0.5169 c 1.3267,-0.2240 2.4294,-1.5162 2.4294 -2.3088c 0.0000,-0.9821 -0.6892,-1.4645 -1.3956 -1.4645Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 457.5758,94.3723 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 446.4108,119.2996 ZM 450.8561,113.1830 c 0.0000,-0.1206 0.0172,-0.2584 0.1723 -0.3446c 0.1895,-0.1378 0.4997,-0.2929 0.7581 -0.2929c 0.2240,-0.0000 0.2412,0.1895 0.2412 0.5341v 2.7740 h 1.3956 l -0.1034,0.8098 h -1.2922 v 1.4301 c 0.0000,0.4824 0.0689,0.7237 0.5686 0.7237h 0.4652 c 0.1034,-0.0000 0.1206,0.0861 0.1206 0.1206v 0.3791 c 0.0000,-0.0000 -1.1027,-0.0345 -1.8264 -0.0345c -0.6547,-0.0000 -1.6713,0.0345 -1.6713 0.0345v -0.3791 c 0.0000,-0.0345 0.0172,-0.1206 0.1206 -0.1206h 0.4652 c 0.5341,-0.0000 0.5858,-0.2240 0.5858 -0.7237v -1.4301 h -3.3771 c -0.0689,-0.0000 -0.1034,-0.0345 -0.1551 -0.1034l -0.1378,-0.1895 l -0.2068,-0.3618 c -0.0172,-0.0000 -0.0172,-0.0172 -0.0172 -0.0345c 0.0000,-0.0172 0.0172,-0.0345 0.0345 -0.0517c 1.1199,-1.2406 3.1014,-5.0828 3.7217 -6.4957c 0.0172,-0.0689 0.0517,-0.0861 0.1206 -0.0861c 0.0172,-0.0000 0.3963,0.1551 0.6030 0.1895c -0.7753,2.0848 -2.0504,4.3247 -3.3081 6.3234h 2.7223 v -2.6706 ZM 453.9575,119.2996 ZM 455.7494,117.6628 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 457.7308,119.2996 ZM 458.7302,111.6668 c 0.0000,-0.9821 0.9476,-2.3260 2.7568 -2.3260c 1.3267,-0.0000 2.8774,0.4997 2.8774 2.4811c 0.0000,1.3095 -0.6720,1.9642 -1.6024 2.8602l -1.6368,1.5851 c -0.0861,0.0861 -1.2406,1.2233 -1.2406 2.0331h 2.9291 c 0.5858,-0.0000 0.8960,-0.2929 1.1372 -1.2406l 0.4307,0.0689 l -0.3446,2.1710 h -5.3240 c 0.0000,-0.9649 0.1551,-1.7058 1.7574 -3.3426l 1.2061,-1.1889 c 0.9649,-0.9821 1.3612,-1.8264 1.3612 -2.8774c 0.0000,-1.5679 -1.0683,-2.0159 -1.6541 -2.0159c -1.1889,-0.0000 -1.5162,0.6203 -1.5162 1.0338c 0.0000,0.1378 0.0345,0.2757 0.0689 0.3963c 0.0345,0.1206 0.0689,0.2412 0.0689 0.3791c 0.0000,0.4480 -0.3446,0.6203 -0.6203 0.6203c -0.3791,-0.0000 -0.6547,-0.2929 -0.6547 -0.6375Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 457.5758,129.0043 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 446.4108,153.9316 ZM 450.8561,147.8150 c 0.0000,-0.1206 0.0172,-0.2584 0.1723 -0.3446c 0.1895,-0.1378 0.4997,-0.2929 0.7581 -0.2929c 0.2240,-0.0000 0.2412,0.1895 0.2412 0.5341v 2.7740 h 1.3956 l -0.1034,0.8098 h -1.2922 v 1.4301 c 0.0000,0.4824 0.0689,0.7237 0.5686 0.7237h 0.4652 c 0.1034,-0.0000 0.1206,0.0861 0.1206 0.1206v 0.3791 c 0.0000,-0.0000 -1.1027,-0.0345 -1.8264 -0.0345c -0.6547,-0.0000 -1.6713,0.0345 -1.6713 0.0345v -0.3791 c 0.0000,-0.0345 0.0172,-0.1206 0.1206 -0.1206h 0.4652 c 0.5341,-0.0000 0.5858,-0.2240 0.5858 -0.7237v -1.4301 h -3.3771 c -0.0689,-0.0000 -0.1034,-0.0345 -0.1551 -0.1034l -0.1378,-0.1895 l -0.2068,-0.3618 c -0.0172,-0.0000 -0.0172,-0.0172 -0.0172 -0.0345c 0.0000,-0.0172 0.0172,-0.0345 0.0345 -0.0517c 1.1199,-1.2406 3.1014,-5.0828 3.7217 -6.4957c 0.0172,-0.0689 0.0517,-0.0861 0.1206 -0.0861c 0.0172,-0.0000 0.3963,0.1551 0.6030 0.1895c -0.7753,2.0848 -2.0504,4.3247 -3.3081 6.3234h 2.7223 v -2.6706 ZM 453.9575,153.9316 ZM 455.7494,152.2948 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 457.7308,153.9316 ZM 460.9700,145.7130 c -0.3274,-0.0000 -1.0855,0.3101 -1.4645 0.4824l -0.2068,-0.5341 c 1.5162,-0.7064 2.1020,-1.0683 2.9635 -1.6885h 0.3274 v 8.6666 c 0.0000,0.6203 0.0861,0.7926 0.6547 0.7926h 0.8960 c 0.0517,-0.0000 0.1378,0.0345 0.1378 0.1378v 0.3791 l -2.3605,-0.0345 l -2.3950,0.0345 v -0.3791 c 0.0172,-0.0517 0.0345,-0.1378 0.1378 -0.1378h 1.0338 c 0.6547,-0.0000 0.6547,-0.2929 0.6547 -0.7926v -5.9271 c 0.0000,-0.5858 0.0000,-0.9993 -0.3791 -0.9993Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 457.5758,163.6364 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 446.4108,188.5637 ZM 450.8561,182.4471 c 0.0000,-0.1206 0.0172,-0.2584 0.1723 -0.3446c 0.1895,-0.1378 0.4997,-0.2929 0.7581 -0.2929c 0.2240,-0.0000 0.2412,0.1895 0.2412 0.5341v 2.7740 h 1.3956 l -0.1034,0.8098 h -1.2922 v 1.4301 c 0.0000,0.4824 0.0689,0.7237 0.5686 0.7237h 0.4652 c 0.1034,-0.0000 0.1206,0.0861 0.1206 0.1206v 0.3791 c 0.0000,-0.0000 -1.1027,-0.0345 -1.8264 -0.0345c -0.6547,-0.0000 -1.6713,0.0345 -1.6713 0.0345v -0.3791 c 0.0000,-0.0345 0.0172,-0.1206 0.1206 -0.1206h 0.4652 c 0.5341,-0.0000 0.5858,-0.2240 0.5858 -0.7237v -1.4301 h -3.3771 c -0.0689,-0.0000 -0.1034,-0.0345 -0.1551 -0.1034l -0.1378,-0.1895 l -0.2068,-0.3618 c -0.0172,-0.0000 -0.0172,-0.0172 -0.0172 -0.0345c 0.0000,-0.0172 0.0172,-0.0345 0.0345 -0.0517c 1.1199,-1.2406 3.1014,-5.0828 3.7217 -6.4957c 0.0172,-0.0689 0.0517,-0.0861 0.1206 -0.0861c 0.0172,-0.0000 0.3963,0.1551 0.6030 0.1895c -0.7753,2.0848 -2.0504,4.3247 -3.3081 6.3234h 2.7223 v -2.6706 ZM 453.9575,188.5637 ZM 455.7494,186.9268 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 457.7308,188.5637 ZM 461.5042,179.2079 c -0.7409,-0.0000 -1.8264,0.7237 -1.8264 4.7382c 0.0000,1.4128 0.2584,4.2558 1.7747 4.2558c 0.2929,-0.0000 1.1199,-0.1895 1.4818 -1.5335c 0.2240,-0.8270 0.3446,-1.8608 0.3446 -3.3598c 0.0000,-2.1882 -0.5514,-3.4115 -1.0510 -3.8423c -0.1895,-0.1723 -0.4480,-0.2584 -0.7237 -0.2584ZM 461.5042,179.2079 ZM 461.4352,188.7704 c -1.8436,-0.0000 -3.0841,-2.3605 -3.0841 -4.9967c 0.0000,-3.2220 1.5335,-5.1690 3.1531 -5.1690c 0.7409,-0.0000 1.4818,0.4652 1.9814 1.1372c 0.7237,0.9649 1.1027,2.2571 1.1027 3.8767c 0.0000,3.8250 -1.8953,5.1517 -3.1531 5.1517Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 457.5758,198.2684 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 342.5147,15.4035 ZM 346.2364,5.9788 c -0.4307,-0.0000 -1.6885,0.2412 -1.6885 1.2922c 0.0000,0.3101 -0.1206,0.8443 -0.5858 0.8443c -0.4480,-0.0000 -0.4824,-0.4997 -0.4824 -0.5514c 0.0000,-0.5341 0.7064,-2.1193 3.1014 -2.1193c 1.6713,-0.0000 2.1710,1.0510 2.1710 1.7402c 0.0000,0.4307 -0.1378,1.2922 -1.6885 2.2743c 0.9649,0.1551 2.2399,0.8615 2.2399 2.6534c 0.0000,2.2743 -1.7230,3.4977 -3.6700 3.4977c -0.9821,-0.0000 -2.3605,-0.4307 -2.3605 -1.0855c 0.0000,-0.2584 0.2584,-0.5514 0.6030 -0.5514c 0.3274,-0.0000 0.4824,0.1723 0.6375 0.3963c 0.1895,0.2929 0.4997,0.7064 1.3267 0.7064c 0.5686,-0.0000 2.1882,-0.5686 2.1882 -2.7395c 0.0000,-1.8436 -1.2922,-2.1365 -2.2227 -2.1365c -0.1551,-0.0000 -0.3446,0.0345 -0.5341 0.0689l -0.0689,-0.5169 c 1.3267,-0.2240 2.4294,-1.5162 2.4294 -2.3088c 0.0000,-0.9821 -0.6892,-1.4645 -1.3956 -1.4645ZM 350.0614,15.4035 ZM 351.8533,13.7667 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 353.8347,15.4035 ZM 359.1588,12.4917 c 0.0000,-1.7747 -0.9649,-2.6534 -2.0331 -2.6534c -0.7926,-0.0000 -1.3956,0.1206 -2.0676 0.3963l 0.5514,-4.7038 c 0.5686,0.0517 1.1544,0.0689 1.7574 0.0689c 0.8615,-0.0000 1.7574,-0.0517 2.6879 -0.1551l 0.1034,0.0517 l -0.2584,1.1199 c -0.6720,0.0689 -1.2233,0.0861 -1.7058 0.0861c -0.7753,-0.0000 -1.3612,-0.0689 -1.9642 -0.1378l -0.3274,2.7223 c 0.3618,-0.1378 0.9821,-0.2584 1.6541 -0.2584c 1.8264,-0.0000 2.8429,1.5851 2.8429 3.1703c 0.0000,1.9297 -1.3439,3.4115 -3.2909 3.4115c -0.9821,-0.0000 -2.4122,-0.5514 -2.4122 -1.2233c 0.0000,-0.3274 0.2757,-0.5514 0.5858 -0.5514c 0.3446,-0.0000 0.5686,0.2584 0.7753 0.5341c 0.2584,0.3101 0.5341,0.6547 1.0855 0.6547c 1.1027,-0.0000 2.0159,-1.0338 2.0159 -2.5328Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 353.6797,25.1082 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 342.5147,50.0355 ZM 346.2364,40.6108 c -0.4307,-0.0000 -1.6885,0.2412 -1.6885 1.2922c 0.0000,0.3101 -0.1206,0.8443 -0.5858 0.8443c -0.4480,-0.0000 -0.4824,-0.4997 -0.4824 -0.5514c 0.0000,-0.5341 0.7064,-2.1193 3.1014 -2.1193c 1.6713,-0.0000 2.1710,1.0510 2.1710 1.7402c 0.0000,0.4307 -0.1378,1.2922 -1.6885 2.2743c 0.9649,0.1551 2.2399,0.8615 2.2399 2.6534c 0.0000,2.2743 -1.7230,3.4977 -3.6700 3.4977c -0.9821,-0.0000 -2.3605,-0.4307 -2.3605 -1.0855c 0.0000,-0.2584 0.2584,-0.5514 0.6030 -0.5514c 0.3274,-0.0000 0.4824,0.1723 0.6375 0.3963c 0.1895,0.2929 0.4997,0.7064 1.3267 0.7064c 0.5686,-0.0000 2.1882,-0.5686 2.1882 -2.7395c 0.0000,-1.8436 -1.2922,-2.1365 -2.2227 -2.1365c -0.1551,-0.0000 -0.3446,0.0345 -0.5341 0.0689l -0.0689,-0.5169 c 1.3267,-0.2240 2.4294,-1.5162 2.4294 -2.3088c 0.0000,-0.9821 -0.6892,-1.4645 -1.3956 -1.4645ZM 350.0614,50.0355 ZM 351.8533,48.3987 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 353.8347,50.0355 ZM 358.2800,43.9189 c 0.0000,-0.1206 0.0172,-0.2584 0.1723 -0.3446c 0.1895,-0.1378 0.4997,-0.2929 0.7581 -0.2929c 0.2240,-0.0000 0.2412,0.1895 0.2412 0.5341v 2.7740 h 1.3956 l -0.1034,0.8098 h -1.2922 v 1.4301 c 0.0000,0.4824 0.0689,0.7237 0.5686 0.7237h 0.4652 c 0.1034,-0.0000 0.1206,0.0861 0.1206 0.1206v 0.3791 c 0.0000,-0.0000 -1.1027,-0.0345 -1.8264 -0.0345c -0.6547,-0.0000 -1.6713,0.0345 -1.6713 0.0345v -0.3791 c 0.0000,-0.0345 0.0172,-0.1206 0.1206 -0.1206h 0.4652 c 0.5341,-0.0000 0.5858,-0.2240 0.5858 -0.7237v -1.4301 h -3.3771 c -0.0689,-0.0000 -0.1034,-0.0345 -0.1551 -0.1034l -0.1378,-0.1895 l -0.2068,-0.3618 c -0.0172,-0.0000 -0.0172,-0.0172 -0.0172 -0.0345c 0.0000,-0.0172 0.0172,-0.0345 0.0345 -0.0517c 1.1199,-1.2406 3.1014,-5.0828 3.7217 -6.4957c 0.0172,-0.0689 0.0517,-0.0861 0.1206 -0.0861c 0.0172,-0.0000 0.3963,0.1551 0.6030 0.1895c -0.7753,2.0848 -2.0504,4.3247 -3.3081 6.3234h 2.7223 v -2.6706 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 353.6797,59.7403 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 342.5147,84.6676 ZM 346.2364,75.2428 c -0.4307,-0.0000 -1.6885,0.2412 -1.6885 1.2922c 0.0000,0.3101 -0.1206,0.8443 -0.5858 0.8443c -0.4480,-0.0000 -0.4824,-0.4997 -0.4824 -0.5514c 0.0000,-0.5341 0.7064,-2.1193 3.1014 -2.1193c 1.6713,-0.0000 2.1710,1.0510 2.1710 1.7402c 0.0000,0.4307 -0.1378,1.2922 -1.6885 2.2743c 0.9649,0.1551 2.2399,0.8615 2.2399 2.6534c 0.0000,2.2743 -1.7230,3.4977 -3.6700 3.4977c -0.9821,-0.0000 -2.3605,-0.4307 -2.3605 -1.0855c 0.0000,-0.2584 0.2584,-0.5514 0.6030 -0.5514c 0.3274,-0.0000 0.4824,0.1723 0.6375 0.3963c 0.1895,0.2929 0.4997,0.7064 1.3267 0.7064c 0.5686,-0.0000 2.1882,-0.5686 2.1882 -2.7395c 0.0000,-1.8436 -1.2922,-2.1365 -2.2227 -2.1365c -0.1551,-0.0000 -0.3446,0.0345 -0.5341 0.0689l -0.0689,-0.5169 c 1.3267,-0.2240 2.4294,-1.5162 2.4294 -2.3088c 0.0000,-0.9821 -0.6892,-1.4645 -1.3956 -1.4645ZM 350.0614,84.6676 ZM 351.8533,83.0307 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 353.8347,84.6676 ZM 357.5564,75.2428 c -0.4307,-0.0000 -1.6885,0.2412 -1.6885 1.2922c 0.0000,0.3101 -0.1206,0.8443 -0.5858 0.8443c -0.4480,-0.0000 -0.4824,-0.4997 -0.4824 -0.5514c 0.0000,-0.5341 0.7064,-2.1193 3.1014 -2.1193c 1.6713,-0.0000 2.1710,1.0510 2.1710 1.7402c 0.0000,0.4307 -0.1378,1.2922 -1.6885 2.2743c 0.9649,0.1551 2.2399,0.8615 2.2399 2.6534c 0.0000,2.2743 -1.7230,3.4977 -3.6700 3.4977c -0.9821,-0.0000 -2.3605,-0.4307 -2.3605 -1.0855c 0.0000,-0.2584 0.2584,-0.5514 0.6030 -0.5514c 0.3274,-0.0000 0.4824,0.1723 0.6375 0.3963c 0.1895,0.2929 0.4997,0.7064 1.3267 0.7064c 0.5686,-0.0000 2.1882,-0.5686 2.1882 -2.7395c 0.0000,-1.8436 -1.2922,-2.1365 -2.2227 -2.1365c -0.1551,-0.0000 -0.3446,0.0345 -0.5341 0.0689l -0.0689,-0.5169 c 1.3267,-0.2240 2.4294,-1.5162 2.4294 -2.3088c 0.0000,-0.9821 -0.6892,-1.4645 -1.3956 -1.4645Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 353.6797,94.3723 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 342.5147,119.2996 ZM 346.2364,109.8749 c -0.4307,-0.0000 -1.6885,0.2412 -1.6885 1.2922c 0.0000,0.3101 -0.1206,0.8443 -0.5858 0.8443c -0.4480,-0.0000 -0.4824,-0.4997 -0.4824 -0.5514c 0.0000,-0.5341 0.7064,-2.1193 3.1014 -2.1193c 1.6713,-0.0000 2.1710,1.0510 2.1710 1.7402c 0.0000,0.4307 -0.1378,1.2922 -1.6885 2.2743c 0.9649,0.1551 2.2399,0.8615 2.2399 2.6534c 0.0000,2.2743 -1.7230,3.4977 -3.6700 3.4977c -0.9821,-0.0000 -2.3605,-0.4307 -2.3605 -1.0855c 0.0000,-0.2584 0.2584,-0.5514 0.6030 -0.5514c 0.3274,-0.0000 0.4824,0.1723 0.6375 0.3963c 0.1895,0.2929 0.4997,0.7064 1.3267 0.7064c 0.5686,-0.0000 2.1882,-0.5686 2.1882 -2.7395c 0.0000,-1.8436 -1.2922,-2.1365 -2.2227 -2.1365c -0.1551,-0.0000 -0.3446,0.0345 -0.5341 0.0689l -0.0689,-0.5169 c 1.3267,-0.2240 2.4294,-1.5162 2.4294 -2.3088c 0.0000,-0.9821 -0.6892,-1.4645 -1.3956 -1.4645ZM 350.0614,119.2996 ZM 351.8533,117.6628 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 353.8347,119.2996 ZM 354.8341,111.6668 c 0.0000,-0.9821 0.9476,-2.3260 2.7568 -2.3260c 1.3267,-0.0000 2.8774,0.4997 2.8774 2.4811c 0.0000,1.3095 -0.6720,1.9642 -1.6024 2.8602l -1.6368,1.5851 c -0.0861,0.0861 -1.2406,1.2233 -1.2406 2.0331h 2.9291 c 0.5858,-0.0000 0.8960,-0.2929 1.1372 -1.2406l 0.4307,0.0689 l -0.3446,2.1710 h -5.3240 c 0.0000,-0.9649 0.1551,-1.7058 1.7574 -3.3426l 1.2061,-1.1889 c 0.9649,-0.9821 1.3612,-1.8264 1.3612 -2.8774c 0.0000,-1.5679 -1.0683,-2.0159 -1.6541 -2.0159c -1.1889,-0.0000 -1.5162,0.6203 -1.5162 1.0338c 0.0000,0.1378 0.0345,0.2757 0.0689 0.3963c 0.0345,0.1206 0.0689,0.2412 0.0689 0.3791c 0.0000,0.4480 -0.3446,0.6203 -0.6203 0.6203c -0.3791,-0.0000 -0.6547,-0.2929 -0.6547 -0.6375Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 353.6797,129.0043 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 342.5147,153.9316 ZM 346.2364,144.5069 c -0.4307,-0.0000 -1.6885,0.2412 -1.6885 1.2922c 0.0000,0.3101 -0.1206,0.8443 -0.5858 0.8443c -0.4480,-0.0000 -0.4824,-0.4997 -0.4824 -0.5514c 0.0000,-0.5341 0.7064,-2.1193 3.1014 -2.1193c 1.6713,-0.0000 2.1710,1.0510 2.1710 1.7402c 0.0000,0.4307 -0.1378,1.2922 -1.6885 2.2743c 0.9649,0.1551 2.2399,0.8615 2.2399 2.6534c 0.0000,2.2743 -1.7230,3.4977 -3.6700 3.4977c -0.9821,-0.0000 -2.3605,-0.4307 -2.3605 -1.0855c 0.0000,-0.2584 0.2584,-0.5514 0.6030 -0.5514c 0.3274,-0.0000 0.4824,0.1723 0.6375 0.3963c 0.1895,0.2929 0.4997,0.7064 1.3267 0.7064c 0.5686,-0.0000 2.1882,-0.5686 2.1882 -2.7395c 0.0000,-1.8436 -1.2922,-2.1365 -2.2227 -2.1365c -0.1551,-0.0000 -0.3446,0.0345 -0.5341 0.0689l -0.0689,-0.5169 c 1.3267,-0.2240 2.4294,-1.5162 2.4294 -2.3088c 0.0000,-0.9821 -0.6892,-1.4645 -1.3956 -1.4645ZM 350.0614,153.9316 ZM 351.8533,152.2948 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 353.8347,153.9316 ZM 357.0739,145.7130 c -0.3274,-0.0000 -1.0855,0.3101 -1.4645 0.4824l -0.2068,-0.5341 c 1.5162,-0.7064 2.1020,-1.0683 2.9635 -1.6885h 0.3274 v 8.6666 c 0.0000,0.6203 0.0861,0.7926 0.6547 0.7926h 0.8960 c 0.0517,-0.0000 0.1378,0.0345 0.1378 0.1378v 0.3791 l -2.3605,-0.0345 l -2.3950,0.0345 v -0.3791 c 0.0172,-0.0517 0.0345,-0.1378 0.1378 -0.1378h 1.0338 c 0.6547,-0.0000 0.6547,-0.2929 0.6547 -0.7926v -5.9271 c 0.0000,-0.5858 0.0000,-0.9993 -0.3791 -0.9993Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 353.6797,163.6364 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 342.5147,188.5637 ZM 346.2364,179.1389 c -0.4307,-0.0000 -1.6885,0.2412 -1.6885 1.2922c 0.0000,0.3101 -0.1206,0.8443 -0.5858 0.8443c -0.4480,-0.0000 -0.4824,-0.4997 -0.4824 -0.5514c 0.0000,-0.5341 0.7064,-2.1193 3.1014 -2.1193c 1.6713,-0.0000 2.1710,1.0510 2.1710 1.7402c 0.0000,0.4307 -0.1378,1.2922 -1.6885 2.2743c 0.9649,0.1551 2.2399,0.8615 2.2399 2.6534c 0.0000,2.2743 -1.7230,3.4977 -3.6700 3.4977c -0.9821,-0.0000 -2.3605,-0.4307 -2.3605 -1.0855c 0.0000,-0.2584 0.2584,-0.5514 0.6030 -0.5514c 0.3274,-0.0000 0.4824,0.1723 0.6375 0.3963c 0.1895,0.2929 0.4997,0.7064 1.3267 0.7064c 0.5686,-0.0000 2.1882,-0.5686 2.1882 -2.7395c 0.0000,-1.8436 -1.2922,-2.1365 -2.2227 -2.1365c -0.1551,-0.0000 -0.3446,0.0345 -0.5341 0.0689l -0.0689,-0.5169 c 1.3267,-0.2240 2.4294,-1.5162 2.4294 -2.3088c 0.0000,-0.9821 -0.6892,-1.4645 -1.3956 -1.4645ZM 350.0614,188.5637 ZM 351.8533,186.9268 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 353.8347,188.5637 ZM 357.6081,179.2079 c -0.7409,-0.0000 -1.8264,0.7237 -1.8264 4.7382c 0.0000,1.4128 0.2584,4.2558 1.7747 4.2558c 0.2929,-0.0000 1.1199,-0.1895 1.4818 -1.5335c 0.2240,-0.8270 0.3446,-1.8608 0.3446 -3.3598c 0.0000,-2.1882 -0.5514,-3.4115 -1.0510 -3.8423c -0.1895,-0.1723 -0.4480,-0.2584 -0.7237 -0.2584ZM 357.6081,179.2079 ZM 357.5391,188.7704 c -1.8436,-0.0000 -3.0841,-2.3605 -3.0841 -4.9967c 0.0000,-3.2220 1.5335,-5.1690 3.1531 -5.1690c 0.7409,-0.0000 1.4818,0.4652 1.9814 1.1372c 0.7237,0.9649 1.1027,2.2571 1.1027 3.8767c 0.0000,3.8250 -1.8953,5.1517 -3.1531 5.1517Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 353.6797,198.2684 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 238.6186,15.4035 ZM 239.6179,7.7707 c 0.0000,-0.9821 0.9476,-2.3260 2.7568 -2.3260c 1.3267,-0.0000 2.8774,0.4997 2.8774 2.4811c 0.0000,1.3095 -0.6720,1.9642 -1.6024 2.8602l -1.6368,1.5851 c -0.0861,0.0861 -1.2406,1.2233 -1.2406 2.0331h 2.9291 c 0.5858,-0.0000 0.8960,-0.2929 1.1372 -1.2406l 0.4307,0.0689 l -0.3446,2.1710 h -5.3240 c 0.0000,-0.9649 0.1551,-1.7058 1.7574 -3.3426l 1.2061,-1.1889 c 0.9649,-0.9821 1.3612,-1.8264 1.3612 -2.8774c 0.0000,-1.5679 -1.0683,-2.0159 -1.6541 -2.0159c -1.1889,-0.0000 -1.5162,0.6203 -1.5162 1.0338c 0.0000,0.1378 0.0345,0.2757 0.0689 0.3963c 0.0345,0.1206 0.0689,0.2412 0.0689 0.3791c 0.0000,0.4480 -0.3446,0.6203 -0.6203 0.6203c -0.3791,-0.0000 -0.6547,-0.2929 -0.6547 -0.6375ZM 246.1653,15.4035 ZM 247.9572,13.7667 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 249.9386,15.4035 ZM 255.2626,12.4917 c 0.0000,-1.7747 -0.9649,-2.6534 -2.0331 -2.6534c -0.7926,-0.0000 -1.3956,0.1206 -2.0676 0.3963l 0.5514,-4.7038 c 0.5686,0.0517 1.1544,0.0689 1.7574 0.0689c 0.8615,-0.0000 1.7574,-0.0517 2.6879 -0.1551l 0.1034,0.0517 l -0.2584,1.1199 c -0.6720,0.0689 -1.2233,0.0861 -1.7058 0.0861c -0.7753,-0.0000 -1.3612,-0.0689 -1.9642 -0.1378l -0.3274,2.7223 c 0.3618,-0.1378 0.9821,-0.2584 1.6541 -0.2584c 1.8264,-0.0000 2.8429,1.5851 2.8429 3.1703c 0.0000,1.9297 -1.3439,3.4115 -3.2909 3.4115c -0.9821,-0.0000 -2.4122,-0.5514 -2.4122 -1.2233c 0.0000,-0.3274 0.2757,-0.5514 0.5858 -0.5514c 0.3446,-0.0000 0.5686,0.2584 0.7753 0.5341c 0.2584,0.3101 0.5341,0.6547 1.0855 0.6547c 1.1027,-0.0000 2.0159,-1.0338 2.0159 -2.5328Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 249.7835,25.1082 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 238.6186,50.0355 ZM 239.6179,42.4027 c 0.0000,-0.9821 0.9476,-2.3260 2.7568 -2.3260c 1.3267,-0.0000 2.8774,0.4997 2.8774 2.4811c 0.0000,1.3095 -0.6720,1.9642 -1.6024 2.8602l -1.6368,1.5851 c -0.0861,0.0861 -1.2406,1.2233 -1.2406 2.0331h 2.9291 c 0.5858,-0.0000 0.8960,-0.2929 1.1372 -1.2406l 0.4307,0.0689 l -0.3446,2.1710 h -5.3240 c 0.0000,-0.9649 0.1551,-1.7058 1.7574 -3.3426l 1.2061,-1.1889 c 0.9649,-0.9821 1.3612,-1.8264 1.3612 -2.8774c 0.0000,-1.5679 -1.0683,-2.0159 -1.6541 -2.0159c -1.1889,-0.0000 -1.5162,0.6203 -1.5162 1.0338c 0.0000,0.1378 0.0345,0.2757 0.0689 0.3963c 0.0345,0.1206 0.0689,0.2412 0.0689 0.3791c 0.0000,0.4480 -0.3446,0.6203 -0.6203 0.6203c -0.3791,-0.0000 -0.6547,-0.2929 -0.6547 -0.6375ZM 246.1653,50.0355 ZM 247.9572,48.3987 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 249.9386,50.0355 ZM 254.3839,43.9189 c 0.0000,-0.1206 0.0172,-0.2584 0.1723 -0.3446c 0.1895,-0.1378 0.4997,-0.2929 0.7581 -0.2929c 0.2240,-0.0000 0.2412,0.1895 0.2412 0.5341v 2.7740 h 1.3956 l -0.1034,0.8098 h -1.2922 v 1.4301 c 0.0000,0.4824 0.0689,0.7237 0.5686 0.7237h 0.4652 c 0.1034,-0.0000 0.1206,0.0861 0.1206 0.1206v 0.3791 c 0.0000,-0.0000 -1.1027,-0.0345 -1.8264 -0.0345c -0.6547,-0.0000 -1.6713,0.0345 -1.6713 0.0345v -0.3791 c 0.0000,-0.0345 0.0172,-0.1206 0.1206 -0.1206h 0.4652 c 0.5341,-0.0000 0.5858,-0.2240 0.5858 -0.7237v -1.4301 h -3.3771 c -0.0689,-0.0000 -0.1034,-0.0345 -0.1551 -0.1034l -0.1378,-0.1895 l -0.2068,-0.3618 c -0.0172,-0.0000 -0.0172,-0.0172 -0.0172 -0.0345c 0.0000,-0.0172 0.0172,-0.0345 0.0345 -0.0517c 1.1199,-1.2406 3.1014,-5.0828 3.7217 -6.4957c 0.0172,-0.0689 0.0517,-0.0861 0.1206 -0.0861c 0.0172,-0.0000 0.3963,0.1551 0.6030 0.1895c -0.7753,2.0848 -2.0504,4.3247 -3.3081 6.3234h 2.7223 v -2.6706 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 249.7835,59.7403 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 238.6186,84.6676 ZM 239.6179,77.0347 c 0.0000,-0.9821 0.9476,-2.3260 2.7568 -2.3260c 1.3267,-0.0000 2.8774,0.4997 2.8774 2.4811c 0.0000,1.3095 -0.6720,1.9642 -1.6024 2.8602l -1.6368,1.5851 c -0.0861,0.0861 -1.2406,1.2233 -1.2406 2.0331h 2.9291 c 0.5858,-0.0000 0.8960,-0.2929 1.1372 -1.2406l 0.4307,0.0689 l -0.3446,2.1710 h -5.3240 c 0.0000,-0.9649 0.1551,-1.7058 1.7574 -3.3426l 1.2061,-1.1889 c 0.9649,-0.9821 1.3612,-1.8264 1.3612 -2.8774c 0.0000,-1.5679 -1.0683,-2.0159 -1.6541 -2.0159c -1.1889,-0.0000 -1.5162,0.6203 -1.5162 1.0338c 0.0000,0.1378 0.0345,0.2757 0.0689 0.3963c 0.0345,0.1206 0.0689,0.2412 0.0689 0.3791c 0.0000,0.4480 -0.3446,0.6203 -0.6203 0.6203c -0.3791,-0.0000 -0.6547,-0.2929 -0.6547 -0.6375ZM 246.1653,84.6676 ZM 247.9572,83.0307 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 249.9386,84.6676 ZM 253.6603,75.2428 c -0.4307,-0.0000 -1.6885,0.2412 -1.6885 1.2922c 0.0000,0.3101 -0.1206,0.8443 -0.5858 0.8443c -0.4480,-0.0000 -0.4824,-0.4997 -0.4824 -0.5514c 0.0000,-0.5341 0.7064,-2.1193 3.1014 -2.1193c 1.6713,-0.0000 2.1710,1.0510 2.1710 1.7402c 0.0000,0.4307 -0.1378,1.2922 -1.6885 2.2743c 0.9649,0.1551 2.2399,0.8615 2.2399 2.6534c 0.0000,2.2743 -1.7230,3.4977 -3.6700 3.4977c -0.9821,-0.0000 -2.3605,-0.4307 -2.3605 -1.0855c 0.0000,-0.2584 0.2584,-0.5514 0.6030 -0.5514c 0.3274,-0.0000 0.4824,0.1723 0.6375 0.3963c 0.1895,0.2929 0.4997,0.7064 1.3267 0.7064c 0.5686,-0.0000 2.1882,-0.5686 2.1882 -2.7395c 0.0000,-1.8436 -1.2922,-2.1365 -2.2227 -2.1365c -0.1551,-0.0000 -0.3446,0.0345 -0.5341 0.0689l -0.0689,-0.5169 c 1.3267,-0.2240 2.4294,-1.5162 2.4294 -2.3088c 0.0000,-0.9821 -0.6892,-1.4645 -1.3956 -1.4645Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 249.7835,94.3723 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 238.6186,119.2996 ZM 239.6179,111.6668 c 0.0000,-0.9821 0.9476,-2.3260 2.7568 -2.3260c 1.3267,-0.0000 2.8774,0.4997 2.8774 2.4811c 0.0000,1.3095 -0.6720,1.9642 -1.6024 2.8602l -1.6368,1.5851 c -0.0861,0.0861 -1.2406,1.2233 -1.2406 2.0331h 2.9291 c 0.5858,-0.0000 0.8960,-0.2929 1.1372 -1.2406l 0.4307,0.0689 l -0.3446,2.1710 h -5.3240 c 0.0000,-0.9649 0.1551,-1.7058 1.7574 -3.3426l 1.2061,-1.1889 c 0.9649,-0.9821 1.3612,-1.8264 1.3612 -2.8774c 0.0000,-1.5679 -1.0683,-2.0159 -1.6541 -2.0159c -1.1889,-0.0000 -1.5162,0.6203 -1.5162 1.0338c 0.0000,0.1378 0.0345,0.2757 0.0689 0.3963c 0.0345,0.1206 0.0689,0.2412 0.0689 0.3791c 0.0000,0.4480 -0.3446,0.6203 -0.6203 0.6203c -0.3791,-0.0000 -0.6547,-0.2929 -0.6547 -0.6375ZM 246.1653,119.2996 ZM 247.9572,117.6628 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 249.9386,119.2996 ZM 250.9380,111.6668 c 0.0000,-0.9821 0.9476,-2.3260 2.7568 -2.3260c 1.3267,-0.0000 2.8774,0.4997 2.8774 2.4811c 0.0000,1.3095 -0.6720,1.9642 -1.6024 2.8602l -1.6368,1.5851 c -0.0861,0.0861 -1.2406,1.2233 -1.2406 2.0331h 2.9291 c 0.5858,-0.0000 0.8960,-0.2929 1.1372 -1.2406l 0.4307,0.0689 l -0.3446,2.1710 h -5.3240 c 0.0000,-0.9649 0.1551,-1.7058 1.7574 -3.3426l 1.2061,-1.1889 c 0.9649,-0.9821 1.3612,-1.8264 1.3612 -2.8774c 0.0000,-1.5679 -1.0683,-2.0159 -1.6541 -2.0159c -1.1889,-0.0000 -1.5162,0.6203 -1.5162 1.0338c 0.0000,0.1378 0.0345,0.2757 0.0689 0.3963c 0.0345,0.1206 0.0689,0.2412 0.0689 0.3791c 0.0000,0.4480 -0.3446,0.6203 -0.6203 0.6203c -0.3791,-0.0000 -0.6547,-0.2929 -0.6547 -0.6375Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 249.7835,129.0043 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 238.6186,153.9316 ZM 239.6179,146.2988 c 0.0000,-0.9821 0.9476,-2.3260 2.7568 -2.3260c 1.3267,-0.0000 2.8774,0.4997 2.8774 2.4811c 0.0000,1.3095 -0.6720,1.9642 -1.6024 2.8602l -1.6368,1.5851 c -0.0861,0.0861 -1.2406,1.2233 -1.2406 2.0331h 2.9291 c 0.5858,-0.0000 0.8960,-0.2929 1.1372 -1.2406l 0.4307,0.0689 l -0.3446,2.1710 h -5.3240 c 0.0000,-0.9649 0.1551,-1.7058 1.7574 -3.3426l 1.2061,-1.1889 c 0.9649,-0.9821 1.3612,-1.8264 1.3612 -2.8774c 0.0000,-1.5679 -1.0683,-2.0159 -1.6541 -2.0159c -1.1889,-0.0000 -1.5162,0.6203 -1.5162 1.0338c 0.0000,0.1378 0.0345,0.2757 0.0689 0.3963c 0.0345,0.1206 0.0689,0.2412 0.0689 0.3791c 0.0000,0.4480 -0.3446,0.6203 -0.6203 0.6203c -0.3791,-0.0000 -0.6547,-0.2929 -0.6547 -0.6375ZM 246.1653,153.9316 ZM 247.9572,152.2948 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 249.9386,153.9316 ZM 253.1778,145.7130 c -0.3274,-0.0000 -1.0855,0.3101 -1.4645 0.4824l -0.2068,-0.5341 c 1.5162,-0.7064 2.1020,-1.0683 2.9635 -1.6885h 0.3274 v 8.6666 c 0.0000,0.6203 0.0861,0.7926 0.6547 0.7926h 0.8960 c 0.0517,-0.0000 0.1378,0.0345 0.1378 0.1378v 0.3791 l -2.3605,-0.0345 l -2.3950,0.0345 v -0.3791 c 0.0172,-0.0517 0.0345,-0.1378 0.1378 -0.1378h 1.0338 c 0.6547,-0.0000 0.6547,-0.2929 0.6547 -0.7926v -5.9271 c 0.0000,-0.5858 0.0000,-0.9993 -0.3791 -0.9993Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 249.7835,163.6364 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 238.6186,188.5637 ZM 239.6179,180.9308 c 0.0000,-0.9821 0.9476,-2.3260 2.7568 -2.3260c 1.3267,-0.0000 2.8774,0.4997 2.8774 2.4811c 0.0000,1.3095 -0.6720,1.9642 -1.6024 2.8602l -1.6368,1.5851 c -0.0861,0.0861 -1.2406,1.2233 -1.2406 2.0331h 2.9291 c 0.5858,-0.0000 0.8960,-0.2929 1.1372 -1.2406l 0.4307,0.0689 l -0.3446,2.1710 h -5.3240 c 0.0000,-0.9649 0.1551,-1.7058 1.7574 -3.3426l 1.2061,-1.1889 c 0.9649,-0.9821 1.3612,-1.8264 1.3612 -2.8774c 0.0000,-1.5679 -1.0683,-2.0159 -1.6541 -2.0159c -1.1889,-0.0000 -1.5162,0.6203 -1.5162 1.0338c 0.0000,0.1378 0.0345,0.2757 0.0689 0.3963c 0.0345,0.1206 0.0689,0.2412 0.0689 0.3791c 0.0000,0.4480 -0.3446,0.6203 -0.6203 0.6203c -0.3791,-0.0000 -0.6547,-0.2929 -0.6547 -0.6375ZM 246.1653,188.5637 ZM 247.9572,186.9268 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 249.9386,188.5637 ZM 253.7120,179.2079 c -0.7409,-0.0000 -1.8264,0.7237 -1.8264 4.7382c 0.0000,1.4128 0.2584,4.2558 1.7747 4.2558c 0.2929,-0.0000 1.1199,-0.1895 1.4818 -1.5335c 0.2240,-0.8270 0.3446,-1.8608 0.3446 -3.3598c 0.0000,-2.1882 -0.5514,-3.4115 -1.0510 -3.8423c -0.1895,-0.1723 -0.4480,-0.2584 -0.7237 -0.2584ZM 253.7120,179.2079 ZM 253.6430,188.7704 c -1.8436,-0.0000 -3.0841,-2.3605 -3.0841 -4.9967c 0.0000,-3.2220 1.5335,-5.1690 3.1531 -5.1690c 0.7409,-0.0000 1.4818,0.4652 1.9814 1.1372c 0.7237,0.9649 1.1027,2.2571 1.1027 3.8767c 0.0000,3.8250 -1.8953,5.1517 -3.1531 5.1517Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 249.7835,198.2684 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 134.7225,15.4035 ZM 137.9617,7.1849 c -0.3274,-0.0000 -1.0855,0.3101 -1.4645 0.4824l -0.2068,-0.5341 c 1.5162,-0.7064 2.1020,-1.0683 2.9635 -1.6885h 0.3274 v 8.6666 c 0.0000,0.6203 0.0861,0.7926 0.6547 0.7926h 0.8960 c 0.0517,-0.0000 0.1378,0.0345 0.1378 0.1378v 0.3791 l -2.3605,-0.0345 l -2.3950,0.0345 v -0.3791 c 0.0172,-0.0517 0.0345,-0.1378 0.1378 -0.1378h 1.0338 c 0.6547,-0.0000 0.6547,-0.2929 0.6547 -0.7926v -5.9271 c 0.0000,-0.5858 0.0000,-0.9993 -0.3791 -0.9993ZM 142.2692,15.4035 ZM 144.0611,13.7667 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 146.0425,15.4035 ZM 151.3665,12.4917 c 0.0000,-1.7747 -0.9649,-2.6534 -2.0331 -2.6534c -0.7926,-0.0000 -1.3956,0.1206 -2.0676 0.3963l 0.5514,-4.7038 c 0.5686,0.0517 1.1544,0.0689 1.7574 0.0689c 0.8615,-0.0000 1.7574,-0.0517 2.6879 -0.1551l 0.1034,0.0517 l -0.2584,1.1199 c -0.6720,0.0689 -1.2233,0.0861 -1.7058 0.0861c -0.7753,-0.0000 -1.3612,-0.0689 -1.9642 -0.1378l -0.3274,2.7223 c 0.3618,-0.1378 0.9821,-0.2584 1.6541 -0.2584c 1.8264,-0.0000 2.8429,1.5851 2.8429 3.1703c 0.0000,1.9297 -1.3439,3.4115 -3.2909 3.4115c -0.9821,-0.0000 -2.4122,-0.5514 -2.4122 -1.2233c 0.0000,-0.3274 0.2757,-0.5514 0.5858 -0.5514c 0.3446,-0.0000 0.5686,0.2584 0.7753 0.5341c 0.2584,0.3101 0.5341,0.6547 1.0855 0.6547c 1.1027,-0.0000 2.0159,-1.0338 2.0159 -2.5328Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 145.8874,25.1082 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 134.7225,50.0355 ZM 137.9617,41.8169 c -0.3274,-0.0000 -1.0855,0.3101 -1.4645 0.4824l -0.2068,-0.5341 c 1.5162,-0.7064 2.1020,-1.0683 2.9635 -1.6885h 0.3274 v 8.6666 c 0.0000,0.6203 0.0861,0.7926 0.6547 0.7926h 0.8960 c 0.0517,-0.0000 0.1378,0.0345 0.1378 0.1378v 0.3791 l -2.3605,-0.0345 l -2.3950,0.0345 v -0.3791 c 0.0172,-0.0517 0.0345,-0.1378 0.1378 -0.1378h 1.0338 c 0.6547,-0.0000 0.6547,-0.2929 0.6547 -0.7926v -5.9271 c 0.0000,-0.5858 0.0000,-0.9993 -0.3791 -0.9993ZM 142.2692,50.0355 ZM 144.0611,48.3987 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 146.0425,50.0355 ZM 150.4878,43.9189 c 0.0000,-0.1206 0.0172,-0.2584 0.1723 -0.3446c 0.1895,-0.1378 0.4997,-0.2929 0.7581 -0.2929c 0.2240,-0.0000 0.2412,0.1895 0.2412 0.5341v 2.7740 h 1.3956 l -0.1034,0.8098 h -1.2922 v 1.4301 c 0.0000,0.4824 0.0689,0.7237 0.5686 0.7237h 0.4652 c 0.1034,-0.0000 0.1206,0.0861 0.1206 0.1206v 0.3791 c 0.0000,-0.0000 -1.1027,-0.0345 -1.8264 -0.0345c -0.6547,-0.0000 -1.6713,0.0345 -1.6713 0.0345v -0.3791 c 0.0000,-0.0345 0.0172,-0.1206 0.1206 -0.1206h 0.4652 c 0.5341,-0.0000 0.5858,-0.2240 0.5858 -0.7237v -1.4301 h -3.3771 c -0.0689,-0.0000 -0.1034,-0.0345 -0.1551 -0.1034l -0.1378,-0.1895 l -0.2068,-0.3618 c -0.0172,-0.0000 -0.0172,-0.0172 -0.0172 -0.0345c 0.0000,-0.0172 0.0172,-0.0345 0.0345 -0.0517c 1.1199,-1.2406 3.1014,-5.0828 3.7217 -6.4957c 0.0172,-0.0689 0.0517,-0.0861 0.1206 -0.0861c 0.0172,-0.0000 0.3963,0.1551 0.6030 0.1895c -0.7753,2.0848 -2.0504,4.3247 -3.3081 6.3234h 2.7223 v -2.6706 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 145.8874,59.7403 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 134.7225,84.6676 ZM 137.9617,76.4489 c -0.3274,-0.0000 -1.0855,0.3101 -1.4645 0.4824l -0.2068,-0.5341 c 1.5162,-0.7064 2.1020,-1.0683 2.9635 -1.6885h 0.3274 v 8.6666 c 0.0000,0.6203 0.0861,0.7926 0.6547 0.7926h 0.8960 c 0.0517,-0.0000 0.1378,0.0345 0.1378 0.1378v 0.3791 l -2.3605,-0.0345 l -2.3950,0.0345 v -0.3791 c 0.0172,-0.0517 0.0345,-0.1378 0.1378 -0.1378h 1.0338 c 0.6547,-0.0000 0.6547,-0.2929 0.6547 -0.7926v -5.9271 c 0.0000,-0.5858 0.0000,-0.9993 -0.3791 -0.9993ZM 142.2692,84.6676 ZM 144.0611,83.0307 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 146.0425,84.6676 ZM 149.7642,75.2428 c -0.4307,-0.0000 -1.6885,0.2412 -1.6885 1.2922c 0.0000,0.3101 -0.1206,0.8443 -0.5858 0.8443c -0.4480,-0.0000 -0.4824,-0.4997 -0.4824 -0.5514c 0.0000,-0.5341 0.7064,-2.1193 3.1014 -2.1193c 1.6713,-0.0000 2.1710,1.0510 2.1710 1.7402c 0.0000,0.4307 -0.1378,1.2922 -1.6885 2.2743c 0.9649,0.1551 2.2399,0.8615 2.2399 2.6534c 0.0000,2.2743 -1.7230,3.4977 -3.6700 3.4977c -0.9821,-0.0000 -2.3605,-0.4307 -2.3605 -1.0855c 0.0000,-0.2584 0.2584,-0.5514 0.6030 -0.5514c 0.3274,-0.0000 0.4824,0.1723 0.6375 0.3963c 0.1895,0.2929 0.4997,0.7064 1.3267 0.7064c 0.5686,-0.0000 2.1882,-0.5686 2.1882 -2.7395c 0.0000,-1.8436 -1.2922,-2.1365 -2.2227 -2.1365c -0.1551,-0.0000 -0.3446,0.0345 -0.5341 0.0689l -0.0689,-0.5169 c 1.3267,-0.2240 2.4294,-1.5162 2.4294 -2.3088c 0.0000,-0.9821 -0.6892,-1.4645 -1.3956 -1.4645Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 145.8874,94.3723 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 134.7225,119.2996 ZM 137.9617,111.0810 c -0.3274,-0.0000 -1.0855,0.3101 -1.4645 0.4824l -0.2068,-0.5341 c 1.5162,-0.7064 2.1020,-1.0683 2.9635 -1.6885h 0.3274 v 8.6666 c 0.0000,0.6203 0.0861,0.7926 0.6547 0.7926h 0.8960 c 0.0517,-0.0000 0.1378,0.0345 0.1378 0.1378v 0.3791 l -2.3605,-0.0345 l -2.3950,0.0345 v -0.3791 c 0.0172,-0.0517 0.0345,-0.1378 0.1378 -0.1378h 1.0338 c 0.6547,-0.0000 0.6547,-0.2929 0.6547 -0.7926v -5.9271 c 0.0000,-0.5858 0.0000,-0.9993 -0.3791 -0.9993ZM 142.2692,119.2996 ZM 144.0611,117.6628 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 146.0425,119.2996 ZM 147.0418,111.6668 c 0.0000,-0.9821 0.9476,-2.3260 2.7568 -2.3260c 1.3267,-0.0000 2.8774,0.4997 2.8774 2.4811c 0.0000,1.3095 -0.6720,1.9642 -1.6024 2.8602l -1.6368,1.5851 c -0.0861,0.0861 -1.2406,1.2233 -1.2406 2.0331h 2.9291 c 0.5858,-0.0000 0.8960,-0.2929 1.1372 -1.2406l 0.4307,0.0689 l -0.3446,2.1710 h -5.3240 c 0.0000,-0.9649 0.1551,-1.7058 1.7574 -3.3426l 1.2061,-1.1889 c 0.9649,-0.9821 1.3612,-1.8264 1.3612 -2.8774c 0.0000,-1.5679 -1.0683,-2.0159 -1.6541 -2.0159c -1.1889,-0.0000 -1.5162,0.6203 -1.5162 1.0338c 0.0000,0.1378 0.0345,0.2757 0.0689 0.3963c 0.0345,0.1206 0.0689,0.2412 0.0689 0.3791c 0.0000,0.4480 -0.3446,0.6203 -0.6203 0.6203c -0.3791,-0.0000 -0.6547,-0.2929 -0.6547 -0.6375Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 145.8874,129.0043 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 134.7225,153.9316 ZM 137.9617,145.7130 c -0.3274,-0.0000 -1.0855,0.3101 -1.4645 0.4824l -0.2068,-0.5341 c 1.5162,-0.7064 2.1020,-1.0683 2.9635 -1.6885h 0.3274 v 8.6666 c 0.0000,0.6203 0.0861,0.7926 0.6547 0.7926h 0.8960 c 0.0517,-0.0000 0.1378,0.0345 0.1378 0.1378v 0.3791 l -2.3605,-0.0345 l -2.3950,0.0345 v -0.3791 c 0.0172,-0.0517 0.0345,-0.1378 0.1378 -0.1378h 1.0338 c 0.6547,-0.0000 0.6547,-0.2929 0.6547 -0.7926v -5.9271 c 0.0000,-0.5858 0.0000,-0.9993 -0.3791 -0.9993ZM 142.2692,153.9316 ZM 144.0611,152.2948 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 146.0425,153.9316 ZM 149.2817,145.7130 c -0.3274,-0.0000 -1.0855,0.3101 -1.4645 0.4824l -0.2068,-0.5341 c 1.5162,-0.7064 2.1020,-1.0683 2.9635 -1.6885h 0.3274 v 8.6666 c 0.0000,0.6203 0.0861,0.7926 0.6547 0.7926h 0.8960 c 0.0517,-0.0000 0.1378,0.0345 0.1378 0.1378v 0.3791 l -2.3605,-0.0345 l -2.3950,0.0345 v -0.3791 c 0.0172,-0.0517 0.0345,-0.1378 0.1378 -0.1378h 1.0338 c 0.6547,-0.0000 0.6547,-0.2929 0.6547 -0.7926v -5.9271 c 0.0000,-0.5858 0.0000,-0.9993 -0.3791 -0.9993Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 145.8874,163.6364 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 134.7225,188.5637 ZM 137.9617,180.3450 c -0.3274,-0.0000 -1.0855,0.3101 -1.4645 0.4824l -0.2068,-0.5341 c 1.5162,-0.7064 2.1020,-1.0683 2.9635 -1.6885h 0.3274 v 8.6666 c 0.0000,0.6203 0.0861,0.7926 0.6547 0.7926h 0.8960 c 0.0517,-0.0000 0.1378,0.0345 0.1378 0.1378v 0.3791 l -2.3605,-0.0345 l -2.3950,0.0345 v -0.3791 c 0.0172,-0.0517 0.0345,-0.1378 0.1378 -0.1378h 1.0338 c 0.6547,-0.0000 0.6547,-0.2929 0.6547 -0.7926v -5.9271 c 0.0000,-0.5858 0.0000,-0.9993 -0.3791 -0.9993ZM 142.2692,188.5637 ZM 144.0611,186.9268 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 146.0425,188.5637 ZM 149.8159,179.2079 c -0.7409,-0.0000 -1.8264,0.7237 -1.8264 4.7382c 0.0000,1.4128 0.2584,4.2558 1.7747 4.2558c 0.2929,-0.0000 1.1199,-0.1895 1.4818 -1.5335c 0.2240,-0.8270 0.3446,-1.8608 0.3446 -3.3598c 0.0000,-2.1882 -0.5514,-3.4115 -1.0510 -3.8423c -0.1895,-0.1723 -0.4480,-0.2584 -0.7237 -0.2584ZM 149.8159,179.2079 ZM 149.7469,188.7704 c -1.8436,-0.0000 -3.0841,-2.3605 -3.0841 -4.9967c 0.0000,-3.2220 1.5335,-5.1690 3.1531 -5.1690c 0.7409,-0.0000 1.4818,0.4652 1.9814 1.1372c 0.7237,0.9649 1.1027,2.2571 1.1027 3.8767c 0.0000,3.8250 -1.8953,5.1517 -3.1531 5.1517Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 145.8874,198.2684 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.8264,15.4035 ZM 34.5997,6.0477 c -0.7409,-0.0000 -1.8264,0.7237 -1.8264 4.7382c 0.0000,1.4128 0.2584,4.2558 1.7747 4.2558c 0.2929,-0.0000 1.1199,-0.1895 1.4818 -1.5335c 0.2240,-0.8270 0.3446,-1.8608 0.3446 -3.3598c 0.0000,-2.1882 -0.5514,-3.4115 -1.0510 -3.8423c -0.1895,-0.1723 -0.4480,-0.2584 -0.7237 -0.2584ZM 34.5997,6.0477 ZM 34.5308,15.6103 c -1.8436,-0.0000 -3.0841,-2.3605 -3.0841 -4.9967c 0.0000,-3.2220 1.5335,-5.1690 3.1531 -5.1690c 0.7409,-0.0000 1.4818,0.4652 1.9814 1.1372c 0.7237,0.9649 1.1027,2.2571 1.1027 3.8767c 0.0000,3.8250 -1.8953,5.1517 -3.1531 5.1517ZM 38.3731,15.4035 ZM 40.1650,13.7667 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 42.1464,15.4035 ZM 47.4704,12.4917 c 0.0000,-1.7747 -0.9649,-2.6534 -2.0331 -2.6534c -0.7926,-0.0000 -1.3956,0.1206 -2.0676 0.3963l 0.5514,-4.7038 c 0.5686,0.0517 1.1544,0.0689 1.7574 0.0689c 0.8615,-0.0000 1.7574,-0.0517 2.6879 -0.1551l 0.1034,0.0517 l -0.2584,1.1199 c -0.6720,0.0689 -1.2233,0.0861 -1.7058 0.0861c -0.7753,-0.0000 -1.3612,-0.0689 -1.9642 -0.1378l -0.3274,2.7223 c 0.3618,-0.1378 0.9821,-0.2584 1.6541 -0.2584c 1.8264,-0.0000 2.8429,1.5851 2.8429 3.1703c 0.0000,1.9297 -1.3439,3.4115 -3.2909 3.4115c -0.9821,-0.0000 -2.4122,-0.5514 -2.4122 -1.2233c 0.0000,-0.3274 0.2757,-0.5514 0.5858 -0.5514c 0.3446,-0.0000 0.5686,0.2584 0.7753 0.5341c 0.2584,0.3101 0.5341,0.6547 1.0855 0.6547c 1.1027,-0.0000 2.0159,-1.0338 2.0159 -2.5328Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 41.9913,25.1082 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.8264,50.0355 ZM 34.5997,40.6797 c -0.7409,-0.0000 -1.8264,0.7237 -1.8264 4.7382c 0.0000,1.4128 0.2584,4.2558 1.7747 4.2558c 0.2929,-0.0000 1.1199,-0.1895 1.4818 -1.5335c 0.2240,-0.8270 0.3446,-1.8608 0.3446 -3.3598c 0.0000,-2.1882 -0.5514,-3.4115 -1.0510 -3.8423c -0.1895,-0.1723 -0.4480,-0.2584 -0.7237 -0.2584ZM 34.5997,40.6797 ZM 34.5308,50.2423 c -1.8436,-0.0000 -3.0841,-2.3605 -3.0841 -4.9967c 0.0000,-3.2220 1.5335,-5.1690 3.1531 -5.1690c 0.7409,-0.0000 1.4818,0.4652 1.9814 1.1372c 0.7237,0.9649 1.1027,2.2571 1.1027 3.8767c 0.0000,3.8250 -1.8953,5.1517 -3.1531 5.1517ZM 38.3731,50.0355 ZM 40.1650,48.3987 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 42.1464,50.0355 ZM 46.5917,43.9189 c 0.0000,-0.1206 0.0172,-0.2584 0.1723 -0.3446c 0.1895,-0.1378 0.4997,-0.2929 0.7581 -0.2929c 0.2240,-0.0000 0.2412,0.1895 0.2412 0.5341v 2.7740 h 1.3956 l -0.1034,0.8098 h -1.2922 v 1.4301 c 0.0000,0.4824 0.0689,0.7237 0.5686 0.7237h 0.4652 c 0.1034,-0.0000 0.1206,0.0861 0.1206 0.1206v 0.3791 c 0.0000,-0.0000 -1.1027,-0.0345 -1.8264 -0.0345c -0.6547,-0.0000 -1.6713,0.0345 -1.6713 0.0345v -0.3791 c 0.0000,-0.0345 0.0172,-0.1206 0.1206 -0.1206h 0.4652 c 0.5341,-0.0000 0.5858,-0.2240 0.5858 -0.7237v -1.4301 h -3.3771 c -0.0689,-0.0000 -0.1034,-0.0345 -0.1551 -0.1034l -0.1378,-0.1895 l -0.2068,-0.3618 c -0.0172,-0.0000 -0.0172,-0.0172 -0.0172 -0.0345c 0.0000,-0.0172 0.0172,-0.0345 0.0345 -0.0517c 1.1199,-1.2406 3.1014,-5.0828 3.7217 -6.4957c 0.0172,-0.0689 0.0517,-0.0861 0.1206 -0.0861c 0.0172,-0.0000 0.3963,0.1551 0.6030 0.1895c -0.7753,2.0848 -2.0504,4.3247 -3.3081 6.3234h 2.7223 v -2.6706 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 41.9913,59.7403 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.8264,84.6676 ZM 34.5997,75.3118 c -0.7409,-0.0000 -1.8264,0.7237 -1.8264 4.7382c 0.0000,1.4128 0.2584,4.2558 1.7747 4.2558c 0.2929,-0.0000 1.1199,-0.1895 1.4818 -1.5335c 0.2240,-0.8270 0.3446,-1.8608 0.3446 -3.3598c 0.0000,-2.1882 -0.5514,-3.4115 -1.0510 -3.8423c -0.1895,-0.1723 -0.4480,-0.2584 -0.7237 -0.2584ZM 34.5997,75.3118 ZM 34.5308,84.8743 c -1.8436,-0.0000 -3.0841,-2.3605 -3.0841 -4.9967c 0.0000,-3.2220 1.5335,-5.1690 3.1531 -5.1690c 0.7409,-0.0000 1.4818,0.4652 1.9814 1.1372c 0.7237,0.9649 1.1027,2.2571 1.1027 3.8767c 0.0000,3.8250 -1.8953,5.1517 -3.1531 5.1517ZM 38.3731,84.6676 ZM 40.1650,83.0307 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 42.1464,84.6676 ZM 45.8681,75.2428 c -0.4307,-0.0000 -1.6885,0.2412 -1.6885 1.2922c 0.0000,0.3101 -0.1206,0.8443 -0.5858 0.8443c -0.4480,-0.0000 -0.4824,-0.4997 -0.4824 -0.5514c 0.0000,-0.5341 0.7064,-2.1193 3.1014 -2.1193c 1.6713,-0.0000 2.1710,1.0510 2.1710 1.7402c 0.0000,0.4307 -0.1378,1.2922 -1.6885 2.2743c 0.9649,0.1551 2.2399,0.8615 2.2399 2.6534c 0.0000,2.2743 -1.7230,3.4977 -3.6700 3.4977c -0.9821,-0.0000 -2.3605,-0.4307 -2.3605 -1.0855c 0.0000,-0.2584 0.2584,-0.5514 0.6030 -0.5514c 0.3274,-0.0000 0.4824,0.1723 0.6375 0.3963c 0.1895,0.2929 0.4997,0.7064 1.3267 0.7064c 0.5686,-0.0000 2.1882,-0.5686 2.1882 -2.7395c 0.0000,-1.8436 -1.2922,-2.1365 -2.2227 -2.1365c -0.1551,-0.0000 -0.3446,0.0345 -0.5341 0.0689l -0.0689,-0.5169 c 1.3267,-0.2240 2.4294,-1.5162 2.4294 -2.3088c 0.0000,-0.9821 -0.6892,-1.4645 -1.3956 -1.4645Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 41.9913,94.3723 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.8264,119.2996 ZM 34.5997,109.9438 c -0.7409,-0.0000 -1.8264,0.7237 -1.8264 4.7382c 0.0000,1.4128 0.2584,4.2558 1.7747 4.2558c 0.2929,-0.0000 1.1199,-0.1895 1.4818 -1.5335c 0.2240,-0.8270 0.3446,-1.8608 0.3446 -3.3598c 0.0000,-2.1882 -0.5514,-3.4115 -1.0510 -3.8423c -0.1895,-0.1723 -0.4480,-0.2584 -0.7237 -0.2584ZM 34.5997,109.9438 ZM 34.5308,119.5064 c -1.8436,-0.0000 -3.0841,-2.3605 -3.0841 -4.9967c 0.0000,-3.2220 1.5335,-5.1690 3.1531 -5.1690c 0.7409,-0.0000 1.4818,0.4652 1.9814 1.1372c 0.7237,0.9649 1.1027,2.2571 1.1027 3.8767c 0.0000,3.8250 -1.8953,5.1517 -3.1531 5.1517ZM 38.3731,119.2996 ZM 40.1650,117.6628 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 42.1464,119.2996 ZM 43.1457,111.6668 c 0.0000,-0.9821 0.9476,-2.3260 2.7568 -2.3260c 1.3267,-0.0000 2.8774,0.4997 2.8774 2.4811c 0.0000,1.3095 -0.6720,1.9642 -1.6024 2.8602l -1.6368,1.5851 c -0.0861,0.0861 -1.2406,1.2233 -1.2406 2.0331h 2.9291 c 0.5858,-0.0000 0.8960,-0.2929 1.1372 -1.2406l 0.4307,0.0689 l -0.3446,2.1710 h -5.3240 c 0.0000,-0.9649 0.1551,-1.7058 1.7574 -3.3426l 1.2061,-1.1889 c 0.9649,-0.9821 1.3612,-1.8264 1.3612 -2.8774c 0.0000,-1.5679 -1.0683,-2.0159 -1.6541 -2.0159c -1.1889,-0.0000 -1.5162,0.6203 -1.5162 1.0338c 0.0000,0.1378 0.0345,0.2757 0.0689 0.3963c 0.0345,0.1206 0.0689,0.2412 0.0689 0.3791c 0.0000,0.4480 -0.3446,0.6203 -0.6203 0.6203c -0.3791,-0.0000 -0.6547,-0.2929 -0.6547 -0.6375Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 41.9913,129.0043 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.8264,153.9316 ZM 34.5997,144.5758 c -0.7409,-0.0000 -1.8264,0.7237 -1.8264 4.7382c 0.0000,1.4128 0.2584,4.2558 1.7747 4.2558c 0.2929,-0.0000 1.1199,-0.1895 1.4818 -1.5335c 0.2240,-0.8270 0.3446,-1.8608 0.3446 -3.3598c 0.0000,-2.1882 -0.5514,-3.4115 -1.0510 -3.8423c -0.1895,-0.1723 -0.4480,-0.2584 -0.7237 -0.2584ZM 34.5997,144.5758 ZM 34.5308,154.1384 c -1.8436,-0.0000 -3.0841,-2.3605 -3.0841 -4.9967c 0.0000,-3.2220 1.5335,-5.1690 3.1531 -5.1690c 0.7409,-0.0000 1.4818,0.4652 1.9814 1.1372c 0.7237,0.9649 1.1027,2.2571 1.1027 3.8767c 0.0000,3.8250 -1.8953,5.1517 -3.1531 5.1517ZM 38.3731,153.9316 ZM 40.1650,152.2948 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 42.1464,153.9316 ZM 45.3856,145.7130 c -0.3274,-0.0000 -1.0855,0.3101 -1.4645 0.4824l -0.2068,-0.5341 c 1.5162,-0.7064 2.1020,-1.0683 2.9635 -1.6885h 0.3274 v 8.6666 c 0.0000,0.6203 0.0861,0.7926 0.6547 0.7926h 0.8960 c 0.0517,-0.0000 0.1378,0.0345 0.1378 0.1378v 0.3791 l -2.3605,-0.0345 l -2.3950,0.0345 v -0.3791 c 0.0172,-0.0517 0.0345,-0.1378 0.1378 -0.1378h 1.0338 c 0.6547,-0.0000 0.6547,-0.2929 0.6547 -0.7926v -5.9271 c 0.0000,-0.5858 0.0000,-0.9993 -0.3791 -0.9993Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 41.9913,163.6364 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.8264,188.5637 ZM 34.5997,179.2079 c -0.7409,-0.0000 -1.8264,0.7237 -1.8264 4.7382c 0.0000,1.4128 0.2584,4.2558 1.7747 4.2558c 0.2929,-0.0000 1.1199,-0.1895 1.4818 -1.5335c 0.2240,-0.8270 0.3446,-1.8608 0.3446 -3.3598c 0.0000,-2.1882 -0.5514,-3.4115 -1.0510 -3.8423c -0.1895,-0.1723 -0.4480,-0.2584 -0.7237 -0.2584ZM 34.5997,179.2079 ZM 34.5308,188.7704 c -1.8436,-0.0000 -3.0841,-2.3605 -3.0841 -4.9967c 0.0000,-3.2220 1.5335,-5.1690 3.1531 -5.1690c 0.7409,-0.0000 1.4818,0.4652 1.9814 1.1372c 0.7237,0.9649 1.1027,2.2571 1.1027 3.8767c 0.0000,3.8250 -1.8953,5.1517 -3.1531 5.1517ZM 38.3731,188.5637 ZM 40.1650,186.9268 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 42.1464,188.5637 ZM 45.9198,179.2079 c -0.7409,-0.0000 -1.8264,0.7237 -1.8264 4.7382c 0.0000,1.4128 0.2584,4.2558 1.7747 4.2558c 0.2929,-0.0000 1.1199,-0.1895 1.4818 -1.5335c 0.2240,-0.8270 0.3446,-1.8608 0.3446 -3.3598c 0.0000,-2.1882 -0.5514,-3.4115 -1.0510 -3.8423c -0.1895,-0.1723 -0.4480,-0.2584 -0.7237 -0.2584ZM 45.9198,179.2079 ZM 45.8508,188.7704 c -1.8436,-0.0000 -3.0841,-2.3605 -3.0841 -4.9967c 0.0000,-3.2220 1.5335,-5.1690 3.1531 -5.1690c 0.7409,-0.0000 1.4818,0.4652 1.9814 1.1372c 0.7237,0.9649 1.1027,2.2571 1.1027 3.8767c 0.0000,3.8250 -1.8953,5.1517 -3.1531 5.1517Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 41.9913,198.2684 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g></svg>
+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="200.0000" stroke-opacity="1" viewBox="0 0 600 200" font-size="1" width="600.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 550.3069,15.4035 ZM 555.6309,12.4917 c 0.0000,-1.7747 -0.9649,-2.6534 -2.0331 -2.6534c -0.7926,-0.0000 -1.3956,0.1206 -2.0676 0.3963l 0.5514,-4.7038 c 0.5686,0.0517 1.1544,0.0689 1.7574 0.0689c 0.8615,-0.0000 1.7574,-0.0517 2.6879 -0.1551l 0.1034,0.0517 l -0.2584,1.1199 c -0.6720,0.0689 -1.2233,0.0861 -1.7058 0.0861c -0.7753,-0.0000 -1.3612,-0.0689 -1.9642 -0.1378l -0.3274,2.7223 c 0.3618,-0.1378 0.9821,-0.2584 1.6541 -0.2584c 1.8264,-0.0000 2.8429,1.5851 2.8429 3.1703c 0.0000,1.9297 -1.3439,3.4115 -3.2909 3.4115c -0.9821,-0.0000 -2.4122,-0.5514 -2.4122 -1.2233c 0.0000,-0.3274 0.2757,-0.5514 0.5858 -0.5514c 0.3446,-0.0000 0.5686,0.2584 0.7753 0.5341c 0.2584,0.3101 0.5341,0.6547 1.0855 0.6547c 1.1027,-0.0000 2.0159,-1.0338 2.0159 -2.5328ZM 557.8536,15.4035 ZM 559.6455,13.7667 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 561.6269,15.4035 ZM 566.9510,12.4917 c 0.0000,-1.7747 -0.9649,-2.6534 -2.0331 -2.6534c -0.7926,-0.0000 -1.3956,0.1206 -2.0676 0.3963l 0.5514,-4.7038 c 0.5686,0.0517 1.1544,0.0689 1.7574 0.0689c 0.8615,-0.0000 1.7574,-0.0517 2.6879 -0.1551l 0.1034,0.0517 l -0.2584,1.1199 c -0.6720,0.0689 -1.2233,0.0861 -1.7058 0.0861c -0.7753,-0.0000 -1.3612,-0.0689 -1.9642 -0.1378l -0.3274,2.7223 c 0.3618,-0.1378 0.9821,-0.2584 1.6541 -0.2584c 1.8264,-0.0000 2.8429,1.5851 2.8429 3.1703c 0.0000,1.9297 -1.3439,3.4115 -3.2909 3.4115c -0.9821,-0.0000 -2.4122,-0.5514 -2.4122 -1.2233c 0.0000,-0.3274 0.2757,-0.5514 0.5858 -0.5514c 0.3446,-0.0000 0.5686,0.2584 0.7753 0.5341c 0.2584,0.3101 0.5341,0.6547 1.0855 0.6547c 1.1027,-0.0000 2.0159,-1.0338 2.0159 -2.5328Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 561.4719,25.1082 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 550.3069,50.0355 ZM 555.6309,47.1237 c 0.0000,-1.7747 -0.9649,-2.6534 -2.0331 -2.6534c -0.7926,-0.0000 -1.3956,0.1206 -2.0676 0.3963l 0.5514,-4.7038 c 0.5686,0.0517 1.1544,0.0689 1.7574 0.0689c 0.8615,-0.0000 1.7574,-0.0517 2.6879 -0.1551l 0.1034,0.0517 l -0.2584,1.1199 c -0.6720,0.0689 -1.2233,0.0861 -1.7058 0.0861c -0.7753,-0.0000 -1.3612,-0.0689 -1.9642 -0.1378l -0.3274,2.7223 c 0.3618,-0.1378 0.9821,-0.2584 1.6541 -0.2584c 1.8264,-0.0000 2.8429,1.5851 2.8429 3.1703c 0.0000,1.9297 -1.3439,3.4115 -3.2909 3.4115c -0.9821,-0.0000 -2.4122,-0.5514 -2.4122 -1.2233c 0.0000,-0.3274 0.2757,-0.5514 0.5858 -0.5514c 0.3446,-0.0000 0.5686,0.2584 0.7753 0.5341c 0.2584,0.3101 0.5341,0.6547 1.0855 0.6547c 1.1027,-0.0000 2.0159,-1.0338 2.0159 -2.5328ZM 557.8536,50.0355 ZM 559.6455,48.3987 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 561.6269,50.0355 ZM 566.0722,43.9189 c 0.0000,-0.1206 0.0172,-0.2584 0.1723 -0.3446c 0.1895,-0.1378 0.4997,-0.2929 0.7581 -0.2929c 0.2240,-0.0000 0.2412,0.1895 0.2412 0.5341v 2.7740 h 1.3956 l -0.1034,0.8098 h -1.2922 v 1.4301 c 0.0000,0.4824 0.0689,0.7237 0.5686 0.7237h 0.4652 c 0.1034,-0.0000 0.1206,0.0861 0.1206 0.1206v 0.3791 c 0.0000,-0.0000 -1.1027,-0.0345 -1.8264 -0.0345c -0.6547,-0.0000 -1.6713,0.0345 -1.6713 0.0345v -0.3791 c 0.0000,-0.0345 0.0172,-0.1206 0.1206 -0.1206h 0.4652 c 0.5341,-0.0000 0.5858,-0.2240 0.5858 -0.7237v -1.4301 h -3.3771 c -0.0689,-0.0000 -0.1034,-0.0345 -0.1551 -0.1034l -0.1378,-0.1895 l -0.2068,-0.3618 c -0.0172,-0.0000 -0.0172,-0.0172 -0.0172 -0.0345c 0.0000,-0.0172 0.0172,-0.0345 0.0345 -0.0517c 1.1199,-1.2406 3.1014,-5.0828 3.7217 -6.4957c 0.0172,-0.0689 0.0517,-0.0861 0.1206 -0.0861c 0.0172,-0.0000 0.3963,0.1551 0.6030 0.1895c -0.7753,2.0848 -2.0504,4.3247 -3.3081 6.3234h 2.7223 v -2.6706 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 561.4719,59.7403 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 550.3069,84.6676 ZM 555.6309,81.7557 c 0.0000,-1.7747 -0.9649,-2.6534 -2.0331 -2.6534c -0.7926,-0.0000 -1.3956,0.1206 -2.0676 0.3963l 0.5514,-4.7038 c 0.5686,0.0517 1.1544,0.0689 1.7574 0.0689c 0.8615,-0.0000 1.7574,-0.0517 2.6879 -0.1551l 0.1034,0.0517 l -0.2584,1.1199 c -0.6720,0.0689 -1.2233,0.0861 -1.7058 0.0861c -0.7753,-0.0000 -1.3612,-0.0689 -1.9642 -0.1378l -0.3274,2.7223 c 0.3618,-0.1378 0.9821,-0.2584 1.6541 -0.2584c 1.8264,-0.0000 2.8429,1.5851 2.8429 3.1703c 0.0000,1.9297 -1.3439,3.4115 -3.2909 3.4115c -0.9821,-0.0000 -2.4122,-0.5514 -2.4122 -1.2233c 0.0000,-0.3274 0.2757,-0.5514 0.5858 -0.5514c 0.3446,-0.0000 0.5686,0.2584 0.7753 0.5341c 0.2584,0.3101 0.5341,0.6547 1.0855 0.6547c 1.1027,-0.0000 2.0159,-1.0338 2.0159 -2.5328ZM 557.8536,84.6676 ZM 559.6455,83.0307 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 561.6269,84.6676 ZM 565.3486,75.2428 c -0.4307,-0.0000 -1.6885,0.2412 -1.6885 1.2922c 0.0000,0.3101 -0.1206,0.8443 -0.5858 0.8443c -0.4480,-0.0000 -0.4824,-0.4997 -0.4824 -0.5514c 0.0000,-0.5341 0.7064,-2.1193 3.1014 -2.1193c 1.6713,-0.0000 2.1710,1.0510 2.1710 1.7402c 0.0000,0.4307 -0.1378,1.2922 -1.6885 2.2743c 0.9649,0.1551 2.2399,0.8615 2.2399 2.6534c 0.0000,2.2743 -1.7230,3.4977 -3.6700 3.4977c -0.9821,-0.0000 -2.3605,-0.4307 -2.3605 -1.0855c 0.0000,-0.2584 0.2584,-0.5514 0.6030 -0.5514c 0.3274,-0.0000 0.4824,0.1723 0.6375 0.3963c 0.1895,0.2929 0.4997,0.7064 1.3267 0.7064c 0.5686,-0.0000 2.1882,-0.5686 2.1882 -2.7395c 0.0000,-1.8436 -1.2922,-2.1365 -2.2227 -2.1365c -0.1551,-0.0000 -0.3446,0.0345 -0.5341 0.0689l -0.0689,-0.5169 c 1.3267,-0.2240 2.4294,-1.5162 2.4294 -2.3088c 0.0000,-0.9821 -0.6892,-1.4645 -1.3956 -1.4645Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 561.4719,94.3723 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 550.3069,119.2996 ZM 555.6309,116.3878 c 0.0000,-1.7747 -0.9649,-2.6534 -2.0331 -2.6534c -0.7926,-0.0000 -1.3956,0.1206 -2.0676 0.3963l 0.5514,-4.7038 c 0.5686,0.0517 1.1544,0.0689 1.7574 0.0689c 0.8615,-0.0000 1.7574,-0.0517 2.6879 -0.1551l 0.1034,0.0517 l -0.2584,1.1199 c -0.6720,0.0689 -1.2233,0.0861 -1.7058 0.0861c -0.7753,-0.0000 -1.3612,-0.0689 -1.9642 -0.1378l -0.3274,2.7223 c 0.3618,-0.1378 0.9821,-0.2584 1.6541 -0.2584c 1.8264,-0.0000 2.8429,1.5851 2.8429 3.1703c 0.0000,1.9297 -1.3439,3.4115 -3.2909 3.4115c -0.9821,-0.0000 -2.4122,-0.5514 -2.4122 -1.2233c 0.0000,-0.3274 0.2757,-0.5514 0.5858 -0.5514c 0.3446,-0.0000 0.5686,0.2584 0.7753 0.5341c 0.2584,0.3101 0.5341,0.6547 1.0855 0.6547c 1.1027,-0.0000 2.0159,-1.0338 2.0159 -2.5328ZM 557.8536,119.2996 ZM 559.6455,117.6628 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 561.6269,119.2996 ZM 562.6263,111.6668 c 0.0000,-0.9821 0.9476,-2.3260 2.7568 -2.3260c 1.3267,-0.0000 2.8774,0.4997 2.8774 2.4811c 0.0000,1.3095 -0.6720,1.9642 -1.6024 2.8602l -1.6368,1.5851 c -0.0861,0.0861 -1.2406,1.2233 -1.2406 2.0331h 2.9291 c 0.5858,-0.0000 0.8960,-0.2929 1.1372 -1.2406l 0.4307,0.0689 l -0.3446,2.1710 h -5.3240 c 0.0000,-0.9649 0.1551,-1.7058 1.7574 -3.3426l 1.2061,-1.1889 c 0.9649,-0.9821 1.3612,-1.8264 1.3612 -2.8774c 0.0000,-1.5679 -1.0683,-2.0159 -1.6541 -2.0159c -1.1889,-0.0000 -1.5162,0.6203 -1.5162 1.0338c 0.0000,0.1378 0.0345,0.2757 0.0689 0.3963c 0.0345,0.1206 0.0689,0.2412 0.0689 0.3791c 0.0000,0.4480 -0.3446,0.6203 -0.6203 0.6203c -0.3791,-0.0000 -0.6547,-0.2929 -0.6547 -0.6375Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 561.4719,129.0043 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 550.3069,153.9316 ZM 555.6309,151.0198 c 0.0000,-1.7747 -0.9649,-2.6534 -2.0331 -2.6534c -0.7926,-0.0000 -1.3956,0.1206 -2.0676 0.3963l 0.5514,-4.7038 c 0.5686,0.0517 1.1544,0.0689 1.7574 0.0689c 0.8615,-0.0000 1.7574,-0.0517 2.6879 -0.1551l 0.1034,0.0517 l -0.2584,1.1199 c -0.6720,0.0689 -1.2233,0.0861 -1.7058 0.0861c -0.7753,-0.0000 -1.3612,-0.0689 -1.9642 -0.1378l -0.3274,2.7223 c 0.3618,-0.1378 0.9821,-0.2584 1.6541 -0.2584c 1.8264,-0.0000 2.8429,1.5851 2.8429 3.1703c 0.0000,1.9297 -1.3439,3.4115 -3.2909 3.4115c -0.9821,-0.0000 -2.4122,-0.5514 -2.4122 -1.2233c 0.0000,-0.3274 0.2757,-0.5514 0.5858 -0.5514c 0.3446,-0.0000 0.5686,0.2584 0.7753 0.5341c 0.2584,0.3101 0.5341,0.6547 1.0855 0.6547c 1.1027,-0.0000 2.0159,-1.0338 2.0159 -2.5328ZM 557.8536,153.9316 ZM 559.6455,152.2948 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 561.6269,153.9316 ZM 564.8661,145.7130 c -0.3274,-0.0000 -1.0855,0.3101 -1.4645 0.4824l -0.2068,-0.5341 c 1.5162,-0.7064 2.1020,-1.0683 2.9635 -1.6885h 0.3274 v 8.6666 c 0.0000,0.6203 0.0861,0.7926 0.6547 0.7926h 0.8960 c 0.0517,-0.0000 0.1378,0.0345 0.1378 0.1378v 0.3791 l -2.3605,-0.0345 l -2.3950,0.0345 v -0.3791 c 0.0172,-0.0517 0.0345,-0.1378 0.1378 -0.1378h 1.0338 c 0.6547,-0.0000 0.6547,-0.2929 0.6547 -0.7926v -5.9271 c 0.0000,-0.5858 0.0000,-0.9993 -0.3791 -0.9993Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 561.4719,163.6364 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 550.3069,188.5637 ZM 555.6309,185.6518 c 0.0000,-1.7747 -0.9649,-2.6534 -2.0331 -2.6534c -0.7926,-0.0000 -1.3956,0.1206 -2.0676 0.3963l 0.5514,-4.7038 c 0.5686,0.0517 1.1544,0.0689 1.7574 0.0689c 0.8615,-0.0000 1.7574,-0.0517 2.6879 -0.1551l 0.1034,0.0517 l -0.2584,1.1199 c -0.6720,0.0689 -1.2233,0.0861 -1.7058 0.0861c -0.7753,-0.0000 -1.3612,-0.0689 -1.9642 -0.1378l -0.3274,2.7223 c 0.3618,-0.1378 0.9821,-0.2584 1.6541 -0.2584c 1.8264,-0.0000 2.8429,1.5851 2.8429 3.1703c 0.0000,1.9297 -1.3439,3.4115 -3.2909 3.4115c -0.9821,-0.0000 -2.4122,-0.5514 -2.4122 -1.2233c 0.0000,-0.3274 0.2757,-0.5514 0.5858 -0.5514c 0.3446,-0.0000 0.5686,0.2584 0.7753 0.5341c 0.2584,0.3101 0.5341,0.6547 1.0855 0.6547c 1.1027,-0.0000 2.0159,-1.0338 2.0159 -2.5328ZM 557.8536,188.5637 ZM 559.6455,186.9268 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 561.6269,188.5637 ZM 565.4003,179.2079 c -0.7409,-0.0000 -1.8264,0.7237 -1.8264 4.7382c 0.0000,1.4128 0.2584,4.2558 1.7747 4.2558c 0.2929,-0.0000 1.1199,-0.1895 1.4818 -1.5335c 0.2240,-0.8270 0.3446,-1.8608 0.3446 -3.3598c 0.0000,-2.1882 -0.5514,-3.4115 -1.0510 -3.8423c -0.1895,-0.1723 -0.4480,-0.2584 -0.7237 -0.2584ZM 565.4003,179.2079 ZM 565.3314,188.7704 c -1.8436,-0.0000 -3.0841,-2.3605 -3.0841 -4.9967c 0.0000,-3.2220 1.5335,-5.1690 3.1531 -5.1690c 0.7409,-0.0000 1.4818,0.4652 1.9814 1.1372c 0.7237,0.9649 1.1027,2.2571 1.1027 3.8767c 0.0000,3.8250 -1.8953,5.1517 -3.1531 5.1517Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 561.4719,198.2684 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 446.4108,15.4035 ZM 450.8561,9.2869 c 0.0000,-0.1206 0.0172,-0.2584 0.1723 -0.3446c 0.1895,-0.1378 0.4997,-0.2929 0.7581 -0.2929c 0.2240,-0.0000 0.2412,0.1895 0.2412 0.5341v 2.7740 h 1.3956 l -0.1034,0.8098 h -1.2922 v 1.4301 c 0.0000,0.4824 0.0689,0.7237 0.5686 0.7237h 0.4652 c 0.1034,-0.0000 0.1206,0.0861 0.1206 0.1206v 0.3791 c 0.0000,-0.0000 -1.1027,-0.0345 -1.8264 -0.0345c -0.6547,-0.0000 -1.6713,0.0345 -1.6713 0.0345v -0.3791 c 0.0000,-0.0345 0.0172,-0.1206 0.1206 -0.1206h 0.4652 c 0.5341,-0.0000 0.5858,-0.2240 0.5858 -0.7237v -1.4301 h -3.3771 c -0.0689,-0.0000 -0.1034,-0.0345 -0.1551 -0.1034l -0.1378,-0.1895 l -0.2068,-0.3618 c -0.0172,-0.0000 -0.0172,-0.0172 -0.0172 -0.0345c 0.0000,-0.0172 0.0172,-0.0345 0.0345 -0.0517c 1.1199,-1.2406 3.1014,-5.0828 3.7217 -6.4957c 0.0172,-0.0689 0.0517,-0.0861 0.1206 -0.0861c 0.0172,-0.0000 0.3963,0.1551 0.6030 0.1895c -0.7753,2.0848 -2.0504,4.3247 -3.3081 6.3234h 2.7223 v -2.6706 ZM 453.9575,15.4035 ZM 455.7494,13.7667 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 457.7308,15.4035 ZM 463.0549,12.4917 c 0.0000,-1.7747 -0.9649,-2.6534 -2.0331 -2.6534c -0.7926,-0.0000 -1.3956,0.1206 -2.0676 0.3963l 0.5514,-4.7038 c 0.5686,0.0517 1.1544,0.0689 1.7574 0.0689c 0.8615,-0.0000 1.7574,-0.0517 2.6879 -0.1551l 0.1034,0.0517 l -0.2584,1.1199 c -0.6720,0.0689 -1.2233,0.0861 -1.7058 0.0861c -0.7753,-0.0000 -1.3612,-0.0689 -1.9642 -0.1378l -0.3274,2.7223 c 0.3618,-0.1378 0.9821,-0.2584 1.6541 -0.2584c 1.8264,-0.0000 2.8429,1.5851 2.8429 3.1703c 0.0000,1.9297 -1.3439,3.4115 -3.2909 3.4115c -0.9821,-0.0000 -2.4122,-0.5514 -2.4122 -1.2233c 0.0000,-0.3274 0.2757,-0.5514 0.5858 -0.5514c 0.3446,-0.0000 0.5686,0.2584 0.7753 0.5341c 0.2584,0.3101 0.5341,0.6547 1.0855 0.6547c 1.1027,-0.0000 2.0159,-1.0338 2.0159 -2.5328Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 457.5758,25.1082 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 446.4108,50.0355 ZM 450.8561,43.9189 c 0.0000,-0.1206 0.0172,-0.2584 0.1723 -0.3446c 0.1895,-0.1378 0.4997,-0.2929 0.7581 -0.2929c 0.2240,-0.0000 0.2412,0.1895 0.2412 0.5341v 2.7740 h 1.3956 l -0.1034,0.8098 h -1.2922 v 1.4301 c 0.0000,0.4824 0.0689,0.7237 0.5686 0.7237h 0.4652 c 0.1034,-0.0000 0.1206,0.0861 0.1206 0.1206v 0.3791 c 0.0000,-0.0000 -1.1027,-0.0345 -1.8264 -0.0345c -0.6547,-0.0000 -1.6713,0.0345 -1.6713 0.0345v -0.3791 c 0.0000,-0.0345 0.0172,-0.1206 0.1206 -0.1206h 0.4652 c 0.5341,-0.0000 0.5858,-0.2240 0.5858 -0.7237v -1.4301 h -3.3771 c -0.0689,-0.0000 -0.1034,-0.0345 -0.1551 -0.1034l -0.1378,-0.1895 l -0.2068,-0.3618 c -0.0172,-0.0000 -0.0172,-0.0172 -0.0172 -0.0345c 0.0000,-0.0172 0.0172,-0.0345 0.0345 -0.0517c 1.1199,-1.2406 3.1014,-5.0828 3.7217 -6.4957c 0.0172,-0.0689 0.0517,-0.0861 0.1206 -0.0861c 0.0172,-0.0000 0.3963,0.1551 0.6030 0.1895c -0.7753,2.0848 -2.0504,4.3247 -3.3081 6.3234h 2.7223 v -2.6706 ZM 453.9575,50.0355 ZM 455.7494,48.3987 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 457.7308,50.0355 ZM 462.1761,43.9189 c 0.0000,-0.1206 0.0172,-0.2584 0.1723 -0.3446c 0.1895,-0.1378 0.4997,-0.2929 0.7581 -0.2929c 0.2240,-0.0000 0.2412,0.1895 0.2412 0.5341v 2.7740 h 1.3956 l -0.1034,0.8098 h -1.2922 v 1.4301 c 0.0000,0.4824 0.0689,0.7237 0.5686 0.7237h 0.4652 c 0.1034,-0.0000 0.1206,0.0861 0.1206 0.1206v 0.3791 c 0.0000,-0.0000 -1.1027,-0.0345 -1.8264 -0.0345c -0.6547,-0.0000 -1.6713,0.0345 -1.6713 0.0345v -0.3791 c 0.0000,-0.0345 0.0172,-0.1206 0.1206 -0.1206h 0.4652 c 0.5341,-0.0000 0.5858,-0.2240 0.5858 -0.7237v -1.4301 h -3.3771 c -0.0689,-0.0000 -0.1034,-0.0345 -0.1551 -0.1034l -0.1378,-0.1895 l -0.2068,-0.3618 c -0.0172,-0.0000 -0.0172,-0.0172 -0.0172 -0.0345c 0.0000,-0.0172 0.0172,-0.0345 0.0345 -0.0517c 1.1199,-1.2406 3.1014,-5.0828 3.7217 -6.4957c 0.0172,-0.0689 0.0517,-0.0861 0.1206 -0.0861c 0.0172,-0.0000 0.3963,0.1551 0.6030 0.1895c -0.7753,2.0848 -2.0504,4.3247 -3.3081 6.3234h 2.7223 v -2.6706 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 457.5758,59.7403 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 446.4108,84.6676 ZM 450.8561,78.5510 c 0.0000,-0.1206 0.0172,-0.2584 0.1723 -0.3446c 0.1895,-0.1378 0.4997,-0.2929 0.7581 -0.2929c 0.2240,-0.0000 0.2412,0.1895 0.2412 0.5341v 2.7740 h 1.3956 l -0.1034,0.8098 h -1.2922 v 1.4301 c 0.0000,0.4824 0.0689,0.7237 0.5686 0.7237h 0.4652 c 0.1034,-0.0000 0.1206,0.0861 0.1206 0.1206v 0.3791 c 0.0000,-0.0000 -1.1027,-0.0345 -1.8264 -0.0345c -0.6547,-0.0000 -1.6713,0.0345 -1.6713 0.0345v -0.3791 c 0.0000,-0.0345 0.0172,-0.1206 0.1206 -0.1206h 0.4652 c 0.5341,-0.0000 0.5858,-0.2240 0.5858 -0.7237v -1.4301 h -3.3771 c -0.0689,-0.0000 -0.1034,-0.0345 -0.1551 -0.1034l -0.1378,-0.1895 l -0.2068,-0.3618 c -0.0172,-0.0000 -0.0172,-0.0172 -0.0172 -0.0345c 0.0000,-0.0172 0.0172,-0.0345 0.0345 -0.0517c 1.1199,-1.2406 3.1014,-5.0828 3.7217 -6.4957c 0.0172,-0.0689 0.0517,-0.0861 0.1206 -0.0861c 0.0172,-0.0000 0.3963,0.1551 0.6030 0.1895c -0.7753,2.0848 -2.0504,4.3247 -3.3081 6.3234h 2.7223 v -2.6706 ZM 453.9575,84.6676 ZM 455.7494,83.0307 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 457.7308,84.6676 ZM 461.4525,75.2428 c -0.4307,-0.0000 -1.6885,0.2412 -1.6885 1.2922c 0.0000,0.3101 -0.1206,0.8443 -0.5858 0.8443c -0.4480,-0.0000 -0.4824,-0.4997 -0.4824 -0.5514c 0.0000,-0.5341 0.7064,-2.1193 3.1014 -2.1193c 1.6713,-0.0000 2.1710,1.0510 2.1710 1.7402c 0.0000,0.4307 -0.1378,1.2922 -1.6885 2.2743c 0.9649,0.1551 2.2399,0.8615 2.2399 2.6534c 0.0000,2.2743 -1.7230,3.4977 -3.6700 3.4977c -0.9821,-0.0000 -2.3605,-0.4307 -2.3605 -1.0855c 0.0000,-0.2584 0.2584,-0.5514 0.6030 -0.5514c 0.3274,-0.0000 0.4824,0.1723 0.6375 0.3963c 0.1895,0.2929 0.4997,0.7064 1.3267 0.7064c 0.5686,-0.0000 2.1882,-0.5686 2.1882 -2.7395c 0.0000,-1.8436 -1.2922,-2.1365 -2.2227 -2.1365c -0.1551,-0.0000 -0.3446,0.0345 -0.5341 0.0689l -0.0689,-0.5169 c 1.3267,-0.2240 2.4294,-1.5162 2.4294 -2.3088c 0.0000,-0.9821 -0.6892,-1.4645 -1.3956 -1.4645Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 457.5758,94.3723 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 446.4108,119.2996 ZM 450.8561,113.1830 c 0.0000,-0.1206 0.0172,-0.2584 0.1723 -0.3446c 0.1895,-0.1378 0.4997,-0.2929 0.7581 -0.2929c 0.2240,-0.0000 0.2412,0.1895 0.2412 0.5341v 2.7740 h 1.3956 l -0.1034,0.8098 h -1.2922 v 1.4301 c 0.0000,0.4824 0.0689,0.7237 0.5686 0.7237h 0.4652 c 0.1034,-0.0000 0.1206,0.0861 0.1206 0.1206v 0.3791 c 0.0000,-0.0000 -1.1027,-0.0345 -1.8264 -0.0345c -0.6547,-0.0000 -1.6713,0.0345 -1.6713 0.0345v -0.3791 c 0.0000,-0.0345 0.0172,-0.1206 0.1206 -0.1206h 0.4652 c 0.5341,-0.0000 0.5858,-0.2240 0.5858 -0.7237v -1.4301 h -3.3771 c -0.0689,-0.0000 -0.1034,-0.0345 -0.1551 -0.1034l -0.1378,-0.1895 l -0.2068,-0.3618 c -0.0172,-0.0000 -0.0172,-0.0172 -0.0172 -0.0345c 0.0000,-0.0172 0.0172,-0.0345 0.0345 -0.0517c 1.1199,-1.2406 3.1014,-5.0828 3.7217 -6.4957c 0.0172,-0.0689 0.0517,-0.0861 0.1206 -0.0861c 0.0172,-0.0000 0.3963,0.1551 0.6030 0.1895c -0.7753,2.0848 -2.0504,4.3247 -3.3081 6.3234h 2.7223 v -2.6706 ZM 453.9575,119.2996 ZM 455.7494,117.6628 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 457.7308,119.2996 ZM 458.7302,111.6668 c 0.0000,-0.9821 0.9476,-2.3260 2.7568 -2.3260c 1.3267,-0.0000 2.8774,0.4997 2.8774 2.4811c 0.0000,1.3095 -0.6720,1.9642 -1.6024 2.8602l -1.6368,1.5851 c -0.0861,0.0861 -1.2406,1.2233 -1.2406 2.0331h 2.9291 c 0.5858,-0.0000 0.8960,-0.2929 1.1372 -1.2406l 0.4307,0.0689 l -0.3446,2.1710 h -5.3240 c 0.0000,-0.9649 0.1551,-1.7058 1.7574 -3.3426l 1.2061,-1.1889 c 0.9649,-0.9821 1.3612,-1.8264 1.3612 -2.8774c 0.0000,-1.5679 -1.0683,-2.0159 -1.6541 -2.0159c -1.1889,-0.0000 -1.5162,0.6203 -1.5162 1.0338c 0.0000,0.1378 0.0345,0.2757 0.0689 0.3963c 0.0345,0.1206 0.0689,0.2412 0.0689 0.3791c 0.0000,0.4480 -0.3446,0.6203 -0.6203 0.6203c -0.3791,-0.0000 -0.6547,-0.2929 -0.6547 -0.6375Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 457.5758,129.0043 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 446.4108,153.9316 ZM 450.8561,147.8150 c 0.0000,-0.1206 0.0172,-0.2584 0.1723 -0.3446c 0.1895,-0.1378 0.4997,-0.2929 0.7581 -0.2929c 0.2240,-0.0000 0.2412,0.1895 0.2412 0.5341v 2.7740 h 1.3956 l -0.1034,0.8098 h -1.2922 v 1.4301 c 0.0000,0.4824 0.0689,0.7237 0.5686 0.7237h 0.4652 c 0.1034,-0.0000 0.1206,0.0861 0.1206 0.1206v 0.3791 c 0.0000,-0.0000 -1.1027,-0.0345 -1.8264 -0.0345c -0.6547,-0.0000 -1.6713,0.0345 -1.6713 0.0345v -0.3791 c 0.0000,-0.0345 0.0172,-0.1206 0.1206 -0.1206h 0.4652 c 0.5341,-0.0000 0.5858,-0.2240 0.5858 -0.7237v -1.4301 h -3.3771 c -0.0689,-0.0000 -0.1034,-0.0345 -0.1551 -0.1034l -0.1378,-0.1895 l -0.2068,-0.3618 c -0.0172,-0.0000 -0.0172,-0.0172 -0.0172 -0.0345c 0.0000,-0.0172 0.0172,-0.0345 0.0345 -0.0517c 1.1199,-1.2406 3.1014,-5.0828 3.7217 -6.4957c 0.0172,-0.0689 0.0517,-0.0861 0.1206 -0.0861c 0.0172,-0.0000 0.3963,0.1551 0.6030 0.1895c -0.7753,2.0848 -2.0504,4.3247 -3.3081 6.3234h 2.7223 v -2.6706 ZM 453.9575,153.9316 ZM 455.7494,152.2948 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 457.7308,153.9316 ZM 460.9700,145.7130 c -0.3274,-0.0000 -1.0855,0.3101 -1.4645 0.4824l -0.2068,-0.5341 c 1.5162,-0.7064 2.1020,-1.0683 2.9635 -1.6885h 0.3274 v 8.6666 c 0.0000,0.6203 0.0861,0.7926 0.6547 0.7926h 0.8960 c 0.0517,-0.0000 0.1378,0.0345 0.1378 0.1378v 0.3791 l -2.3605,-0.0345 l -2.3950,0.0345 v -0.3791 c 0.0172,-0.0517 0.0345,-0.1378 0.1378 -0.1378h 1.0338 c 0.6547,-0.0000 0.6547,-0.2929 0.6547 -0.7926v -5.9271 c 0.0000,-0.5858 0.0000,-0.9993 -0.3791 -0.9993Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 457.5758,163.6364 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 446.4108,188.5637 ZM 450.8561,182.4471 c 0.0000,-0.1206 0.0172,-0.2584 0.1723 -0.3446c 0.1895,-0.1378 0.4997,-0.2929 0.7581 -0.2929c 0.2240,-0.0000 0.2412,0.1895 0.2412 0.5341v 2.7740 h 1.3956 l -0.1034,0.8098 h -1.2922 v 1.4301 c 0.0000,0.4824 0.0689,0.7237 0.5686 0.7237h 0.4652 c 0.1034,-0.0000 0.1206,0.0861 0.1206 0.1206v 0.3791 c 0.0000,-0.0000 -1.1027,-0.0345 -1.8264 -0.0345c -0.6547,-0.0000 -1.6713,0.0345 -1.6713 0.0345v -0.3791 c 0.0000,-0.0345 0.0172,-0.1206 0.1206 -0.1206h 0.4652 c 0.5341,-0.0000 0.5858,-0.2240 0.5858 -0.7237v -1.4301 h -3.3771 c -0.0689,-0.0000 -0.1034,-0.0345 -0.1551 -0.1034l -0.1378,-0.1895 l -0.2068,-0.3618 c -0.0172,-0.0000 -0.0172,-0.0172 -0.0172 -0.0345c 0.0000,-0.0172 0.0172,-0.0345 0.0345 -0.0517c 1.1199,-1.2406 3.1014,-5.0828 3.7217 -6.4957c 0.0172,-0.0689 0.0517,-0.0861 0.1206 -0.0861c 0.0172,-0.0000 0.3963,0.1551 0.6030 0.1895c -0.7753,2.0848 -2.0504,4.3247 -3.3081 6.3234h 2.7223 v -2.6706 ZM 453.9575,188.5637 ZM 455.7494,186.9268 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 457.7308,188.5637 ZM 461.5042,179.2079 c -0.7409,-0.0000 -1.8264,0.7237 -1.8264 4.7382c 0.0000,1.4128 0.2584,4.2558 1.7747 4.2558c 0.2929,-0.0000 1.1199,-0.1895 1.4818 -1.5335c 0.2240,-0.8270 0.3446,-1.8608 0.3446 -3.3598c 0.0000,-2.1882 -0.5514,-3.4115 -1.0510 -3.8423c -0.1895,-0.1723 -0.4480,-0.2584 -0.7237 -0.2584ZM 461.5042,179.2079 ZM 461.4352,188.7704 c -1.8436,-0.0000 -3.0841,-2.3605 -3.0841 -4.9967c 0.0000,-3.2220 1.5335,-5.1690 3.1531 -5.1690c 0.7409,-0.0000 1.4818,0.4652 1.9814 1.1372c 0.7237,0.9649 1.1027,2.2571 1.1027 3.8767c 0.0000,3.8250 -1.8953,5.1517 -3.1531 5.1517Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 457.5758,198.2684 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 342.5147,15.4035 ZM 346.2364,5.9788 c -0.4307,-0.0000 -1.6885,0.2412 -1.6885 1.2922c 0.0000,0.3101 -0.1206,0.8443 -0.5858 0.8443c -0.4480,-0.0000 -0.4824,-0.4997 -0.4824 -0.5514c 0.0000,-0.5341 0.7064,-2.1193 3.1014 -2.1193c 1.6713,-0.0000 2.1710,1.0510 2.1710 1.7402c 0.0000,0.4307 -0.1378,1.2922 -1.6885 2.2743c 0.9649,0.1551 2.2399,0.8615 2.2399 2.6534c 0.0000,2.2743 -1.7230,3.4977 -3.6700 3.4977c -0.9821,-0.0000 -2.3605,-0.4307 -2.3605 -1.0855c 0.0000,-0.2584 0.2584,-0.5514 0.6030 -0.5514c 0.3274,-0.0000 0.4824,0.1723 0.6375 0.3963c 0.1895,0.2929 0.4997,0.7064 1.3267 0.7064c 0.5686,-0.0000 2.1882,-0.5686 2.1882 -2.7395c 0.0000,-1.8436 -1.2922,-2.1365 -2.2227 -2.1365c -0.1551,-0.0000 -0.3446,0.0345 -0.5341 0.0689l -0.0689,-0.5169 c 1.3267,-0.2240 2.4294,-1.5162 2.4294 -2.3088c 0.0000,-0.9821 -0.6892,-1.4645 -1.3956 -1.4645ZM 350.0614,15.4035 ZM 351.8533,13.7667 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 353.8347,15.4035 ZM 359.1588,12.4917 c 0.0000,-1.7747 -0.9649,-2.6534 -2.0331 -2.6534c -0.7926,-0.0000 -1.3956,0.1206 -2.0676 0.3963l 0.5514,-4.7038 c 0.5686,0.0517 1.1544,0.0689 1.7574 0.0689c 0.8615,-0.0000 1.7574,-0.0517 2.6879 -0.1551l 0.1034,0.0517 l -0.2584,1.1199 c -0.6720,0.0689 -1.2233,0.0861 -1.7058 0.0861c -0.7753,-0.0000 -1.3612,-0.0689 -1.9642 -0.1378l -0.3274,2.7223 c 0.3618,-0.1378 0.9821,-0.2584 1.6541 -0.2584c 1.8264,-0.0000 2.8429,1.5851 2.8429 3.1703c 0.0000,1.9297 -1.3439,3.4115 -3.2909 3.4115c -0.9821,-0.0000 -2.4122,-0.5514 -2.4122 -1.2233c 0.0000,-0.3274 0.2757,-0.5514 0.5858 -0.5514c 0.3446,-0.0000 0.5686,0.2584 0.7753 0.5341c 0.2584,0.3101 0.5341,0.6547 1.0855 0.6547c 1.1027,-0.0000 2.0159,-1.0338 2.0159 -2.5328Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 353.6797,25.1082 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 342.5147,50.0355 ZM 346.2364,40.6108 c -0.4307,-0.0000 -1.6885,0.2412 -1.6885 1.2922c 0.0000,0.3101 -0.1206,0.8443 -0.5858 0.8443c -0.4480,-0.0000 -0.4824,-0.4997 -0.4824 -0.5514c 0.0000,-0.5341 0.7064,-2.1193 3.1014 -2.1193c 1.6713,-0.0000 2.1710,1.0510 2.1710 1.7402c 0.0000,0.4307 -0.1378,1.2922 -1.6885 2.2743c 0.9649,0.1551 2.2399,0.8615 2.2399 2.6534c 0.0000,2.2743 -1.7230,3.4977 -3.6700 3.4977c -0.9821,-0.0000 -2.3605,-0.4307 -2.3605 -1.0855c 0.0000,-0.2584 0.2584,-0.5514 0.6030 -0.5514c 0.3274,-0.0000 0.4824,0.1723 0.6375 0.3963c 0.1895,0.2929 0.4997,0.7064 1.3267 0.7064c 0.5686,-0.0000 2.1882,-0.5686 2.1882 -2.7395c 0.0000,-1.8436 -1.2922,-2.1365 -2.2227 -2.1365c -0.1551,-0.0000 -0.3446,0.0345 -0.5341 0.0689l -0.0689,-0.5169 c 1.3267,-0.2240 2.4294,-1.5162 2.4294 -2.3088c 0.0000,-0.9821 -0.6892,-1.4645 -1.3956 -1.4645ZM 350.0614,50.0355 ZM 351.8533,48.3987 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 353.8347,50.0355 ZM 358.2800,43.9189 c 0.0000,-0.1206 0.0172,-0.2584 0.1723 -0.3446c 0.1895,-0.1378 0.4997,-0.2929 0.7581 -0.2929c 0.2240,-0.0000 0.2412,0.1895 0.2412 0.5341v 2.7740 h 1.3956 l -0.1034,0.8098 h -1.2922 v 1.4301 c 0.0000,0.4824 0.0689,0.7237 0.5686 0.7237h 0.4652 c 0.1034,-0.0000 0.1206,0.0861 0.1206 0.1206v 0.3791 c 0.0000,-0.0000 -1.1027,-0.0345 -1.8264 -0.0345c -0.6547,-0.0000 -1.6713,0.0345 -1.6713 0.0345v -0.3791 c 0.0000,-0.0345 0.0172,-0.1206 0.1206 -0.1206h 0.4652 c 0.5341,-0.0000 0.5858,-0.2240 0.5858 -0.7237v -1.4301 h -3.3771 c -0.0689,-0.0000 -0.1034,-0.0345 -0.1551 -0.1034l -0.1378,-0.1895 l -0.2068,-0.3618 c -0.0172,-0.0000 -0.0172,-0.0172 -0.0172 -0.0345c 0.0000,-0.0172 0.0172,-0.0345 0.0345 -0.0517c 1.1199,-1.2406 3.1014,-5.0828 3.7217 -6.4957c 0.0172,-0.0689 0.0517,-0.0861 0.1206 -0.0861c 0.0172,-0.0000 0.3963,0.1551 0.6030 0.1895c -0.7753,2.0848 -2.0504,4.3247 -3.3081 6.3234h 2.7223 v -2.6706 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 353.6797,59.7403 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 342.5147,84.6676 ZM 346.2364,75.2428 c -0.4307,-0.0000 -1.6885,0.2412 -1.6885 1.2922c 0.0000,0.3101 -0.1206,0.8443 -0.5858 0.8443c -0.4480,-0.0000 -0.4824,-0.4997 -0.4824 -0.5514c 0.0000,-0.5341 0.7064,-2.1193 3.1014 -2.1193c 1.6713,-0.0000 2.1710,1.0510 2.1710 1.7402c 0.0000,0.4307 -0.1378,1.2922 -1.6885 2.2743c 0.9649,0.1551 2.2399,0.8615 2.2399 2.6534c 0.0000,2.2743 -1.7230,3.4977 -3.6700 3.4977c -0.9821,-0.0000 -2.3605,-0.4307 -2.3605 -1.0855c 0.0000,-0.2584 0.2584,-0.5514 0.6030 -0.5514c 0.3274,-0.0000 0.4824,0.1723 0.6375 0.3963c 0.1895,0.2929 0.4997,0.7064 1.3267 0.7064c 0.5686,-0.0000 2.1882,-0.5686 2.1882 -2.7395c 0.0000,-1.8436 -1.2922,-2.1365 -2.2227 -2.1365c -0.1551,-0.0000 -0.3446,0.0345 -0.5341 0.0689l -0.0689,-0.5169 c 1.3267,-0.2240 2.4294,-1.5162 2.4294 -2.3088c 0.0000,-0.9821 -0.6892,-1.4645 -1.3956 -1.4645ZM 350.0614,84.6676 ZM 351.8533,83.0307 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 353.8347,84.6676 ZM 357.5564,75.2428 c -0.4307,-0.0000 -1.6885,0.2412 -1.6885 1.2922c 0.0000,0.3101 -0.1206,0.8443 -0.5858 0.8443c -0.4480,-0.0000 -0.4824,-0.4997 -0.4824 -0.5514c 0.0000,-0.5341 0.7064,-2.1193 3.1014 -2.1193c 1.6713,-0.0000 2.1710,1.0510 2.1710 1.7402c 0.0000,0.4307 -0.1378,1.2922 -1.6885 2.2743c 0.9649,0.1551 2.2399,0.8615 2.2399 2.6534c 0.0000,2.2743 -1.7230,3.4977 -3.6700 3.4977c -0.9821,-0.0000 -2.3605,-0.4307 -2.3605 -1.0855c 0.0000,-0.2584 0.2584,-0.5514 0.6030 -0.5514c 0.3274,-0.0000 0.4824,0.1723 0.6375 0.3963c 0.1895,0.2929 0.4997,0.7064 1.3267 0.7064c 0.5686,-0.0000 2.1882,-0.5686 2.1882 -2.7395c 0.0000,-1.8436 -1.2922,-2.1365 -2.2227 -2.1365c -0.1551,-0.0000 -0.3446,0.0345 -0.5341 0.0689l -0.0689,-0.5169 c 1.3267,-0.2240 2.4294,-1.5162 2.4294 -2.3088c 0.0000,-0.9821 -0.6892,-1.4645 -1.3956 -1.4645Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 353.6797,94.3723 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 342.5147,119.2996 ZM 346.2364,109.8749 c -0.4307,-0.0000 -1.6885,0.2412 -1.6885 1.2922c 0.0000,0.3101 -0.1206,0.8443 -0.5858 0.8443c -0.4480,-0.0000 -0.4824,-0.4997 -0.4824 -0.5514c 0.0000,-0.5341 0.7064,-2.1193 3.1014 -2.1193c 1.6713,-0.0000 2.1710,1.0510 2.1710 1.7402c 0.0000,0.4307 -0.1378,1.2922 -1.6885 2.2743c 0.9649,0.1551 2.2399,0.8615 2.2399 2.6534c 0.0000,2.2743 -1.7230,3.4977 -3.6700 3.4977c -0.9821,-0.0000 -2.3605,-0.4307 -2.3605 -1.0855c 0.0000,-0.2584 0.2584,-0.5514 0.6030 -0.5514c 0.3274,-0.0000 0.4824,0.1723 0.6375 0.3963c 0.1895,0.2929 0.4997,0.7064 1.3267 0.7064c 0.5686,-0.0000 2.1882,-0.5686 2.1882 -2.7395c 0.0000,-1.8436 -1.2922,-2.1365 -2.2227 -2.1365c -0.1551,-0.0000 -0.3446,0.0345 -0.5341 0.0689l -0.0689,-0.5169 c 1.3267,-0.2240 2.4294,-1.5162 2.4294 -2.3088c 0.0000,-0.9821 -0.6892,-1.4645 -1.3956 -1.4645ZM 350.0614,119.2996 ZM 351.8533,117.6628 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 353.8347,119.2996 ZM 354.8341,111.6668 c 0.0000,-0.9821 0.9476,-2.3260 2.7568 -2.3260c 1.3267,-0.0000 2.8774,0.4997 2.8774 2.4811c 0.0000,1.3095 -0.6720,1.9642 -1.6024 2.8602l -1.6368,1.5851 c -0.0861,0.0861 -1.2406,1.2233 -1.2406 2.0331h 2.9291 c 0.5858,-0.0000 0.8960,-0.2929 1.1372 -1.2406l 0.4307,0.0689 l -0.3446,2.1710 h -5.3240 c 0.0000,-0.9649 0.1551,-1.7058 1.7574 -3.3426l 1.2061,-1.1889 c 0.9649,-0.9821 1.3612,-1.8264 1.3612 -2.8774c 0.0000,-1.5679 -1.0683,-2.0159 -1.6541 -2.0159c -1.1889,-0.0000 -1.5162,0.6203 -1.5162 1.0338c 0.0000,0.1378 0.0345,0.2757 0.0689 0.3963c 0.0345,0.1206 0.0689,0.2412 0.0689 0.3791c 0.0000,0.4480 -0.3446,0.6203 -0.6203 0.6203c -0.3791,-0.0000 -0.6547,-0.2929 -0.6547 -0.6375Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 353.6797,129.0043 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 342.5147,153.9316 ZM 346.2364,144.5069 c -0.4307,-0.0000 -1.6885,0.2412 -1.6885 1.2922c 0.0000,0.3101 -0.1206,0.8443 -0.5858 0.8443c -0.4480,-0.0000 -0.4824,-0.4997 -0.4824 -0.5514c 0.0000,-0.5341 0.7064,-2.1193 3.1014 -2.1193c 1.6713,-0.0000 2.1710,1.0510 2.1710 1.7402c 0.0000,0.4307 -0.1378,1.2922 -1.6885 2.2743c 0.9649,0.1551 2.2399,0.8615 2.2399 2.6534c 0.0000,2.2743 -1.7230,3.4977 -3.6700 3.4977c -0.9821,-0.0000 -2.3605,-0.4307 -2.3605 -1.0855c 0.0000,-0.2584 0.2584,-0.5514 0.6030 -0.5514c 0.3274,-0.0000 0.4824,0.1723 0.6375 0.3963c 0.1895,0.2929 0.4997,0.7064 1.3267 0.7064c 0.5686,-0.0000 2.1882,-0.5686 2.1882 -2.7395c 0.0000,-1.8436 -1.2922,-2.1365 -2.2227 -2.1365c -0.1551,-0.0000 -0.3446,0.0345 -0.5341 0.0689l -0.0689,-0.5169 c 1.3267,-0.2240 2.4294,-1.5162 2.4294 -2.3088c 0.0000,-0.9821 -0.6892,-1.4645 -1.3956 -1.4645ZM 350.0614,153.9316 ZM 351.8533,152.2948 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 353.8347,153.9316 ZM 357.0739,145.7130 c -0.3274,-0.0000 -1.0855,0.3101 -1.4645 0.4824l -0.2068,-0.5341 c 1.5162,-0.7064 2.1020,-1.0683 2.9635 -1.6885h 0.3274 v 8.6666 c 0.0000,0.6203 0.0861,0.7926 0.6547 0.7926h 0.8960 c 0.0517,-0.0000 0.1378,0.0345 0.1378 0.1378v 0.3791 l -2.3605,-0.0345 l -2.3950,0.0345 v -0.3791 c 0.0172,-0.0517 0.0345,-0.1378 0.1378 -0.1378h 1.0338 c 0.6547,-0.0000 0.6547,-0.2929 0.6547 -0.7926v -5.9271 c 0.0000,-0.5858 0.0000,-0.9993 -0.3791 -0.9993Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 353.6797,163.6364 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 342.5147,188.5637 ZM 346.2364,179.1389 c -0.4307,-0.0000 -1.6885,0.2412 -1.6885 1.2922c 0.0000,0.3101 -0.1206,0.8443 -0.5858 0.8443c -0.4480,-0.0000 -0.4824,-0.4997 -0.4824 -0.5514c 0.0000,-0.5341 0.7064,-2.1193 3.1014 -2.1193c 1.6713,-0.0000 2.1710,1.0510 2.1710 1.7402c 0.0000,0.4307 -0.1378,1.2922 -1.6885 2.2743c 0.9649,0.1551 2.2399,0.8615 2.2399 2.6534c 0.0000,2.2743 -1.7230,3.4977 -3.6700 3.4977c -0.9821,-0.0000 -2.3605,-0.4307 -2.3605 -1.0855c 0.0000,-0.2584 0.2584,-0.5514 0.6030 -0.5514c 0.3274,-0.0000 0.4824,0.1723 0.6375 0.3963c 0.1895,0.2929 0.4997,0.7064 1.3267 0.7064c 0.5686,-0.0000 2.1882,-0.5686 2.1882 -2.7395c 0.0000,-1.8436 -1.2922,-2.1365 -2.2227 -2.1365c -0.1551,-0.0000 -0.3446,0.0345 -0.5341 0.0689l -0.0689,-0.5169 c 1.3267,-0.2240 2.4294,-1.5162 2.4294 -2.3088c 0.0000,-0.9821 -0.6892,-1.4645 -1.3956 -1.4645ZM 350.0614,188.5637 ZM 351.8533,186.9268 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 353.8347,188.5637 ZM 357.6081,179.2079 c -0.7409,-0.0000 -1.8264,0.7237 -1.8264 4.7382c 0.0000,1.4128 0.2584,4.2558 1.7747 4.2558c 0.2929,-0.0000 1.1199,-0.1895 1.4818 -1.5335c 0.2240,-0.8270 0.3446,-1.8608 0.3446 -3.3598c 0.0000,-2.1882 -0.5514,-3.4115 -1.0510 -3.8423c -0.1895,-0.1723 -0.4480,-0.2584 -0.7237 -0.2584ZM 357.6081,179.2079 ZM 357.5391,188.7704 c -1.8436,-0.0000 -3.0841,-2.3605 -3.0841 -4.9967c 0.0000,-3.2220 1.5335,-5.1690 3.1531 -5.1690c 0.7409,-0.0000 1.4818,0.4652 1.9814 1.1372c 0.7237,0.9649 1.1027,2.2571 1.1027 3.8767c 0.0000,3.8250 -1.8953,5.1517 -3.1531 5.1517Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 353.6797,198.2684 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 238.6186,15.4035 ZM 239.6179,7.7707 c 0.0000,-0.9821 0.9476,-2.3260 2.7568 -2.3260c 1.3267,-0.0000 2.8774,0.4997 2.8774 2.4811c 0.0000,1.3095 -0.6720,1.9642 -1.6024 2.8602l -1.6368,1.5851 c -0.0861,0.0861 -1.2406,1.2233 -1.2406 2.0331h 2.9291 c 0.5858,-0.0000 0.8960,-0.2929 1.1372 -1.2406l 0.4307,0.0689 l -0.3446,2.1710 h -5.3240 c 0.0000,-0.9649 0.1551,-1.7058 1.7574 -3.3426l 1.2061,-1.1889 c 0.9649,-0.9821 1.3612,-1.8264 1.3612 -2.8774c 0.0000,-1.5679 -1.0683,-2.0159 -1.6541 -2.0159c -1.1889,-0.0000 -1.5162,0.6203 -1.5162 1.0338c 0.0000,0.1378 0.0345,0.2757 0.0689 0.3963c 0.0345,0.1206 0.0689,0.2412 0.0689 0.3791c 0.0000,0.4480 -0.3446,0.6203 -0.6203 0.6203c -0.3791,-0.0000 -0.6547,-0.2929 -0.6547 -0.6375ZM 246.1653,15.4035 ZM 247.9572,13.7667 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 249.9386,15.4035 ZM 255.2626,12.4917 c 0.0000,-1.7747 -0.9649,-2.6534 -2.0331 -2.6534c -0.7926,-0.0000 -1.3956,0.1206 -2.0676 0.3963l 0.5514,-4.7038 c 0.5686,0.0517 1.1544,0.0689 1.7574 0.0689c 0.8615,-0.0000 1.7574,-0.0517 2.6879 -0.1551l 0.1034,0.0517 l -0.2584,1.1199 c -0.6720,0.0689 -1.2233,0.0861 -1.7058 0.0861c -0.7753,-0.0000 -1.3612,-0.0689 -1.9642 -0.1378l -0.3274,2.7223 c 0.3618,-0.1378 0.9821,-0.2584 1.6541 -0.2584c 1.8264,-0.0000 2.8429,1.5851 2.8429 3.1703c 0.0000,1.9297 -1.3439,3.4115 -3.2909 3.4115c -0.9821,-0.0000 -2.4122,-0.5514 -2.4122 -1.2233c 0.0000,-0.3274 0.2757,-0.5514 0.5858 -0.5514c 0.3446,-0.0000 0.5686,0.2584 0.7753 0.5341c 0.2584,0.3101 0.5341,0.6547 1.0855 0.6547c 1.1027,-0.0000 2.0159,-1.0338 2.0159 -2.5328Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 249.7835,25.1082 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 238.6186,50.0355 ZM 239.6179,42.4027 c 0.0000,-0.9821 0.9476,-2.3260 2.7568 -2.3260c 1.3267,-0.0000 2.8774,0.4997 2.8774 2.4811c 0.0000,1.3095 -0.6720,1.9642 -1.6024 2.8602l -1.6368,1.5851 c -0.0861,0.0861 -1.2406,1.2233 -1.2406 2.0331h 2.9291 c 0.5858,-0.0000 0.8960,-0.2929 1.1372 -1.2406l 0.4307,0.0689 l -0.3446,2.1710 h -5.3240 c 0.0000,-0.9649 0.1551,-1.7058 1.7574 -3.3426l 1.2061,-1.1889 c 0.9649,-0.9821 1.3612,-1.8264 1.3612 -2.8774c 0.0000,-1.5679 -1.0683,-2.0159 -1.6541 -2.0159c -1.1889,-0.0000 -1.5162,0.6203 -1.5162 1.0338c 0.0000,0.1378 0.0345,0.2757 0.0689 0.3963c 0.0345,0.1206 0.0689,0.2412 0.0689 0.3791c 0.0000,0.4480 -0.3446,0.6203 -0.6203 0.6203c -0.3791,-0.0000 -0.6547,-0.2929 -0.6547 -0.6375ZM 246.1653,50.0355 ZM 247.9572,48.3987 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 249.9386,50.0355 ZM 254.3839,43.9189 c 0.0000,-0.1206 0.0172,-0.2584 0.1723 -0.3446c 0.1895,-0.1378 0.4997,-0.2929 0.7581 -0.2929c 0.2240,-0.0000 0.2412,0.1895 0.2412 0.5341v 2.7740 h 1.3956 l -0.1034,0.8098 h -1.2922 v 1.4301 c 0.0000,0.4824 0.0689,0.7237 0.5686 0.7237h 0.4652 c 0.1034,-0.0000 0.1206,0.0861 0.1206 0.1206v 0.3791 c 0.0000,-0.0000 -1.1027,-0.0345 -1.8264 -0.0345c -0.6547,-0.0000 -1.6713,0.0345 -1.6713 0.0345v -0.3791 c 0.0000,-0.0345 0.0172,-0.1206 0.1206 -0.1206h 0.4652 c 0.5341,-0.0000 0.5858,-0.2240 0.5858 -0.7237v -1.4301 h -3.3771 c -0.0689,-0.0000 -0.1034,-0.0345 -0.1551 -0.1034l -0.1378,-0.1895 l -0.2068,-0.3618 c -0.0172,-0.0000 -0.0172,-0.0172 -0.0172 -0.0345c 0.0000,-0.0172 0.0172,-0.0345 0.0345 -0.0517c 1.1199,-1.2406 3.1014,-5.0828 3.7217 -6.4957c 0.0172,-0.0689 0.0517,-0.0861 0.1206 -0.0861c 0.0172,-0.0000 0.3963,0.1551 0.6030 0.1895c -0.7753,2.0848 -2.0504,4.3247 -3.3081 6.3234h 2.7223 v -2.6706 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 249.7835,59.7403 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 238.6186,84.6676 ZM 239.6179,77.0347 c 0.0000,-0.9821 0.9476,-2.3260 2.7568 -2.3260c 1.3267,-0.0000 2.8774,0.4997 2.8774 2.4811c 0.0000,1.3095 -0.6720,1.9642 -1.6024 2.8602l -1.6368,1.5851 c -0.0861,0.0861 -1.2406,1.2233 -1.2406 2.0331h 2.9291 c 0.5858,-0.0000 0.8960,-0.2929 1.1372 -1.2406l 0.4307,0.0689 l -0.3446,2.1710 h -5.3240 c 0.0000,-0.9649 0.1551,-1.7058 1.7574 -3.3426l 1.2061,-1.1889 c 0.9649,-0.9821 1.3612,-1.8264 1.3612 -2.8774c 0.0000,-1.5679 -1.0683,-2.0159 -1.6541 -2.0159c -1.1889,-0.0000 -1.5162,0.6203 -1.5162 1.0338c 0.0000,0.1378 0.0345,0.2757 0.0689 0.3963c 0.0345,0.1206 0.0689,0.2412 0.0689 0.3791c 0.0000,0.4480 -0.3446,0.6203 -0.6203 0.6203c -0.3791,-0.0000 -0.6547,-0.2929 -0.6547 -0.6375ZM 246.1653,84.6676 ZM 247.9572,83.0307 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 249.9386,84.6676 ZM 253.6603,75.2428 c -0.4307,-0.0000 -1.6885,0.2412 -1.6885 1.2922c 0.0000,0.3101 -0.1206,0.8443 -0.5858 0.8443c -0.4480,-0.0000 -0.4824,-0.4997 -0.4824 -0.5514c 0.0000,-0.5341 0.7064,-2.1193 3.1014 -2.1193c 1.6713,-0.0000 2.1710,1.0510 2.1710 1.7402c 0.0000,0.4307 -0.1378,1.2922 -1.6885 2.2743c 0.9649,0.1551 2.2399,0.8615 2.2399 2.6534c 0.0000,2.2743 -1.7230,3.4977 -3.6700 3.4977c -0.9821,-0.0000 -2.3605,-0.4307 -2.3605 -1.0855c 0.0000,-0.2584 0.2584,-0.5514 0.6030 -0.5514c 0.3274,-0.0000 0.4824,0.1723 0.6375 0.3963c 0.1895,0.2929 0.4997,0.7064 1.3267 0.7064c 0.5686,-0.0000 2.1882,-0.5686 2.1882 -2.7395c 0.0000,-1.8436 -1.2922,-2.1365 -2.2227 -2.1365c -0.1551,-0.0000 -0.3446,0.0345 -0.5341 0.0689l -0.0689,-0.5169 c 1.3267,-0.2240 2.4294,-1.5162 2.4294 -2.3088c 0.0000,-0.9821 -0.6892,-1.4645 -1.3956 -1.4645Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 249.7835,94.3723 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 238.6186,119.2996 ZM 239.6179,111.6668 c 0.0000,-0.9821 0.9476,-2.3260 2.7568 -2.3260c 1.3267,-0.0000 2.8774,0.4997 2.8774 2.4811c 0.0000,1.3095 -0.6720,1.9642 -1.6024 2.8602l -1.6368,1.5851 c -0.0861,0.0861 -1.2406,1.2233 -1.2406 2.0331h 2.9291 c 0.5858,-0.0000 0.8960,-0.2929 1.1372 -1.2406l 0.4307,0.0689 l -0.3446,2.1710 h -5.3240 c 0.0000,-0.9649 0.1551,-1.7058 1.7574 -3.3426l 1.2061,-1.1889 c 0.9649,-0.9821 1.3612,-1.8264 1.3612 -2.8774c 0.0000,-1.5679 -1.0683,-2.0159 -1.6541 -2.0159c -1.1889,-0.0000 -1.5162,0.6203 -1.5162 1.0338c 0.0000,0.1378 0.0345,0.2757 0.0689 0.3963c 0.0345,0.1206 0.0689,0.2412 0.0689 0.3791c 0.0000,0.4480 -0.3446,0.6203 -0.6203 0.6203c -0.3791,-0.0000 -0.6547,-0.2929 -0.6547 -0.6375ZM 246.1653,119.2996 ZM 247.9572,117.6628 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 249.9386,119.2996 ZM 250.9380,111.6668 c 0.0000,-0.9821 0.9476,-2.3260 2.7568 -2.3260c 1.3267,-0.0000 2.8774,0.4997 2.8774 2.4811c 0.0000,1.3095 -0.6720,1.9642 -1.6024 2.8602l -1.6368,1.5851 c -0.0861,0.0861 -1.2406,1.2233 -1.2406 2.0331h 2.9291 c 0.5858,-0.0000 0.8960,-0.2929 1.1372 -1.2406l 0.4307,0.0689 l -0.3446,2.1710 h -5.3240 c 0.0000,-0.9649 0.1551,-1.7058 1.7574 -3.3426l 1.2061,-1.1889 c 0.9649,-0.9821 1.3612,-1.8264 1.3612 -2.8774c 0.0000,-1.5679 -1.0683,-2.0159 -1.6541 -2.0159c -1.1889,-0.0000 -1.5162,0.6203 -1.5162 1.0338c 0.0000,0.1378 0.0345,0.2757 0.0689 0.3963c 0.0345,0.1206 0.0689,0.2412 0.0689 0.3791c 0.0000,0.4480 -0.3446,0.6203 -0.6203 0.6203c -0.3791,-0.0000 -0.6547,-0.2929 -0.6547 -0.6375Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 249.7835,129.0043 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 238.6186,153.9316 ZM 239.6179,146.2988 c 0.0000,-0.9821 0.9476,-2.3260 2.7568 -2.3260c 1.3267,-0.0000 2.8774,0.4997 2.8774 2.4811c 0.0000,1.3095 -0.6720,1.9642 -1.6024 2.8602l -1.6368,1.5851 c -0.0861,0.0861 -1.2406,1.2233 -1.2406 2.0331h 2.9291 c 0.5858,-0.0000 0.8960,-0.2929 1.1372 -1.2406l 0.4307,0.0689 l -0.3446,2.1710 h -5.3240 c 0.0000,-0.9649 0.1551,-1.7058 1.7574 -3.3426l 1.2061,-1.1889 c 0.9649,-0.9821 1.3612,-1.8264 1.3612 -2.8774c 0.0000,-1.5679 -1.0683,-2.0159 -1.6541 -2.0159c -1.1889,-0.0000 -1.5162,0.6203 -1.5162 1.0338c 0.0000,0.1378 0.0345,0.2757 0.0689 0.3963c 0.0345,0.1206 0.0689,0.2412 0.0689 0.3791c 0.0000,0.4480 -0.3446,0.6203 -0.6203 0.6203c -0.3791,-0.0000 -0.6547,-0.2929 -0.6547 -0.6375ZM 246.1653,153.9316 ZM 247.9572,152.2948 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 249.9386,153.9316 ZM 253.1778,145.7130 c -0.3274,-0.0000 -1.0855,0.3101 -1.4645 0.4824l -0.2068,-0.5341 c 1.5162,-0.7064 2.1020,-1.0683 2.9635 -1.6885h 0.3274 v 8.6666 c 0.0000,0.6203 0.0861,0.7926 0.6547 0.7926h 0.8960 c 0.0517,-0.0000 0.1378,0.0345 0.1378 0.1378v 0.3791 l -2.3605,-0.0345 l -2.3950,0.0345 v -0.3791 c 0.0172,-0.0517 0.0345,-0.1378 0.1378 -0.1378h 1.0338 c 0.6547,-0.0000 0.6547,-0.2929 0.6547 -0.7926v -5.9271 c 0.0000,-0.5858 0.0000,-0.9993 -0.3791 -0.9993Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 249.7835,163.6364 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 238.6186,188.5637 ZM 239.6179,180.9308 c 0.0000,-0.9821 0.9476,-2.3260 2.7568 -2.3260c 1.3267,-0.0000 2.8774,0.4997 2.8774 2.4811c 0.0000,1.3095 -0.6720,1.9642 -1.6024 2.8602l -1.6368,1.5851 c -0.0861,0.0861 -1.2406,1.2233 -1.2406 2.0331h 2.9291 c 0.5858,-0.0000 0.8960,-0.2929 1.1372 -1.2406l 0.4307,0.0689 l -0.3446,2.1710 h -5.3240 c 0.0000,-0.9649 0.1551,-1.7058 1.7574 -3.3426l 1.2061,-1.1889 c 0.9649,-0.9821 1.3612,-1.8264 1.3612 -2.8774c 0.0000,-1.5679 -1.0683,-2.0159 -1.6541 -2.0159c -1.1889,-0.0000 -1.5162,0.6203 -1.5162 1.0338c 0.0000,0.1378 0.0345,0.2757 0.0689 0.3963c 0.0345,0.1206 0.0689,0.2412 0.0689 0.3791c 0.0000,0.4480 -0.3446,0.6203 -0.6203 0.6203c -0.3791,-0.0000 -0.6547,-0.2929 -0.6547 -0.6375ZM 246.1653,188.5637 ZM 247.9572,186.9268 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 249.9386,188.5637 ZM 253.7120,179.2079 c -0.7409,-0.0000 -1.8264,0.7237 -1.8264 4.7382c 0.0000,1.4128 0.2584,4.2558 1.7747 4.2558c 0.2929,-0.0000 1.1199,-0.1895 1.4818 -1.5335c 0.2240,-0.8270 0.3446,-1.8608 0.3446 -3.3598c 0.0000,-2.1882 -0.5514,-3.4115 -1.0510 -3.8423c -0.1895,-0.1723 -0.4480,-0.2584 -0.7237 -0.2584ZM 253.7120,179.2079 ZM 253.6430,188.7704 c -1.8436,-0.0000 -3.0841,-2.3605 -3.0841 -4.9967c 0.0000,-3.2220 1.5335,-5.1690 3.1531 -5.1690c 0.7409,-0.0000 1.4818,0.4652 1.9814 1.1372c 0.7237,0.9649 1.1027,2.2571 1.1027 3.8767c 0.0000,3.8250 -1.8953,5.1517 -3.1531 5.1517Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 249.7835,198.2684 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 134.7225,15.4035 ZM 137.9617,7.1849 c -0.3274,-0.0000 -1.0855,0.3101 -1.4645 0.4824l -0.2068,-0.5341 c 1.5162,-0.7064 2.1020,-1.0683 2.9635 -1.6885h 0.3274 v 8.6666 c 0.0000,0.6203 0.0861,0.7926 0.6547 0.7926h 0.8960 c 0.0517,-0.0000 0.1378,0.0345 0.1378 0.1378v 0.3791 l -2.3605,-0.0345 l -2.3950,0.0345 v -0.3791 c 0.0172,-0.0517 0.0345,-0.1378 0.1378 -0.1378h 1.0338 c 0.6547,-0.0000 0.6547,-0.2929 0.6547 -0.7926v -5.9271 c 0.0000,-0.5858 0.0000,-0.9993 -0.3791 -0.9993ZM 142.2692,15.4035 ZM 144.0611,13.7667 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 146.0425,15.4035 ZM 151.3665,12.4917 c 0.0000,-1.7747 -0.9649,-2.6534 -2.0331 -2.6534c -0.7926,-0.0000 -1.3956,0.1206 -2.0676 0.3963l 0.5514,-4.7038 c 0.5686,0.0517 1.1544,0.0689 1.7574 0.0689c 0.8615,-0.0000 1.7574,-0.0517 2.6879 -0.1551l 0.1034,0.0517 l -0.2584,1.1199 c -0.6720,0.0689 -1.2233,0.0861 -1.7058 0.0861c -0.7753,-0.0000 -1.3612,-0.0689 -1.9642 -0.1378l -0.3274,2.7223 c 0.3618,-0.1378 0.9821,-0.2584 1.6541 -0.2584c 1.8264,-0.0000 2.8429,1.5851 2.8429 3.1703c 0.0000,1.9297 -1.3439,3.4115 -3.2909 3.4115c -0.9821,-0.0000 -2.4122,-0.5514 -2.4122 -1.2233c 0.0000,-0.3274 0.2757,-0.5514 0.5858 -0.5514c 0.3446,-0.0000 0.5686,0.2584 0.7753 0.5341c 0.2584,0.3101 0.5341,0.6547 1.0855 0.6547c 1.1027,-0.0000 2.0159,-1.0338 2.0159 -2.5328Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 145.8874,25.1082 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 134.7225,50.0355 ZM 137.9617,41.8169 c -0.3274,-0.0000 -1.0855,0.3101 -1.4645 0.4824l -0.2068,-0.5341 c 1.5162,-0.7064 2.1020,-1.0683 2.9635 -1.6885h 0.3274 v 8.6666 c 0.0000,0.6203 0.0861,0.7926 0.6547 0.7926h 0.8960 c 0.0517,-0.0000 0.1378,0.0345 0.1378 0.1378v 0.3791 l -2.3605,-0.0345 l -2.3950,0.0345 v -0.3791 c 0.0172,-0.0517 0.0345,-0.1378 0.1378 -0.1378h 1.0338 c 0.6547,-0.0000 0.6547,-0.2929 0.6547 -0.7926v -5.9271 c 0.0000,-0.5858 0.0000,-0.9993 -0.3791 -0.9993ZM 142.2692,50.0355 ZM 144.0611,48.3987 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 146.0425,50.0355 ZM 150.4878,43.9189 c 0.0000,-0.1206 0.0172,-0.2584 0.1723 -0.3446c 0.1895,-0.1378 0.4997,-0.2929 0.7581 -0.2929c 0.2240,-0.0000 0.2412,0.1895 0.2412 0.5341v 2.7740 h 1.3956 l -0.1034,0.8098 h -1.2922 v 1.4301 c 0.0000,0.4824 0.0689,0.7237 0.5686 0.7237h 0.4652 c 0.1034,-0.0000 0.1206,0.0861 0.1206 0.1206v 0.3791 c 0.0000,-0.0000 -1.1027,-0.0345 -1.8264 -0.0345c -0.6547,-0.0000 -1.6713,0.0345 -1.6713 0.0345v -0.3791 c 0.0000,-0.0345 0.0172,-0.1206 0.1206 -0.1206h 0.4652 c 0.5341,-0.0000 0.5858,-0.2240 0.5858 -0.7237v -1.4301 h -3.3771 c -0.0689,-0.0000 -0.1034,-0.0345 -0.1551 -0.1034l -0.1378,-0.1895 l -0.2068,-0.3618 c -0.0172,-0.0000 -0.0172,-0.0172 -0.0172 -0.0345c 0.0000,-0.0172 0.0172,-0.0345 0.0345 -0.0517c 1.1199,-1.2406 3.1014,-5.0828 3.7217 -6.4957c 0.0172,-0.0689 0.0517,-0.0861 0.1206 -0.0861c 0.0172,-0.0000 0.3963,0.1551 0.6030 0.1895c -0.7753,2.0848 -2.0504,4.3247 -3.3081 6.3234h 2.7223 v -2.6706 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 145.8874,59.7403 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 134.7225,84.6676 ZM 137.9617,76.4489 c -0.3274,-0.0000 -1.0855,0.3101 -1.4645 0.4824l -0.2068,-0.5341 c 1.5162,-0.7064 2.1020,-1.0683 2.9635 -1.6885h 0.3274 v 8.6666 c 0.0000,0.6203 0.0861,0.7926 0.6547 0.7926h 0.8960 c 0.0517,-0.0000 0.1378,0.0345 0.1378 0.1378v 0.3791 l -2.3605,-0.0345 l -2.3950,0.0345 v -0.3791 c 0.0172,-0.0517 0.0345,-0.1378 0.1378 -0.1378h 1.0338 c 0.6547,-0.0000 0.6547,-0.2929 0.6547 -0.7926v -5.9271 c 0.0000,-0.5858 0.0000,-0.9993 -0.3791 -0.9993ZM 142.2692,84.6676 ZM 144.0611,83.0307 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 146.0425,84.6676 ZM 149.7642,75.2428 c -0.4307,-0.0000 -1.6885,0.2412 -1.6885 1.2922c 0.0000,0.3101 -0.1206,0.8443 -0.5858 0.8443c -0.4480,-0.0000 -0.4824,-0.4997 -0.4824 -0.5514c 0.0000,-0.5341 0.7064,-2.1193 3.1014 -2.1193c 1.6713,-0.0000 2.1710,1.0510 2.1710 1.7402c 0.0000,0.4307 -0.1378,1.2922 -1.6885 2.2743c 0.9649,0.1551 2.2399,0.8615 2.2399 2.6534c 0.0000,2.2743 -1.7230,3.4977 -3.6700 3.4977c -0.9821,-0.0000 -2.3605,-0.4307 -2.3605 -1.0855c 0.0000,-0.2584 0.2584,-0.5514 0.6030 -0.5514c 0.3274,-0.0000 0.4824,0.1723 0.6375 0.3963c 0.1895,0.2929 0.4997,0.7064 1.3267 0.7064c 0.5686,-0.0000 2.1882,-0.5686 2.1882 -2.7395c 0.0000,-1.8436 -1.2922,-2.1365 -2.2227 -2.1365c -0.1551,-0.0000 -0.3446,0.0345 -0.5341 0.0689l -0.0689,-0.5169 c 1.3267,-0.2240 2.4294,-1.5162 2.4294 -2.3088c 0.0000,-0.9821 -0.6892,-1.4645 -1.3956 -1.4645Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 145.8874,94.3723 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 134.7225,119.2996 ZM 137.9617,111.0810 c -0.3274,-0.0000 -1.0855,0.3101 -1.4645 0.4824l -0.2068,-0.5341 c 1.5162,-0.7064 2.1020,-1.0683 2.9635 -1.6885h 0.3274 v 8.6666 c 0.0000,0.6203 0.0861,0.7926 0.6547 0.7926h 0.8960 c 0.0517,-0.0000 0.1378,0.0345 0.1378 0.1378v 0.3791 l -2.3605,-0.0345 l -2.3950,0.0345 v -0.3791 c 0.0172,-0.0517 0.0345,-0.1378 0.1378 -0.1378h 1.0338 c 0.6547,-0.0000 0.6547,-0.2929 0.6547 -0.7926v -5.9271 c 0.0000,-0.5858 0.0000,-0.9993 -0.3791 -0.9993ZM 142.2692,119.2996 ZM 144.0611,117.6628 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 146.0425,119.2996 ZM 147.0418,111.6668 c 0.0000,-0.9821 0.9476,-2.3260 2.7568 -2.3260c 1.3267,-0.0000 2.8774,0.4997 2.8774 2.4811c 0.0000,1.3095 -0.6720,1.9642 -1.6024 2.8602l -1.6368,1.5851 c -0.0861,0.0861 -1.2406,1.2233 -1.2406 2.0331h 2.9291 c 0.5858,-0.0000 0.8960,-0.2929 1.1372 -1.2406l 0.4307,0.0689 l -0.3446,2.1710 h -5.3240 c 0.0000,-0.9649 0.1551,-1.7058 1.7574 -3.3426l 1.2061,-1.1889 c 0.9649,-0.9821 1.3612,-1.8264 1.3612 -2.8774c 0.0000,-1.5679 -1.0683,-2.0159 -1.6541 -2.0159c -1.1889,-0.0000 -1.5162,0.6203 -1.5162 1.0338c 0.0000,0.1378 0.0345,0.2757 0.0689 0.3963c 0.0345,0.1206 0.0689,0.2412 0.0689 0.3791c 0.0000,0.4480 -0.3446,0.6203 -0.6203 0.6203c -0.3791,-0.0000 -0.6547,-0.2929 -0.6547 -0.6375Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 145.8874,129.0043 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 134.7225,153.9316 ZM 137.9617,145.7130 c -0.3274,-0.0000 -1.0855,0.3101 -1.4645 0.4824l -0.2068,-0.5341 c 1.5162,-0.7064 2.1020,-1.0683 2.9635 -1.6885h 0.3274 v 8.6666 c 0.0000,0.6203 0.0861,0.7926 0.6547 0.7926h 0.8960 c 0.0517,-0.0000 0.1378,0.0345 0.1378 0.1378v 0.3791 l -2.3605,-0.0345 l -2.3950,0.0345 v -0.3791 c 0.0172,-0.0517 0.0345,-0.1378 0.1378 -0.1378h 1.0338 c 0.6547,-0.0000 0.6547,-0.2929 0.6547 -0.7926v -5.9271 c 0.0000,-0.5858 0.0000,-0.9993 -0.3791 -0.9993ZM 142.2692,153.9316 ZM 144.0611,152.2948 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 146.0425,153.9316 ZM 149.2817,145.7130 c -0.3274,-0.0000 -1.0855,0.3101 -1.4645 0.4824l -0.2068,-0.5341 c 1.5162,-0.7064 2.1020,-1.0683 2.9635 -1.6885h 0.3274 v 8.6666 c 0.0000,0.6203 0.0861,0.7926 0.6547 0.7926h 0.8960 c 0.0517,-0.0000 0.1378,0.0345 0.1378 0.1378v 0.3791 l -2.3605,-0.0345 l -2.3950,0.0345 v -0.3791 c 0.0172,-0.0517 0.0345,-0.1378 0.1378 -0.1378h 1.0338 c 0.6547,-0.0000 0.6547,-0.2929 0.6547 -0.7926v -5.9271 c 0.0000,-0.5858 0.0000,-0.9993 -0.3791 -0.9993Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 145.8874,163.6364 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 134.7225,188.5637 ZM 137.9617,180.3450 c -0.3274,-0.0000 -1.0855,0.3101 -1.4645 0.4824l -0.2068,-0.5341 c 1.5162,-0.7064 2.1020,-1.0683 2.9635 -1.6885h 0.3274 v 8.6666 c 0.0000,0.6203 0.0861,0.7926 0.6547 0.7926h 0.8960 c 0.0517,-0.0000 0.1378,0.0345 0.1378 0.1378v 0.3791 l -2.3605,-0.0345 l -2.3950,0.0345 v -0.3791 c 0.0172,-0.0517 0.0345,-0.1378 0.1378 -0.1378h 1.0338 c 0.6547,-0.0000 0.6547,-0.2929 0.6547 -0.7926v -5.9271 c 0.0000,-0.5858 0.0000,-0.9993 -0.3791 -0.9993ZM 142.2692,188.5637 ZM 144.0611,186.9268 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 146.0425,188.5637 ZM 149.8159,179.2079 c -0.7409,-0.0000 -1.8264,0.7237 -1.8264 4.7382c 0.0000,1.4128 0.2584,4.2558 1.7747 4.2558c 0.2929,-0.0000 1.1199,-0.1895 1.4818 -1.5335c 0.2240,-0.8270 0.3446,-1.8608 0.3446 -3.3598c 0.0000,-2.1882 -0.5514,-3.4115 -1.0510 -3.8423c -0.1895,-0.1723 -0.4480,-0.2584 -0.7237 -0.2584ZM 149.8159,179.2079 ZM 149.7469,188.7704 c -1.8436,-0.0000 -3.0841,-2.3605 -3.0841 -4.9967c 0.0000,-3.2220 1.5335,-5.1690 3.1531 -5.1690c 0.7409,-0.0000 1.4818,0.4652 1.9814 1.1372c 0.7237,0.9649 1.1027,2.2571 1.1027 3.8767c 0.0000,3.8250 -1.8953,5.1517 -3.1531 5.1517Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 145.8874,198.2684 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.8264,15.4035 ZM 34.5997,6.0477 c -0.7409,-0.0000 -1.8264,0.7237 -1.8264 4.7382c 0.0000,1.4128 0.2584,4.2558 1.7747 4.2558c 0.2929,-0.0000 1.1199,-0.1895 1.4818 -1.5335c 0.2240,-0.8270 0.3446,-1.8608 0.3446 -3.3598c 0.0000,-2.1882 -0.5514,-3.4115 -1.0510 -3.8423c -0.1895,-0.1723 -0.4480,-0.2584 -0.7237 -0.2584ZM 34.5997,6.0477 ZM 34.5308,15.6103 c -1.8436,-0.0000 -3.0841,-2.3605 -3.0841 -4.9967c 0.0000,-3.2220 1.5335,-5.1690 3.1531 -5.1690c 0.7409,-0.0000 1.4818,0.4652 1.9814 1.1372c 0.7237,0.9649 1.1027,2.2571 1.1027 3.8767c 0.0000,3.8250 -1.8953,5.1517 -3.1531 5.1517ZM 38.3731,15.4035 ZM 40.1650,13.7667 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 42.1464,15.4035 ZM 47.4704,12.4917 c 0.0000,-1.7747 -0.9649,-2.6534 -2.0331 -2.6534c -0.7926,-0.0000 -1.3956,0.1206 -2.0676 0.3963l 0.5514,-4.7038 c 0.5686,0.0517 1.1544,0.0689 1.7574 0.0689c 0.8615,-0.0000 1.7574,-0.0517 2.6879 -0.1551l 0.1034,0.0517 l -0.2584,1.1199 c -0.6720,0.0689 -1.2233,0.0861 -1.7058 0.0861c -0.7753,-0.0000 -1.3612,-0.0689 -1.9642 -0.1378l -0.3274,2.7223 c 0.3618,-0.1378 0.9821,-0.2584 1.6541 -0.2584c 1.8264,-0.0000 2.8429,1.5851 2.8429 3.1703c 0.0000,1.9297 -1.3439,3.4115 -3.2909 3.4115c -0.9821,-0.0000 -2.4122,-0.5514 -2.4122 -1.2233c 0.0000,-0.3274 0.2757,-0.5514 0.5858 -0.5514c 0.3446,-0.0000 0.5686,0.2584 0.7753 0.5341c 0.2584,0.3101 0.5341,0.6547 1.0855 0.6547c 1.1027,-0.0000 2.0159,-1.0338 2.0159 -2.5328Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 41.9913,25.1082 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.8264,50.0355 ZM 34.5997,40.6797 c -0.7409,-0.0000 -1.8264,0.7237 -1.8264 4.7382c 0.0000,1.4128 0.2584,4.2558 1.7747 4.2558c 0.2929,-0.0000 1.1199,-0.1895 1.4818 -1.5335c 0.2240,-0.8270 0.3446,-1.8608 0.3446 -3.3598c 0.0000,-2.1882 -0.5514,-3.4115 -1.0510 -3.8423c -0.1895,-0.1723 -0.4480,-0.2584 -0.7237 -0.2584ZM 34.5997,40.6797 ZM 34.5308,50.2423 c -1.8436,-0.0000 -3.0841,-2.3605 -3.0841 -4.9967c 0.0000,-3.2220 1.5335,-5.1690 3.1531 -5.1690c 0.7409,-0.0000 1.4818,0.4652 1.9814 1.1372c 0.7237,0.9649 1.1027,2.2571 1.1027 3.8767c 0.0000,3.8250 -1.8953,5.1517 -3.1531 5.1517ZM 38.3731,50.0355 ZM 40.1650,48.3987 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 42.1464,50.0355 ZM 46.5917,43.9189 c 0.0000,-0.1206 0.0172,-0.2584 0.1723 -0.3446c 0.1895,-0.1378 0.4997,-0.2929 0.7581 -0.2929c 0.2240,-0.0000 0.2412,0.1895 0.2412 0.5341v 2.7740 h 1.3956 l -0.1034,0.8098 h -1.2922 v 1.4301 c 0.0000,0.4824 0.0689,0.7237 0.5686 0.7237h 0.4652 c 0.1034,-0.0000 0.1206,0.0861 0.1206 0.1206v 0.3791 c 0.0000,-0.0000 -1.1027,-0.0345 -1.8264 -0.0345c -0.6547,-0.0000 -1.6713,0.0345 -1.6713 0.0345v -0.3791 c 0.0000,-0.0345 0.0172,-0.1206 0.1206 -0.1206h 0.4652 c 0.5341,-0.0000 0.5858,-0.2240 0.5858 -0.7237v -1.4301 h -3.3771 c -0.0689,-0.0000 -0.1034,-0.0345 -0.1551 -0.1034l -0.1378,-0.1895 l -0.2068,-0.3618 c -0.0172,-0.0000 -0.0172,-0.0172 -0.0172 -0.0345c 0.0000,-0.0172 0.0172,-0.0345 0.0345 -0.0517c 1.1199,-1.2406 3.1014,-5.0828 3.7217 -6.4957c 0.0172,-0.0689 0.0517,-0.0861 0.1206 -0.0861c 0.0172,-0.0000 0.3963,0.1551 0.6030 0.1895c -0.7753,2.0848 -2.0504,4.3247 -3.3081 6.3234h 2.7223 v -2.6706 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 41.9913,59.7403 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.8264,84.6676 ZM 34.5997,75.3118 c -0.7409,-0.0000 -1.8264,0.7237 -1.8264 4.7382c 0.0000,1.4128 0.2584,4.2558 1.7747 4.2558c 0.2929,-0.0000 1.1199,-0.1895 1.4818 -1.5335c 0.2240,-0.8270 0.3446,-1.8608 0.3446 -3.3598c 0.0000,-2.1882 -0.5514,-3.4115 -1.0510 -3.8423c -0.1895,-0.1723 -0.4480,-0.2584 -0.7237 -0.2584ZM 34.5997,75.3118 ZM 34.5308,84.8743 c -1.8436,-0.0000 -3.0841,-2.3605 -3.0841 -4.9967c 0.0000,-3.2220 1.5335,-5.1690 3.1531 -5.1690c 0.7409,-0.0000 1.4818,0.4652 1.9814 1.1372c 0.7237,0.9649 1.1027,2.2571 1.1027 3.8767c 0.0000,3.8250 -1.8953,5.1517 -3.1531 5.1517ZM 38.3731,84.6676 ZM 40.1650,83.0307 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 42.1464,84.6676 ZM 45.8681,75.2428 c -0.4307,-0.0000 -1.6885,0.2412 -1.6885 1.2922c 0.0000,0.3101 -0.1206,0.8443 -0.5858 0.8443c -0.4480,-0.0000 -0.4824,-0.4997 -0.4824 -0.5514c 0.0000,-0.5341 0.7064,-2.1193 3.1014 -2.1193c 1.6713,-0.0000 2.1710,1.0510 2.1710 1.7402c 0.0000,0.4307 -0.1378,1.2922 -1.6885 2.2743c 0.9649,0.1551 2.2399,0.8615 2.2399 2.6534c 0.0000,2.2743 -1.7230,3.4977 -3.6700 3.4977c -0.9821,-0.0000 -2.3605,-0.4307 -2.3605 -1.0855c 0.0000,-0.2584 0.2584,-0.5514 0.6030 -0.5514c 0.3274,-0.0000 0.4824,0.1723 0.6375 0.3963c 0.1895,0.2929 0.4997,0.7064 1.3267 0.7064c 0.5686,-0.0000 2.1882,-0.5686 2.1882 -2.7395c 0.0000,-1.8436 -1.2922,-2.1365 -2.2227 -2.1365c -0.1551,-0.0000 -0.3446,0.0345 -0.5341 0.0689l -0.0689,-0.5169 c 1.3267,-0.2240 2.4294,-1.5162 2.4294 -2.3088c 0.0000,-0.9821 -0.6892,-1.4645 -1.3956 -1.4645Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 41.9913,94.3723 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.8264,119.2996 ZM 34.5997,109.9438 c -0.7409,-0.0000 -1.8264,0.7237 -1.8264 4.7382c 0.0000,1.4128 0.2584,4.2558 1.7747 4.2558c 0.2929,-0.0000 1.1199,-0.1895 1.4818 -1.5335c 0.2240,-0.8270 0.3446,-1.8608 0.3446 -3.3598c 0.0000,-2.1882 -0.5514,-3.4115 -1.0510 -3.8423c -0.1895,-0.1723 -0.4480,-0.2584 -0.7237 -0.2584ZM 34.5997,109.9438 ZM 34.5308,119.5064 c -1.8436,-0.0000 -3.0841,-2.3605 -3.0841 -4.9967c 0.0000,-3.2220 1.5335,-5.1690 3.1531 -5.1690c 0.7409,-0.0000 1.4818,0.4652 1.9814 1.1372c 0.7237,0.9649 1.1027,2.2571 1.1027 3.8767c 0.0000,3.8250 -1.8953,5.1517 -3.1531 5.1517ZM 38.3731,119.2996 ZM 40.1650,117.6628 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 42.1464,119.2996 ZM 43.1457,111.6668 c 0.0000,-0.9821 0.9476,-2.3260 2.7568 -2.3260c 1.3267,-0.0000 2.8774,0.4997 2.8774 2.4811c 0.0000,1.3095 -0.6720,1.9642 -1.6024 2.8602l -1.6368,1.5851 c -0.0861,0.0861 -1.2406,1.2233 -1.2406 2.0331h 2.9291 c 0.5858,-0.0000 0.8960,-0.2929 1.1372 -1.2406l 0.4307,0.0689 l -0.3446,2.1710 h -5.3240 c 0.0000,-0.9649 0.1551,-1.7058 1.7574 -3.3426l 1.2061,-1.1889 c 0.9649,-0.9821 1.3612,-1.8264 1.3612 -2.8774c 0.0000,-1.5679 -1.0683,-2.0159 -1.6541 -2.0159c -1.1889,-0.0000 -1.5162,0.6203 -1.5162 1.0338c 0.0000,0.1378 0.0345,0.2757 0.0689 0.3963c 0.0345,0.1206 0.0689,0.2412 0.0689 0.3791c 0.0000,0.4480 -0.3446,0.6203 -0.6203 0.6203c -0.3791,-0.0000 -0.6547,-0.2929 -0.6547 -0.6375Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 41.9913,129.0043 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.8264,153.9316 ZM 34.5997,144.5758 c -0.7409,-0.0000 -1.8264,0.7237 -1.8264 4.7382c 0.0000,1.4128 0.2584,4.2558 1.7747 4.2558c 0.2929,-0.0000 1.1199,-0.1895 1.4818 -1.5335c 0.2240,-0.8270 0.3446,-1.8608 0.3446 -3.3598c 0.0000,-2.1882 -0.5514,-3.4115 -1.0510 -3.8423c -0.1895,-0.1723 -0.4480,-0.2584 -0.7237 -0.2584ZM 34.5997,144.5758 ZM 34.5308,154.1384 c -1.8436,-0.0000 -3.0841,-2.3605 -3.0841 -4.9967c 0.0000,-3.2220 1.5335,-5.1690 3.1531 -5.1690c 0.7409,-0.0000 1.4818,0.4652 1.9814 1.1372c 0.7237,0.9649 1.1027,2.2571 1.1027 3.8767c 0.0000,3.8250 -1.8953,5.1517 -3.1531 5.1517ZM 38.3731,153.9316 ZM 40.1650,152.2948 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 42.1464,153.9316 ZM 45.3856,145.7130 c -0.3274,-0.0000 -1.0855,0.3101 -1.4645 0.4824l -0.2068,-0.5341 c 1.5162,-0.7064 2.1020,-1.0683 2.9635 -1.6885h 0.3274 v 8.6666 c 0.0000,0.6203 0.0861,0.7926 0.6547 0.7926h 0.8960 c 0.0517,-0.0000 0.1378,0.0345 0.1378 0.1378v 0.3791 l -2.3605,-0.0345 l -2.3950,0.0345 v -0.3791 c 0.0172,-0.0517 0.0345,-0.1378 0.1378 -0.1378h 1.0338 c 0.6547,-0.0000 0.6547,-0.2929 0.6547 -0.7926v -5.9271 c 0.0000,-0.5858 0.0000,-0.9993 -0.3791 -0.9993Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 41.9913,163.6364 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.8264,188.5637 ZM 34.5997,179.2079 c -0.7409,-0.0000 -1.8264,0.7237 -1.8264 4.7382c 0.0000,1.4128 0.2584,4.2558 1.7747 4.2558c 0.2929,-0.0000 1.1199,-0.1895 1.4818 -1.5335c 0.2240,-0.8270 0.3446,-1.8608 0.3446 -3.3598c 0.0000,-2.1882 -0.5514,-3.4115 -1.0510 -3.8423c -0.1895,-0.1723 -0.4480,-0.2584 -0.7237 -0.2584ZM 34.5997,179.2079 ZM 34.5308,188.7704 c -1.8436,-0.0000 -3.0841,-2.3605 -3.0841 -4.9967c 0.0000,-3.2220 1.5335,-5.1690 3.1531 -5.1690c 0.7409,-0.0000 1.4818,0.4652 1.9814 1.1372c 0.7237,0.9649 1.1027,2.2571 1.1027 3.8767c 0.0000,3.8250 -1.8953,5.1517 -3.1531 5.1517ZM 38.3731,188.5637 ZM 40.1650,186.9268 c 0.6892,-0.0000 1.1372,0.6720 1.1372 1.7058c 0.0000,1.2061 -0.8615,1.7747 -1.8953 1.9642l -0.0861,-0.4307 c 0.8960,-0.2240 1.3095,-0.7409 1.3095 -1.1027c 0.0000,-0.3963 -0.2929,-0.4652 -0.6203 -0.4997c -0.3101,-0.0517 -0.7581,-0.1895 -0.7581 -0.7581c 0.0000,-0.4824 0.3791,-0.8787 0.9132 -0.8787ZM 42.1464,188.5637 ZM 45.9198,179.2079 c -0.7409,-0.0000 -1.8264,0.7237 -1.8264 4.7382c 0.0000,1.4128 0.2584,4.2558 1.7747 4.2558c 0.2929,-0.0000 1.1199,-0.1895 1.4818 -1.5335c 0.2240,-0.8270 0.3446,-1.8608 0.3446 -3.3598c 0.0000,-2.1882 -0.5514,-3.4115 -1.0510 -3.8423c -0.1895,-0.1723 -0.4480,-0.2584 -0.7237 -0.2584ZM 45.9198,179.2079 ZM 45.8508,188.7704 c -1.8436,-0.0000 -3.0841,-2.3605 -3.0841 -4.9967c 0.0000,-3.2220 1.5335,-5.1690 3.1531 -5.1690c 0.7409,-0.0000 1.4818,0.4652 1.9814 1.1372c 0.7237,0.9649 1.1027,2.2571 1.1027 3.8767c 0.0000,3.8250 -1.8953,5.1517 -3.1531 5.1517Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 41.9913,198.2684 c 0.0000,-0.9563 -0.7753,-1.7316 -1.7316 -1.7316c -0.9563,-0.0000 -1.7316,0.7753 -1.7316 1.7316c -0.0000,0.9563 0.7753,1.7316 1.7316 1.7316c 0.9563,0.0000 1.7316,-0.7753 1.7316 -1.7316Z"/></g></svg>
diff --git a/other/lglyphHudExample.svg b/other/lglyphHudExample.svg
--- a/other/lglyphHudExample.svg
+++ b/other/lglyphHudExample.svg
@@ -1,3 +1,3 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="400.0000" stroke-opacity="1" viewBox="0 0 600 400" font-size="1" width="600.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 567.6715,94.6539 ZM 572.5326,91.9953 c 0.0000,-1.6204 -0.8810,-2.4227 -1.8563 -2.4227c -0.7237,-0.0000 -1.2743,0.1101 -1.8878 0.3618l 0.5034,-4.2947 c 0.5191,0.0472 1.0540,0.0629 1.6046 0.0629c 0.7866,-0.0000 1.6046,-0.0472 2.4541 -0.1416l 0.0944,0.0472 l -0.2360,1.0226 c -0.6135,0.0629 -1.1169,0.0787 -1.5574 0.0787c -0.7079,-0.0000 -1.2428,-0.0629 -1.7934 -0.1259l -0.2989,2.4856 c 0.3304,-0.1259 0.8967,-0.2360 1.5102 -0.2360c 1.6676,-0.0000 2.5957,1.4473 2.5957 2.8946c 0.0000,1.7619 -1.2271,3.1149 -3.0047 3.1149c -0.8967,-0.0000 -2.2024,-0.5034 -2.2024 -1.1169c 0.0000,-0.2989 0.2517,-0.5034 0.5349 -0.5034c 0.3146,-0.0000 0.5191,0.2360 0.7079 0.4877c 0.2360,0.2832 0.4877,0.5978 0.9911 0.5978c 1.0068,-0.0000 1.8406,-0.9439 1.8406 -2.3125ZM 574.5620,94.6539 ZM 576.1981,93.1594 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 578.0072,94.6539 ZM 582.8683,91.9953 c 0.0000,-1.6204 -0.8810,-2.4227 -1.8563 -2.4227c -0.7237,-0.0000 -1.2743,0.1101 -1.8878 0.3618l 0.5034,-4.2947 c 0.5191,0.0472 1.0540,0.0629 1.6046 0.0629c 0.7866,-0.0000 1.6046,-0.0472 2.4541 -0.1416l 0.0944,0.0472 l -0.2360,1.0226 c -0.6135,0.0629 -1.1169,0.0787 -1.5574 0.0787c -0.7079,-0.0000 -1.2428,-0.0629 -1.7934 -0.1259l -0.2989,2.4856 c 0.3304,-0.1259 0.8967,-0.2360 1.5102 -0.2360c 1.6676,-0.0000 2.5957,1.4473 2.5957 2.8946c 0.0000,1.7619 -1.2271,3.1149 -3.0047 3.1149c -0.8967,-0.0000 -2.2024,-0.5034 -2.2024 -1.1169c 0.0000,-0.2989 0.2517,-0.5034 0.5349 -0.5034c 0.3146,-0.0000 0.5191,0.2360 0.7079 0.4877c 0.2360,0.2832 0.4877,0.5978 0.9911 0.5978c 1.0068,-0.0000 1.8406,-0.9439 1.8406 -2.3125Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 577.8656,103.5148 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 567.6715,126.2745 ZM 572.5326,123.6158 c 0.0000,-1.6204 -0.8810,-2.4227 -1.8563 -2.4227c -0.7237,-0.0000 -1.2743,0.1101 -1.8878 0.3618l 0.5034,-4.2947 c 0.5191,0.0472 1.0540,0.0629 1.6046 0.0629c 0.7866,-0.0000 1.6046,-0.0472 2.4541 -0.1416l 0.0944,0.0472 l -0.2360,1.0226 c -0.6135,0.0629 -1.1169,0.0787 -1.5574 0.0787c -0.7079,-0.0000 -1.2428,-0.0629 -1.7934 -0.1259l -0.2989,2.4856 c 0.3304,-0.1259 0.8967,-0.2360 1.5102 -0.2360c 1.6676,-0.0000 2.5957,1.4473 2.5957 2.8946c 0.0000,1.7619 -1.2271,3.1149 -3.0047 3.1149c -0.8967,-0.0000 -2.2024,-0.5034 -2.2024 -1.1169c 0.0000,-0.2989 0.2517,-0.5034 0.5349 -0.5034c 0.3146,-0.0000 0.5191,0.2360 0.7079 0.4877c 0.2360,0.2832 0.4877,0.5978 0.9911 0.5978c 1.0068,-0.0000 1.8406,-0.9439 1.8406 -2.3125ZM 574.5620,126.2745 ZM 576.1981,124.7800 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 578.0072,126.2745 ZM 582.0660,120.6898 c 0.0000,-0.1101 0.0157,-0.2360 0.1573 -0.3146c 0.1730,-0.1259 0.4562,-0.2674 0.6922 -0.2674c 0.2045,-0.0000 0.2202,0.1730 0.2202 0.4877v 2.5328 h 1.2743 l -0.0944,0.7394 h -1.1799 v 1.3057 c 0.0000,0.4405 0.0629,0.6607 0.5191 0.6607h 0.4248 c 0.0944,-0.0000 0.1101,0.0787 0.1101 0.1101v 0.3461 c 0.0000,-0.0000 -1.0068,-0.0315 -1.6676 -0.0315c -0.5978,-0.0000 -1.5260,0.0315 -1.5260 0.0315v -0.3461 c 0.0000,-0.0315 0.0157,-0.1101 0.1101 -0.1101h 0.4248 c 0.4877,-0.0000 0.5349,-0.2045 0.5349 -0.6607v -1.3057 h -3.0834 c -0.0629,-0.0000 -0.0944,-0.0315 -0.1416 -0.0944l -0.1259,-0.1730 l -0.1888,-0.3304 c -0.0157,-0.0000 -0.0157,-0.0157 -0.0157 -0.0315c 0.0000,-0.0157 0.0157,-0.0315 0.0315 -0.0472c 1.0226,-1.1327 2.8317,-4.6408 3.3980 -5.9308c 0.0157,-0.0629 0.0472,-0.0787 0.1101 -0.0787c 0.0157,-0.0000 0.3618,0.1416 0.5506 0.1730c -0.7079,1.9035 -1.8721,3.9486 -3.0205 5.7735h 2.4856 v -2.4384 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 577.8656,135.1353 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 567.6715,157.8950 ZM 572.5326,155.2364 c 0.0000,-1.6204 -0.8810,-2.4227 -1.8563 -2.4227c -0.7237,-0.0000 -1.2743,0.1101 -1.8878 0.3618l 0.5034,-4.2947 c 0.5191,0.0472 1.0540,0.0629 1.6046 0.0629c 0.7866,-0.0000 1.6046,-0.0472 2.4541 -0.1416l 0.0944,0.0472 l -0.2360,1.0226 c -0.6135,0.0629 -1.1169,0.0787 -1.5574 0.0787c -0.7079,-0.0000 -1.2428,-0.0629 -1.7934 -0.1259l -0.2989,2.4856 c 0.3304,-0.1259 0.8967,-0.2360 1.5102 -0.2360c 1.6676,-0.0000 2.5957,1.4473 2.5957 2.8946c 0.0000,1.7619 -1.2271,3.1149 -3.0047 3.1149c -0.8967,-0.0000 -2.2024,-0.5034 -2.2024 -1.1169c 0.0000,-0.2989 0.2517,-0.5034 0.5349 -0.5034c 0.3146,-0.0000 0.5191,0.2360 0.7079 0.4877c 0.2360,0.2832 0.4877,0.5978 0.9911 0.5978c 1.0068,-0.0000 1.8406,-0.9439 1.8406 -2.3125ZM 574.5620,157.8950 ZM 576.1981,156.4005 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 578.0072,157.8950 ZM 581.4052,149.2898 c -0.3933,-0.0000 -1.5417,0.2202 -1.5417 1.1799c 0.0000,0.2832 -0.1101,0.7708 -0.5349 0.7708c -0.4090,-0.0000 -0.4405,-0.4562 -0.4405 -0.5034c 0.0000,-0.4877 0.6450,-1.9350 2.8317 -1.9350c 1.5260,-0.0000 1.9822,0.9596 1.9822 1.5889c 0.0000,0.3933 -0.1259,1.1799 -1.5417 2.0766c 0.8810,0.1416 2.0451,0.7866 2.0451 2.4227c 0.0000,2.0766 -1.5732,3.1935 -3.3508 3.1935c -0.8967,-0.0000 -2.1552,-0.3933 -2.1552 -0.9911c 0.0000,-0.2360 0.2360,-0.5034 0.5506 -0.5034c 0.2989,-0.0000 0.4405,0.1573 0.5821 0.3618c 0.1730,0.2674 0.4562,0.6450 1.2113 0.6450c 0.5191,-0.0000 1.9979,-0.5191 1.9979 -2.5013c 0.0000,-1.6833 -1.1799,-1.9507 -2.0294 -1.9507c -0.1416,-0.0000 -0.3146,0.0315 -0.4877 0.0629l -0.0629,-0.4719 c 1.2113,-0.2045 2.2182,-1.3844 2.2182 -2.1080c 0.0000,-0.8967 -0.6293,-1.3372 -1.2743 -1.3372Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 577.8656,166.7559 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 567.6715,189.5156 ZM 572.5326,186.8570 c 0.0000,-1.6204 -0.8810,-2.4227 -1.8563 -2.4227c -0.7237,-0.0000 -1.2743,0.1101 -1.8878 0.3618l 0.5034,-4.2947 c 0.5191,0.0472 1.0540,0.0629 1.6046 0.0629c 0.7866,-0.0000 1.6046,-0.0472 2.4541 -0.1416l 0.0944,0.0472 l -0.2360,1.0226 c -0.6135,0.0629 -1.1169,0.0787 -1.5574 0.0787c -0.7079,-0.0000 -1.2428,-0.0629 -1.7934 -0.1259l -0.2989,2.4856 c 0.3304,-0.1259 0.8967,-0.2360 1.5102 -0.2360c 1.6676,-0.0000 2.5957,1.4473 2.5957 2.8946c 0.0000,1.7619 -1.2271,3.1149 -3.0047 3.1149c -0.8967,-0.0000 -2.2024,-0.5034 -2.2024 -1.1169c 0.0000,-0.2989 0.2517,-0.5034 0.5349 -0.5034c 0.3146,-0.0000 0.5191,0.2360 0.7079 0.4877c 0.2360,0.2832 0.4877,0.5978 0.9911 0.5978c 1.0068,-0.0000 1.8406,-0.9439 1.8406 -2.3125ZM 574.5620,189.5156 ZM 576.1981,188.0211 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 578.0072,189.5156 ZM 578.9196,182.5465 c 0.0000,-0.8967 0.8652,-2.1238 2.5171 -2.1238c 1.2113,-0.0000 2.6272,0.4562 2.6272 2.2654c 0.0000,1.1956 -0.6135,1.7934 -1.4630 2.6114l -1.4945,1.4473 c -0.0787,0.0787 -1.1327,1.1169 -1.1327 1.8563h 2.6744 c 0.5349,-0.0000 0.8180,-0.2674 1.0383 -1.1327l 0.3933,0.0629 l -0.3146,1.9822 h -4.8611 c 0.0000,-0.8810 0.1416,-1.5574 1.6046 -3.0519l 1.1012,-1.0855 c 0.8810,-0.8967 1.2428,-1.6676 1.2428 -2.6272c 0.0000,-1.4316 -0.9754,-1.8406 -1.5102 -1.8406c -1.0855,-0.0000 -1.3844,0.5663 -1.3844 0.9439c 0.0000,0.1259 0.0315,0.2517 0.0629 0.3618c 0.0315,0.1101 0.0629,0.2202 0.0629 0.3461c 0.0000,0.4090 -0.3146,0.5663 -0.5663 0.5663c -0.3461,-0.0000 -0.5978,-0.2674 -0.5978 -0.5821Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 577.8656,198.3764 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 567.6715,221.1362 ZM 572.5326,218.4775 c 0.0000,-1.6204 -0.8810,-2.4227 -1.8563 -2.4227c -0.7237,-0.0000 -1.2743,0.1101 -1.8878 0.3618l 0.5034,-4.2947 c 0.5191,0.0472 1.0540,0.0629 1.6046 0.0629c 0.7866,-0.0000 1.6046,-0.0472 2.4541 -0.1416l 0.0944,0.0472 l -0.2360,1.0226 c -0.6135,0.0629 -1.1169,0.0787 -1.5574 0.0787c -0.7079,-0.0000 -1.2428,-0.0629 -1.7934 -0.1259l -0.2989,2.4856 c 0.3304,-0.1259 0.8967,-0.2360 1.5102 -0.2360c 1.6676,-0.0000 2.5957,1.4473 2.5957 2.8946c 0.0000,1.7619 -1.2271,3.1149 -3.0047 3.1149c -0.8967,-0.0000 -2.2024,-0.5034 -2.2024 -1.1169c 0.0000,-0.2989 0.2517,-0.5034 0.5349 -0.5034c 0.3146,-0.0000 0.5191,0.2360 0.7079 0.4877c 0.2360,0.2832 0.4877,0.5978 0.9911 0.5978c 1.0068,-0.0000 1.8406,-0.9439 1.8406 -2.3125ZM 574.5620,221.1362 ZM 576.1981,219.6416 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 578.0072,221.1362 ZM 580.9647,213.6322 c -0.2989,-0.0000 -0.9911,0.2832 -1.3372 0.4405l -0.1888,-0.4877 c 1.3844,-0.6450 1.9193,-0.9754 2.7058 -1.5417h 0.2989 v 7.9130 c 0.0000,0.5663 0.0787,0.7237 0.5978 0.7237h 0.8180 c 0.0472,-0.0000 0.1259,0.0315 0.1259 0.1259v 0.3461 l -2.1552,-0.0315 l -2.1867,0.0315 v -0.3461 c 0.0157,-0.0472 0.0315,-0.1259 0.1259 -0.1259h 0.9439 c 0.5978,-0.0000 0.5978,-0.2674 0.5978 -0.7237v -5.4117 c 0.0000,-0.5349 0.0000,-0.9124 -0.3461 -0.9124Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 577.8656,229.9970 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 567.6715,252.7567 ZM 572.5326,250.0981 c 0.0000,-1.6204 -0.8810,-2.4227 -1.8563 -2.4227c -0.7237,-0.0000 -1.2743,0.1101 -1.8878 0.3618l 0.5034,-4.2947 c 0.5191,0.0472 1.0540,0.0629 1.6046 0.0629c 0.7866,-0.0000 1.6046,-0.0472 2.4541 -0.1416l 0.0944,0.0472 l -0.2360,1.0226 c -0.6135,0.0629 -1.1169,0.0787 -1.5574 0.0787c -0.7079,-0.0000 -1.2428,-0.0629 -1.7934 -0.1259l -0.2989,2.4856 c 0.3304,-0.1259 0.8967,-0.2360 1.5102 -0.2360c 1.6676,-0.0000 2.5957,1.4473 2.5957 2.8946c 0.0000,1.7619 -1.2271,3.1149 -3.0047 3.1149c -0.8967,-0.0000 -2.2024,-0.5034 -2.2024 -1.1169c 0.0000,-0.2989 0.2517,-0.5034 0.5349 -0.5034c 0.3146,-0.0000 0.5191,0.2360 0.7079 0.4877c 0.2360,0.2832 0.4877,0.5978 0.9911 0.5978c 1.0068,-0.0000 1.8406,-0.9439 1.8406 -2.3125ZM 574.5620,252.7567 ZM 576.1981,251.2622 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 578.0072,252.7567 ZM 581.4524,244.2144 c -0.6765,-0.0000 -1.6676,0.6607 -1.6676 4.3262c 0.0000,1.2900 0.2360,3.8857 1.6204 3.8857c 0.2674,-0.0000 1.0226,-0.1730 1.3529 -1.4001c 0.2045,-0.7551 0.3146,-1.6990 0.3146 -3.0677c 0.0000,-1.9979 -0.5034,-3.1149 -0.9596 -3.5082c -0.1730,-0.1573 -0.4090,-0.2360 -0.6607 -0.2360ZM 581.4524,244.2144 ZM 581.3895,252.9455 c -1.6833,-0.0000 -2.8160,-2.1552 -2.8160 -4.5622c 0.0000,-2.9418 1.4001,-4.7195 2.8789 -4.7195c 0.6765,-0.0000 1.3529,0.4248 1.8091 1.0383c 0.6607,0.8810 1.0068,2.0608 1.0068 3.5396c 0.0000,3.4924 -1.7305,4.7038 -2.8789 4.7038Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 577.8656,261.6175 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 472.8099,94.6539 ZM 476.8686,89.0692 c 0.0000,-0.1101 0.0157,-0.2360 0.1573 -0.3146c 0.1730,-0.1259 0.4562,-0.2674 0.6922 -0.2674c 0.2045,-0.0000 0.2202,0.1730 0.2202 0.4877v 2.5328 h 1.2743 l -0.0944,0.7394 h -1.1799 v 1.3057 c 0.0000,0.4405 0.0629,0.6607 0.5191 0.6607h 0.4248 c 0.0944,-0.0000 0.1101,0.0787 0.1101 0.1101v 0.3461 c 0.0000,-0.0000 -1.0068,-0.0315 -1.6676 -0.0315c -0.5978,-0.0000 -1.5260,0.0315 -1.5260 0.0315v -0.3461 c 0.0000,-0.0315 0.0157,-0.1101 0.1101 -0.1101h 0.4248 c 0.4877,-0.0000 0.5349,-0.2045 0.5349 -0.6607v -1.3057 h -3.0834 c -0.0629,-0.0000 -0.0944,-0.0315 -0.1416 -0.0944l -0.1259,-0.1730 l -0.1888,-0.3304 c -0.0157,-0.0000 -0.0157,-0.0157 -0.0157 -0.0315c 0.0000,-0.0157 0.0157,-0.0315 0.0315 -0.0472c 1.0226,-1.1327 2.8317,-4.6408 3.3980 -5.9308c 0.0157,-0.0629 0.0472,-0.0787 0.1101 -0.0787c 0.0157,-0.0000 0.3618,0.1416 0.5506 0.1730c -0.7079,1.9035 -1.8721,3.9486 -3.0205 5.7735h 2.4856 v -2.4384 ZM 479.7003,94.6539 ZM 481.3364,93.1594 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 483.1455,94.6539 ZM 488.0066,91.9953 c 0.0000,-1.6204 -0.8810,-2.4227 -1.8563 -2.4227c -0.7237,-0.0000 -1.2743,0.1101 -1.8878 0.3618l 0.5034,-4.2947 c 0.5191,0.0472 1.0540,0.0629 1.6046 0.0629c 0.7866,-0.0000 1.6046,-0.0472 2.4541 -0.1416l 0.0944,0.0472 l -0.2360,1.0226 c -0.6135,0.0629 -1.1169,0.0787 -1.5574 0.0787c -0.7079,-0.0000 -1.2428,-0.0629 -1.7934 -0.1259l -0.2989,2.4856 c 0.3304,-0.1259 0.8967,-0.2360 1.5102 -0.2360c 1.6676,-0.0000 2.5957,1.4473 2.5957 2.8946c 0.0000,1.7619 -1.2271,3.1149 -3.0047 3.1149c -0.8967,-0.0000 -2.2024,-0.5034 -2.2024 -1.1169c 0.0000,-0.2989 0.2517,-0.5034 0.5349 -0.5034c 0.3146,-0.0000 0.5191,0.2360 0.7079 0.4877c 0.2360,0.2832 0.4877,0.5978 0.9911 0.5978c 1.0068,-0.0000 1.8406,-0.9439 1.8406 -2.3125Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 483.0040,103.5148 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 472.8099,126.2745 ZM 476.8686,120.6898 c 0.0000,-0.1101 0.0157,-0.2360 0.1573 -0.3146c 0.1730,-0.1259 0.4562,-0.2674 0.6922 -0.2674c 0.2045,-0.0000 0.2202,0.1730 0.2202 0.4877v 2.5328 h 1.2743 l -0.0944,0.7394 h -1.1799 v 1.3057 c 0.0000,0.4405 0.0629,0.6607 0.5191 0.6607h 0.4248 c 0.0944,-0.0000 0.1101,0.0787 0.1101 0.1101v 0.3461 c 0.0000,-0.0000 -1.0068,-0.0315 -1.6676 -0.0315c -0.5978,-0.0000 -1.5260,0.0315 -1.5260 0.0315v -0.3461 c 0.0000,-0.0315 0.0157,-0.1101 0.1101 -0.1101h 0.4248 c 0.4877,-0.0000 0.5349,-0.2045 0.5349 -0.6607v -1.3057 h -3.0834 c -0.0629,-0.0000 -0.0944,-0.0315 -0.1416 -0.0944l -0.1259,-0.1730 l -0.1888,-0.3304 c -0.0157,-0.0000 -0.0157,-0.0157 -0.0157 -0.0315c 0.0000,-0.0157 0.0157,-0.0315 0.0315 -0.0472c 1.0226,-1.1327 2.8317,-4.6408 3.3980 -5.9308c 0.0157,-0.0629 0.0472,-0.0787 0.1101 -0.0787c 0.0157,-0.0000 0.3618,0.1416 0.5506 0.1730c -0.7079,1.9035 -1.8721,3.9486 -3.0205 5.7735h 2.4856 v -2.4384 ZM 479.7003,126.2745 ZM 481.3364,124.7800 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 483.1455,126.2745 ZM 487.2043,120.6898 c 0.0000,-0.1101 0.0157,-0.2360 0.1573 -0.3146c 0.1730,-0.1259 0.4562,-0.2674 0.6922 -0.2674c 0.2045,-0.0000 0.2202,0.1730 0.2202 0.4877v 2.5328 h 1.2743 l -0.0944,0.7394 h -1.1799 v 1.3057 c 0.0000,0.4405 0.0629,0.6607 0.5191 0.6607h 0.4248 c 0.0944,-0.0000 0.1101,0.0787 0.1101 0.1101v 0.3461 c 0.0000,-0.0000 -1.0068,-0.0315 -1.6676 -0.0315c -0.5978,-0.0000 -1.5260,0.0315 -1.5260 0.0315v -0.3461 c 0.0000,-0.0315 0.0157,-0.1101 0.1101 -0.1101h 0.4248 c 0.4877,-0.0000 0.5349,-0.2045 0.5349 -0.6607v -1.3057 h -3.0834 c -0.0629,-0.0000 -0.0944,-0.0315 -0.1416 -0.0944l -0.1259,-0.1730 l -0.1888,-0.3304 c -0.0157,-0.0000 -0.0157,-0.0157 -0.0157 -0.0315c 0.0000,-0.0157 0.0157,-0.0315 0.0315 -0.0472c 1.0226,-1.1327 2.8317,-4.6408 3.3980 -5.9308c 0.0157,-0.0629 0.0472,-0.0787 0.1101 -0.0787c 0.0157,-0.0000 0.3618,0.1416 0.5506 0.1730c -0.7079,1.9035 -1.8721,3.9486 -3.0205 5.7735h 2.4856 v -2.4384 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 483.0040,135.1353 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 472.8099,157.8950 ZM 476.8686,152.3103 c 0.0000,-0.1101 0.0157,-0.2360 0.1573 -0.3146c 0.1730,-0.1259 0.4562,-0.2674 0.6922 -0.2674c 0.2045,-0.0000 0.2202,0.1730 0.2202 0.4877v 2.5328 h 1.2743 l -0.0944,0.7394 h -1.1799 v 1.3057 c 0.0000,0.4405 0.0629,0.6607 0.5191 0.6607h 0.4248 c 0.0944,-0.0000 0.1101,0.0787 0.1101 0.1101v 0.3461 c 0.0000,-0.0000 -1.0068,-0.0315 -1.6676 -0.0315c -0.5978,-0.0000 -1.5260,0.0315 -1.5260 0.0315v -0.3461 c 0.0000,-0.0315 0.0157,-0.1101 0.1101 -0.1101h 0.4248 c 0.4877,-0.0000 0.5349,-0.2045 0.5349 -0.6607v -1.3057 h -3.0834 c -0.0629,-0.0000 -0.0944,-0.0315 -0.1416 -0.0944l -0.1259,-0.1730 l -0.1888,-0.3304 c -0.0157,-0.0000 -0.0157,-0.0157 -0.0157 -0.0315c 0.0000,-0.0157 0.0157,-0.0315 0.0315 -0.0472c 1.0226,-1.1327 2.8317,-4.6408 3.3980 -5.9308c 0.0157,-0.0629 0.0472,-0.0787 0.1101 -0.0787c 0.0157,-0.0000 0.3618,0.1416 0.5506 0.1730c -0.7079,1.9035 -1.8721,3.9486 -3.0205 5.7735h 2.4856 v -2.4384 ZM 479.7003,157.8950 ZM 481.3364,156.4005 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 483.1455,157.8950 ZM 486.5436,149.2898 c -0.3933,-0.0000 -1.5417,0.2202 -1.5417 1.1799c 0.0000,0.2832 -0.1101,0.7708 -0.5349 0.7708c -0.4090,-0.0000 -0.4405,-0.4562 -0.4405 -0.5034c 0.0000,-0.4877 0.6450,-1.9350 2.8317 -1.9350c 1.5260,-0.0000 1.9822,0.9596 1.9822 1.5889c 0.0000,0.3933 -0.1259,1.1799 -1.5417 2.0766c 0.8810,0.1416 2.0451,0.7866 2.0451 2.4227c 0.0000,2.0766 -1.5732,3.1935 -3.3508 3.1935c -0.8967,-0.0000 -2.1552,-0.3933 -2.1552 -0.9911c 0.0000,-0.2360 0.2360,-0.5034 0.5506 -0.5034c 0.2989,-0.0000 0.4405,0.1573 0.5821 0.3618c 0.1730,0.2674 0.4562,0.6450 1.2113 0.6450c 0.5191,-0.0000 1.9979,-0.5191 1.9979 -2.5013c 0.0000,-1.6833 -1.1799,-1.9507 -2.0294 -1.9507c -0.1416,-0.0000 -0.3146,0.0315 -0.4877 0.0629l -0.0629,-0.4719 c 1.2113,-0.2045 2.2182,-1.3844 2.2182 -2.1080c 0.0000,-0.8967 -0.6293,-1.3372 -1.2743 -1.3372Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 483.0040,166.7559 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 472.8099,189.5156 ZM 476.8686,183.9309 c 0.0000,-0.1101 0.0157,-0.2360 0.1573 -0.3146c 0.1730,-0.1259 0.4562,-0.2674 0.6922 -0.2674c 0.2045,-0.0000 0.2202,0.1730 0.2202 0.4877v 2.5328 h 1.2743 l -0.0944,0.7394 h -1.1799 v 1.3057 c 0.0000,0.4405 0.0629,0.6607 0.5191 0.6607h 0.4248 c 0.0944,-0.0000 0.1101,0.0787 0.1101 0.1101v 0.3461 c 0.0000,-0.0000 -1.0068,-0.0315 -1.6676 -0.0315c -0.5978,-0.0000 -1.5260,0.0315 -1.5260 0.0315v -0.3461 c 0.0000,-0.0315 0.0157,-0.1101 0.1101 -0.1101h 0.4248 c 0.4877,-0.0000 0.5349,-0.2045 0.5349 -0.6607v -1.3057 h -3.0834 c -0.0629,-0.0000 -0.0944,-0.0315 -0.1416 -0.0944l -0.1259,-0.1730 l -0.1888,-0.3304 c -0.0157,-0.0000 -0.0157,-0.0157 -0.0157 -0.0315c 0.0000,-0.0157 0.0157,-0.0315 0.0315 -0.0472c 1.0226,-1.1327 2.8317,-4.6408 3.3980 -5.9308c 0.0157,-0.0629 0.0472,-0.0787 0.1101 -0.0787c 0.0157,-0.0000 0.3618,0.1416 0.5506 0.1730c -0.7079,1.9035 -1.8721,3.9486 -3.0205 5.7735h 2.4856 v -2.4384 ZM 479.7003,189.5156 ZM 481.3364,188.0211 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 483.1455,189.5156 ZM 484.0580,182.5465 c 0.0000,-0.8967 0.8652,-2.1238 2.5171 -2.1238c 1.2113,-0.0000 2.6272,0.4562 2.6272 2.2654c 0.0000,1.1956 -0.6135,1.7934 -1.4630 2.6114l -1.4945,1.4473 c -0.0787,0.0787 -1.1327,1.1169 -1.1327 1.8563h 2.6744 c 0.5349,-0.0000 0.8180,-0.2674 1.0383 -1.1327l 0.3933,0.0629 l -0.3146,1.9822 h -4.8611 c 0.0000,-0.8810 0.1416,-1.5574 1.6046 -3.0519l 1.1012,-1.0855 c 0.8810,-0.8967 1.2428,-1.6676 1.2428 -2.6272c 0.0000,-1.4316 -0.9754,-1.8406 -1.5102 -1.8406c -1.0855,-0.0000 -1.3844,0.5663 -1.3844 0.9439c 0.0000,0.1259 0.0315,0.2517 0.0629 0.3618c 0.0315,0.1101 0.0629,0.2202 0.0629 0.3461c 0.0000,0.4090 -0.3146,0.5663 -0.5663 0.5663c -0.3461,-0.0000 -0.5978,-0.2674 -0.5978 -0.5821Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 483.0040,198.3764 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 472.8099,221.1362 ZM 476.8686,215.5514 c 0.0000,-0.1101 0.0157,-0.2360 0.1573 -0.3146c 0.1730,-0.1259 0.4562,-0.2674 0.6922 -0.2674c 0.2045,-0.0000 0.2202,0.1730 0.2202 0.4877v 2.5328 h 1.2743 l -0.0944,0.7394 h -1.1799 v 1.3057 c 0.0000,0.4405 0.0629,0.6607 0.5191 0.6607h 0.4248 c 0.0944,-0.0000 0.1101,0.0787 0.1101 0.1101v 0.3461 c 0.0000,-0.0000 -1.0068,-0.0315 -1.6676 -0.0315c -0.5978,-0.0000 -1.5260,0.0315 -1.5260 0.0315v -0.3461 c 0.0000,-0.0315 0.0157,-0.1101 0.1101 -0.1101h 0.4248 c 0.4877,-0.0000 0.5349,-0.2045 0.5349 -0.6607v -1.3057 h -3.0834 c -0.0629,-0.0000 -0.0944,-0.0315 -0.1416 -0.0944l -0.1259,-0.1730 l -0.1888,-0.3304 c -0.0157,-0.0000 -0.0157,-0.0157 -0.0157 -0.0315c 0.0000,-0.0157 0.0157,-0.0315 0.0315 -0.0472c 1.0226,-1.1327 2.8317,-4.6408 3.3980 -5.9308c 0.0157,-0.0629 0.0472,-0.0787 0.1101 -0.0787c 0.0157,-0.0000 0.3618,0.1416 0.5506 0.1730c -0.7079,1.9035 -1.8721,3.9486 -3.0205 5.7735h 2.4856 v -2.4384 ZM 479.7003,221.1362 ZM 481.3364,219.6416 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 483.1455,221.1362 ZM 486.1031,213.6322 c -0.2989,-0.0000 -0.9911,0.2832 -1.3372 0.4405l -0.1888,-0.4877 c 1.3844,-0.6450 1.9193,-0.9754 2.7058 -1.5417h 0.2989 v 7.9130 c 0.0000,0.5663 0.0787,0.7237 0.5978 0.7237h 0.8180 c 0.0472,-0.0000 0.1259,0.0315 0.1259 0.1259v 0.3461 l -2.1552,-0.0315 l -2.1867,0.0315 v -0.3461 c 0.0157,-0.0472 0.0315,-0.1259 0.1259 -0.1259h 0.9439 c 0.5978,-0.0000 0.5978,-0.2674 0.5978 -0.7237v -5.4117 c 0.0000,-0.5349 0.0000,-0.9124 -0.3461 -0.9124Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 483.0040,229.9970 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 472.8099,252.7567 ZM 476.8686,247.1720 c 0.0000,-0.1101 0.0157,-0.2360 0.1573 -0.3146c 0.1730,-0.1259 0.4562,-0.2674 0.6922 -0.2674c 0.2045,-0.0000 0.2202,0.1730 0.2202 0.4877v 2.5328 h 1.2743 l -0.0944,0.7394 h -1.1799 v 1.3057 c 0.0000,0.4405 0.0629,0.6607 0.5191 0.6607h 0.4248 c 0.0944,-0.0000 0.1101,0.0787 0.1101 0.1101v 0.3461 c 0.0000,-0.0000 -1.0068,-0.0315 -1.6676 -0.0315c -0.5978,-0.0000 -1.5260,0.0315 -1.5260 0.0315v -0.3461 c 0.0000,-0.0315 0.0157,-0.1101 0.1101 -0.1101h 0.4248 c 0.4877,-0.0000 0.5349,-0.2045 0.5349 -0.6607v -1.3057 h -3.0834 c -0.0629,-0.0000 -0.0944,-0.0315 -0.1416 -0.0944l -0.1259,-0.1730 l -0.1888,-0.3304 c -0.0157,-0.0000 -0.0157,-0.0157 -0.0157 -0.0315c 0.0000,-0.0157 0.0157,-0.0315 0.0315 -0.0472c 1.0226,-1.1327 2.8317,-4.6408 3.3980 -5.9308c 0.0157,-0.0629 0.0472,-0.0787 0.1101 -0.0787c 0.0157,-0.0000 0.3618,0.1416 0.5506 0.1730c -0.7079,1.9035 -1.8721,3.9486 -3.0205 5.7735h 2.4856 v -2.4384 ZM 479.7003,252.7567 ZM 481.3364,251.2622 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 483.1455,252.7567 ZM 486.5908,244.2144 c -0.6765,-0.0000 -1.6676,0.6607 -1.6676 4.3262c 0.0000,1.2900 0.2360,3.8857 1.6204 3.8857c 0.2674,-0.0000 1.0226,-0.1730 1.3529 -1.4001c 0.2045,-0.7551 0.3146,-1.6990 0.3146 -3.0677c 0.0000,-1.9979 -0.5034,-3.1149 -0.9596 -3.5082c -0.1730,-0.1573 -0.4090,-0.2360 -0.6607 -0.2360ZM 486.5908,244.2144 ZM 486.5278,252.9455 c -1.6833,-0.0000 -2.8160,-2.1552 -2.8160 -4.5622c 0.0000,-2.9418 1.4001,-4.7195 2.8789 -4.7195c 0.6765,-0.0000 1.3529,0.4248 1.8091 1.0383c 0.6607,0.8810 1.0068,2.0608 1.0068 3.5396c 0.0000,3.4924 -1.7305,4.7038 -2.8789 4.7038Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 483.0040,261.6175 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 377.9482,94.6539 ZM 381.3462,86.0487 c -0.3933,-0.0000 -1.5417,0.2202 -1.5417 1.1799c 0.0000,0.2832 -0.1101,0.7708 -0.5349 0.7708c -0.4090,-0.0000 -0.4405,-0.4562 -0.4405 -0.5034c 0.0000,-0.4877 0.6450,-1.9350 2.8317 -1.9350c 1.5260,-0.0000 1.9822,0.9596 1.9822 1.5889c 0.0000,0.3933 -0.1259,1.1799 -1.5417 2.0766c 0.8810,0.1416 2.0451,0.7866 2.0451 2.4227c 0.0000,2.0766 -1.5732,3.1935 -3.3508 3.1935c -0.8967,-0.0000 -2.1552,-0.3933 -2.1552 -0.9911c 0.0000,-0.2360 0.2360,-0.5034 0.5506 -0.5034c 0.2989,-0.0000 0.4405,0.1573 0.5821 0.3618c 0.1730,0.2674 0.4562,0.6450 1.2113 0.6450c 0.5191,-0.0000 1.9979,-0.5191 1.9979 -2.5013c 0.0000,-1.6833 -1.1799,-1.9507 -2.0294 -1.9507c -0.1416,-0.0000 -0.3146,0.0315 -0.4877 0.0629l -0.0629,-0.4719 c 1.2113,-0.2045 2.2182,-1.3844 2.2182 -2.1080c 0.0000,-0.8967 -0.6293,-1.3372 -1.2743 -1.3372ZM 384.8387,94.6539 ZM 386.4747,93.1594 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 388.2839,94.6539 ZM 393.1449,91.9953 c 0.0000,-1.6204 -0.8810,-2.4227 -1.8563 -2.4227c -0.7237,-0.0000 -1.2743,0.1101 -1.8878 0.3618l 0.5034,-4.2947 c 0.5191,0.0472 1.0540,0.0629 1.6046 0.0629c 0.7866,-0.0000 1.6046,-0.0472 2.4541 -0.1416l 0.0944,0.0472 l -0.2360,1.0226 c -0.6135,0.0629 -1.1169,0.0787 -1.5574 0.0787c -0.7079,-0.0000 -1.2428,-0.0629 -1.7934 -0.1259l -0.2989,2.4856 c 0.3304,-0.1259 0.8967,-0.2360 1.5102 -0.2360c 1.6676,-0.0000 2.5957,1.4473 2.5957 2.8946c 0.0000,1.7619 -1.2271,3.1149 -3.0047 3.1149c -0.8967,-0.0000 -2.2024,-0.5034 -2.2024 -1.1169c 0.0000,-0.2989 0.2517,-0.5034 0.5349 -0.5034c 0.3146,-0.0000 0.5191,0.2360 0.7079 0.4877c 0.2360,0.2832 0.4877,0.5978 0.9911 0.5978c 1.0068,-0.0000 1.8406,-0.9439 1.8406 -2.3125Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 388.1423,103.5148 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 377.9482,126.2745 ZM 381.3462,117.6693 c -0.3933,-0.0000 -1.5417,0.2202 -1.5417 1.1799c 0.0000,0.2832 -0.1101,0.7708 -0.5349 0.7708c -0.4090,-0.0000 -0.4405,-0.4562 -0.4405 -0.5034c 0.0000,-0.4877 0.6450,-1.9350 2.8317 -1.9350c 1.5260,-0.0000 1.9822,0.9596 1.9822 1.5889c 0.0000,0.3933 -0.1259,1.1799 -1.5417 2.0766c 0.8810,0.1416 2.0451,0.7866 2.0451 2.4227c 0.0000,2.0766 -1.5732,3.1935 -3.3508 3.1935c -0.8967,-0.0000 -2.1552,-0.3933 -2.1552 -0.9911c 0.0000,-0.2360 0.2360,-0.5034 0.5506 -0.5034c 0.2989,-0.0000 0.4405,0.1573 0.5821 0.3618c 0.1730,0.2674 0.4562,0.6450 1.2113 0.6450c 0.5191,-0.0000 1.9979,-0.5191 1.9979 -2.5013c 0.0000,-1.6833 -1.1799,-1.9507 -2.0294 -1.9507c -0.1416,-0.0000 -0.3146,0.0315 -0.4877 0.0629l -0.0629,-0.4719 c 1.2113,-0.2045 2.2182,-1.3844 2.2182 -2.1080c 0.0000,-0.8967 -0.6293,-1.3372 -1.2743 -1.3372ZM 384.8387,126.2745 ZM 386.4747,124.7800 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 388.2839,126.2745 ZM 392.3426,120.6898 c 0.0000,-0.1101 0.0157,-0.2360 0.1573 -0.3146c 0.1730,-0.1259 0.4562,-0.2674 0.6922 -0.2674c 0.2045,-0.0000 0.2202,0.1730 0.2202 0.4877v 2.5328 h 1.2743 l -0.0944,0.7394 h -1.1799 v 1.3057 c 0.0000,0.4405 0.0629,0.6607 0.5191 0.6607h 0.4248 c 0.0944,-0.0000 0.1101,0.0787 0.1101 0.1101v 0.3461 c 0.0000,-0.0000 -1.0068,-0.0315 -1.6676 -0.0315c -0.5978,-0.0000 -1.5260,0.0315 -1.5260 0.0315v -0.3461 c 0.0000,-0.0315 0.0157,-0.1101 0.1101 -0.1101h 0.4248 c 0.4877,-0.0000 0.5349,-0.2045 0.5349 -0.6607v -1.3057 h -3.0834 c -0.0629,-0.0000 -0.0944,-0.0315 -0.1416 -0.0944l -0.1259,-0.1730 l -0.1888,-0.3304 c -0.0157,-0.0000 -0.0157,-0.0157 -0.0157 -0.0315c 0.0000,-0.0157 0.0157,-0.0315 0.0315 -0.0472c 1.0226,-1.1327 2.8317,-4.6408 3.3980 -5.9308c 0.0157,-0.0629 0.0472,-0.0787 0.1101 -0.0787c 0.0157,-0.0000 0.3618,0.1416 0.5506 0.1730c -0.7079,1.9035 -1.8721,3.9486 -3.0205 5.7735h 2.4856 v -2.4384 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 388.1423,135.1353 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 377.9482,157.8950 ZM 381.3462,149.2898 c -0.3933,-0.0000 -1.5417,0.2202 -1.5417 1.1799c 0.0000,0.2832 -0.1101,0.7708 -0.5349 0.7708c -0.4090,-0.0000 -0.4405,-0.4562 -0.4405 -0.5034c 0.0000,-0.4877 0.6450,-1.9350 2.8317 -1.9350c 1.5260,-0.0000 1.9822,0.9596 1.9822 1.5889c 0.0000,0.3933 -0.1259,1.1799 -1.5417 2.0766c 0.8810,0.1416 2.0451,0.7866 2.0451 2.4227c 0.0000,2.0766 -1.5732,3.1935 -3.3508 3.1935c -0.8967,-0.0000 -2.1552,-0.3933 -2.1552 -0.9911c 0.0000,-0.2360 0.2360,-0.5034 0.5506 -0.5034c 0.2989,-0.0000 0.4405,0.1573 0.5821 0.3618c 0.1730,0.2674 0.4562,0.6450 1.2113 0.6450c 0.5191,-0.0000 1.9979,-0.5191 1.9979 -2.5013c 0.0000,-1.6833 -1.1799,-1.9507 -2.0294 -1.9507c -0.1416,-0.0000 -0.3146,0.0315 -0.4877 0.0629l -0.0629,-0.4719 c 1.2113,-0.2045 2.2182,-1.3844 2.2182 -2.1080c 0.0000,-0.8967 -0.6293,-1.3372 -1.2743 -1.3372ZM 384.8387,157.8950 ZM 386.4747,156.4005 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 388.2839,157.8950 ZM 391.6819,149.2898 c -0.3933,-0.0000 -1.5417,0.2202 -1.5417 1.1799c 0.0000,0.2832 -0.1101,0.7708 -0.5349 0.7708c -0.4090,-0.0000 -0.4405,-0.4562 -0.4405 -0.5034c 0.0000,-0.4877 0.6450,-1.9350 2.8317 -1.9350c 1.5260,-0.0000 1.9822,0.9596 1.9822 1.5889c 0.0000,0.3933 -0.1259,1.1799 -1.5417 2.0766c 0.8810,0.1416 2.0451,0.7866 2.0451 2.4227c 0.0000,2.0766 -1.5732,3.1935 -3.3508 3.1935c -0.8967,-0.0000 -2.1552,-0.3933 -2.1552 -0.9911c 0.0000,-0.2360 0.2360,-0.5034 0.5506 -0.5034c 0.2989,-0.0000 0.4405,0.1573 0.5821 0.3618c 0.1730,0.2674 0.4562,0.6450 1.2113 0.6450c 0.5191,-0.0000 1.9979,-0.5191 1.9979 -2.5013c 0.0000,-1.6833 -1.1799,-1.9507 -2.0294 -1.9507c -0.1416,-0.0000 -0.3146,0.0315 -0.4877 0.0629l -0.0629,-0.4719 c 1.2113,-0.2045 2.2182,-1.3844 2.2182 -2.1080c 0.0000,-0.8967 -0.6293,-1.3372 -1.2743 -1.3372Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 388.1423,166.7559 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 377.9482,189.5156 ZM 381.3462,180.9104 c -0.3933,-0.0000 -1.5417,0.2202 -1.5417 1.1799c 0.0000,0.2832 -0.1101,0.7708 -0.5349 0.7708c -0.4090,-0.0000 -0.4405,-0.4562 -0.4405 -0.5034c 0.0000,-0.4877 0.6450,-1.9350 2.8317 -1.9350c 1.5260,-0.0000 1.9822,0.9596 1.9822 1.5889c 0.0000,0.3933 -0.1259,1.1799 -1.5417 2.0766c 0.8810,0.1416 2.0451,0.7866 2.0451 2.4227c 0.0000,2.0766 -1.5732,3.1935 -3.3508 3.1935c -0.8967,-0.0000 -2.1552,-0.3933 -2.1552 -0.9911c 0.0000,-0.2360 0.2360,-0.5034 0.5506 -0.5034c 0.2989,-0.0000 0.4405,0.1573 0.5821 0.3618c 0.1730,0.2674 0.4562,0.6450 1.2113 0.6450c 0.5191,-0.0000 1.9979,-0.5191 1.9979 -2.5013c 0.0000,-1.6833 -1.1799,-1.9507 -2.0294 -1.9507c -0.1416,-0.0000 -0.3146,0.0315 -0.4877 0.0629l -0.0629,-0.4719 c 1.2113,-0.2045 2.2182,-1.3844 2.2182 -2.1080c 0.0000,-0.8967 -0.6293,-1.3372 -1.2743 -1.3372ZM 384.8387,189.5156 ZM 386.4747,188.0211 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 388.2839,189.5156 ZM 389.1963,182.5465 c 0.0000,-0.8967 0.8652,-2.1238 2.5171 -2.1238c 1.2113,-0.0000 2.6272,0.4562 2.6272 2.2654c 0.0000,1.1956 -0.6135,1.7934 -1.4630 2.6114l -1.4945,1.4473 c -0.0787,0.0787 -1.1327,1.1169 -1.1327 1.8563h 2.6744 c 0.5349,-0.0000 0.8180,-0.2674 1.0383 -1.1327l 0.3933,0.0629 l -0.3146,1.9822 h -4.8611 c 0.0000,-0.8810 0.1416,-1.5574 1.6046 -3.0519l 1.1012,-1.0855 c 0.8810,-0.8967 1.2428,-1.6676 1.2428 -2.6272c 0.0000,-1.4316 -0.9754,-1.8406 -1.5102 -1.8406c -1.0855,-0.0000 -1.3844,0.5663 -1.3844 0.9439c 0.0000,0.1259 0.0315,0.2517 0.0629 0.3618c 0.0315,0.1101 0.0629,0.2202 0.0629 0.3461c 0.0000,0.4090 -0.3146,0.5663 -0.5663 0.5663c -0.3461,-0.0000 -0.5978,-0.2674 -0.5978 -0.5821Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 388.1423,198.3764 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 377.9482,221.1362 ZM 381.3462,212.5310 c -0.3933,-0.0000 -1.5417,0.2202 -1.5417 1.1799c 0.0000,0.2832 -0.1101,0.7708 -0.5349 0.7708c -0.4090,-0.0000 -0.4405,-0.4562 -0.4405 -0.5034c 0.0000,-0.4877 0.6450,-1.9350 2.8317 -1.9350c 1.5260,-0.0000 1.9822,0.9596 1.9822 1.5889c 0.0000,0.3933 -0.1259,1.1799 -1.5417 2.0766c 0.8810,0.1416 2.0451,0.7866 2.0451 2.4227c 0.0000,2.0766 -1.5732,3.1935 -3.3508 3.1935c -0.8967,-0.0000 -2.1552,-0.3933 -2.1552 -0.9911c 0.0000,-0.2360 0.2360,-0.5034 0.5506 -0.5034c 0.2989,-0.0000 0.4405,0.1573 0.5821 0.3618c 0.1730,0.2674 0.4562,0.6450 1.2113 0.6450c 0.5191,-0.0000 1.9979,-0.5191 1.9979 -2.5013c 0.0000,-1.6833 -1.1799,-1.9507 -2.0294 -1.9507c -0.1416,-0.0000 -0.3146,0.0315 -0.4877 0.0629l -0.0629,-0.4719 c 1.2113,-0.2045 2.2182,-1.3844 2.2182 -2.1080c 0.0000,-0.8967 -0.6293,-1.3372 -1.2743 -1.3372ZM 384.8387,221.1362 ZM 386.4747,219.6416 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 388.2839,221.1362 ZM 391.2414,213.6322 c -0.2989,-0.0000 -0.9911,0.2832 -1.3372 0.4405l -0.1888,-0.4877 c 1.3844,-0.6450 1.9193,-0.9754 2.7058 -1.5417h 0.2989 v 7.9130 c 0.0000,0.5663 0.0787,0.7237 0.5978 0.7237h 0.8180 c 0.0472,-0.0000 0.1259,0.0315 0.1259 0.1259v 0.3461 l -2.1552,-0.0315 l -2.1867,0.0315 v -0.3461 c 0.0157,-0.0472 0.0315,-0.1259 0.1259 -0.1259h 0.9439 c 0.5978,-0.0000 0.5978,-0.2674 0.5978 -0.7237v -5.4117 c 0.0000,-0.5349 0.0000,-0.9124 -0.3461 -0.9124Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 388.1423,229.9970 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 377.9482,252.7567 ZM 381.3462,244.1515 c -0.3933,-0.0000 -1.5417,0.2202 -1.5417 1.1799c 0.0000,0.2832 -0.1101,0.7708 -0.5349 0.7708c -0.4090,-0.0000 -0.4405,-0.4562 -0.4405 -0.5034c 0.0000,-0.4877 0.6450,-1.9350 2.8317 -1.9350c 1.5260,-0.0000 1.9822,0.9596 1.9822 1.5889c 0.0000,0.3933 -0.1259,1.1799 -1.5417 2.0766c 0.8810,0.1416 2.0451,0.7866 2.0451 2.4227c 0.0000,2.0766 -1.5732,3.1935 -3.3508 3.1935c -0.8967,-0.0000 -2.1552,-0.3933 -2.1552 -0.9911c 0.0000,-0.2360 0.2360,-0.5034 0.5506 -0.5034c 0.2989,-0.0000 0.4405,0.1573 0.5821 0.3618c 0.1730,0.2674 0.4562,0.6450 1.2113 0.6450c 0.5191,-0.0000 1.9979,-0.5191 1.9979 -2.5013c 0.0000,-1.6833 -1.1799,-1.9507 -2.0294 -1.9507c -0.1416,-0.0000 -0.3146,0.0315 -0.4877 0.0629l -0.0629,-0.4719 c 1.2113,-0.2045 2.2182,-1.3844 2.2182 -2.1080c 0.0000,-0.8967 -0.6293,-1.3372 -1.2743 -1.3372ZM 384.8387,252.7567 ZM 386.4747,251.2622 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 388.2839,252.7567 ZM 391.7291,244.2144 c -0.6765,-0.0000 -1.6676,0.6607 -1.6676 4.3262c 0.0000,1.2900 0.2360,3.8857 1.6204 3.8857c 0.2674,-0.0000 1.0226,-0.1730 1.3529 -1.4001c 0.2045,-0.7551 0.3146,-1.6990 0.3146 -3.0677c 0.0000,-1.9979 -0.5034,-3.1149 -0.9596 -3.5082c -0.1730,-0.1573 -0.4090,-0.2360 -0.6607 -0.2360ZM 391.7291,244.2144 ZM 391.6662,252.9455 c -1.6833,-0.0000 -2.8160,-2.1552 -2.8160 -4.5622c 0.0000,-2.9418 1.4001,-4.7195 2.8789 -4.7195c 0.6765,-0.0000 1.3529,0.4248 1.8091 1.0383c 0.6607,0.8810 1.0068,2.0608 1.0068 3.5396c 0.0000,3.4924 -1.7305,4.7038 -2.8789 4.7038Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 388.1423,261.6175 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 283.0865,94.6539 ZM 283.9990,87.6848 c 0.0000,-0.8967 0.8652,-2.1238 2.5171 -2.1238c 1.2113,-0.0000 2.6272,0.4562 2.6272 2.2654c 0.0000,1.1956 -0.6135,1.7934 -1.4630 2.6114l -1.4945,1.4473 c -0.0787,0.0787 -1.1327,1.1169 -1.1327 1.8563h 2.6744 c 0.5349,-0.0000 0.8180,-0.2674 1.0383 -1.1327l 0.3933,0.0629 l -0.3146,1.9822 h -4.8611 c 0.0000,-0.8810 0.1416,-1.5574 1.6046 -3.0519l 1.1012,-1.0855 c 0.8810,-0.8967 1.2428,-1.6676 1.2428 -2.6272c 0.0000,-1.4316 -0.9754,-1.8406 -1.5102 -1.8406c -1.0855,-0.0000 -1.3844,0.5663 -1.3844 0.9439c 0.0000,0.1259 0.0315,0.2517 0.0629 0.3618c 0.0315,0.1101 0.0629,0.2202 0.0629 0.3461c 0.0000,0.4090 -0.3146,0.5663 -0.5663 0.5663c -0.3461,-0.0000 -0.5978,-0.2674 -0.5978 -0.5821ZM 289.9770,94.6539 ZM 291.6131,93.1594 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 293.4222,94.6539 ZM 298.2833,91.9953 c 0.0000,-1.6204 -0.8810,-2.4227 -1.8563 -2.4227c -0.7237,-0.0000 -1.2743,0.1101 -1.8878 0.3618l 0.5034,-4.2947 c 0.5191,0.0472 1.0540,0.0629 1.6046 0.0629c 0.7866,-0.0000 1.6046,-0.0472 2.4541 -0.1416l 0.0944,0.0472 l -0.2360,1.0226 c -0.6135,0.0629 -1.1169,0.0787 -1.5574 0.0787c -0.7079,-0.0000 -1.2428,-0.0629 -1.7934 -0.1259l -0.2989,2.4856 c 0.3304,-0.1259 0.8967,-0.2360 1.5102 -0.2360c 1.6676,-0.0000 2.5957,1.4473 2.5957 2.8946c 0.0000,1.7619 -1.2271,3.1149 -3.0047 3.1149c -0.8967,-0.0000 -2.2024,-0.5034 -2.2024 -1.1169c 0.0000,-0.2989 0.2517,-0.5034 0.5349 -0.5034c 0.3146,-0.0000 0.5191,0.2360 0.7079 0.4877c 0.2360,0.2832 0.4877,0.5978 0.9911 0.5978c 1.0068,-0.0000 1.8406,-0.9439 1.8406 -2.3125Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 293.2806,103.5148 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 283.0865,126.2745 ZM 283.9990,119.3054 c 0.0000,-0.8967 0.8652,-2.1238 2.5171 -2.1238c 1.2113,-0.0000 2.6272,0.4562 2.6272 2.2654c 0.0000,1.1956 -0.6135,1.7934 -1.4630 2.6114l -1.4945,1.4473 c -0.0787,0.0787 -1.1327,1.1169 -1.1327 1.8563h 2.6744 c 0.5349,-0.0000 0.8180,-0.2674 1.0383 -1.1327l 0.3933,0.0629 l -0.3146,1.9822 h -4.8611 c 0.0000,-0.8810 0.1416,-1.5574 1.6046 -3.0519l 1.1012,-1.0855 c 0.8810,-0.8967 1.2428,-1.6676 1.2428 -2.6272c 0.0000,-1.4316 -0.9754,-1.8406 -1.5102 -1.8406c -1.0855,-0.0000 -1.3844,0.5663 -1.3844 0.9439c 0.0000,0.1259 0.0315,0.2517 0.0629 0.3618c 0.0315,0.1101 0.0629,0.2202 0.0629 0.3461c 0.0000,0.4090 -0.3146,0.5663 -0.5663 0.5663c -0.3461,-0.0000 -0.5978,-0.2674 -0.5978 -0.5821ZM 289.9770,126.2745 ZM 291.6131,124.7800 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 293.4222,126.2745 ZM 297.4810,120.6898 c 0.0000,-0.1101 0.0157,-0.2360 0.1573 -0.3146c 0.1730,-0.1259 0.4562,-0.2674 0.6922 -0.2674c 0.2045,-0.0000 0.2202,0.1730 0.2202 0.4877v 2.5328 h 1.2743 l -0.0944,0.7394 h -1.1799 v 1.3057 c 0.0000,0.4405 0.0629,0.6607 0.5191 0.6607h 0.4248 c 0.0944,-0.0000 0.1101,0.0787 0.1101 0.1101v 0.3461 c 0.0000,-0.0000 -1.0068,-0.0315 -1.6676 -0.0315c -0.5978,-0.0000 -1.5260,0.0315 -1.5260 0.0315v -0.3461 c 0.0000,-0.0315 0.0157,-0.1101 0.1101 -0.1101h 0.4248 c 0.4877,-0.0000 0.5349,-0.2045 0.5349 -0.6607v -1.3057 h -3.0834 c -0.0629,-0.0000 -0.0944,-0.0315 -0.1416 -0.0944l -0.1259,-0.1730 l -0.1888,-0.3304 c -0.0157,-0.0000 -0.0157,-0.0157 -0.0157 -0.0315c 0.0000,-0.0157 0.0157,-0.0315 0.0315 -0.0472c 1.0226,-1.1327 2.8317,-4.6408 3.3980 -5.9308c 0.0157,-0.0629 0.0472,-0.0787 0.1101 -0.0787c 0.0157,-0.0000 0.3618,0.1416 0.5506 0.1730c -0.7079,1.9035 -1.8721,3.9486 -3.0205 5.7735h 2.4856 v -2.4384 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 293.2806,135.1353 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 283.0865,157.8950 ZM 283.9990,150.9259 c 0.0000,-0.8967 0.8652,-2.1238 2.5171 -2.1238c 1.2113,-0.0000 2.6272,0.4562 2.6272 2.2654c 0.0000,1.1956 -0.6135,1.7934 -1.4630 2.6114l -1.4945,1.4473 c -0.0787,0.0787 -1.1327,1.1169 -1.1327 1.8563h 2.6744 c 0.5349,-0.0000 0.8180,-0.2674 1.0383 -1.1327l 0.3933,0.0629 l -0.3146,1.9822 h -4.8611 c 0.0000,-0.8810 0.1416,-1.5574 1.6046 -3.0519l 1.1012,-1.0855 c 0.8810,-0.8967 1.2428,-1.6676 1.2428 -2.6272c 0.0000,-1.4316 -0.9754,-1.8406 -1.5102 -1.8406c -1.0855,-0.0000 -1.3844,0.5663 -1.3844 0.9439c 0.0000,0.1259 0.0315,0.2517 0.0629 0.3618c 0.0315,0.1101 0.0629,0.2202 0.0629 0.3461c 0.0000,0.4090 -0.3146,0.5663 -0.5663 0.5663c -0.3461,-0.0000 -0.5978,-0.2674 -0.5978 -0.5821ZM 289.9770,157.8950 ZM 291.6131,156.4005 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 293.4222,157.8950 ZM 296.8202,149.2898 c -0.3933,-0.0000 -1.5417,0.2202 -1.5417 1.1799c 0.0000,0.2832 -0.1101,0.7708 -0.5349 0.7708c -0.4090,-0.0000 -0.4405,-0.4562 -0.4405 -0.5034c 0.0000,-0.4877 0.6450,-1.9350 2.8317 -1.9350c 1.5260,-0.0000 1.9822,0.9596 1.9822 1.5889c 0.0000,0.3933 -0.1259,1.1799 -1.5417 2.0766c 0.8810,0.1416 2.0451,0.7866 2.0451 2.4227c 0.0000,2.0766 -1.5732,3.1935 -3.3508 3.1935c -0.8967,-0.0000 -2.1552,-0.3933 -2.1552 -0.9911c 0.0000,-0.2360 0.2360,-0.5034 0.5506 -0.5034c 0.2989,-0.0000 0.4405,0.1573 0.5821 0.3618c 0.1730,0.2674 0.4562,0.6450 1.2113 0.6450c 0.5191,-0.0000 1.9979,-0.5191 1.9979 -2.5013c 0.0000,-1.6833 -1.1799,-1.9507 -2.0294 -1.9507c -0.1416,-0.0000 -0.3146,0.0315 -0.4877 0.0629l -0.0629,-0.4719 c 1.2113,-0.2045 2.2182,-1.3844 2.2182 -2.1080c 0.0000,-0.8967 -0.6293,-1.3372 -1.2743 -1.3372Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 293.2806,166.7559 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 283.0865,189.5156 ZM 283.9990,182.5465 c 0.0000,-0.8967 0.8652,-2.1238 2.5171 -2.1238c 1.2113,-0.0000 2.6272,0.4562 2.6272 2.2654c 0.0000,1.1956 -0.6135,1.7934 -1.4630 2.6114l -1.4945,1.4473 c -0.0787,0.0787 -1.1327,1.1169 -1.1327 1.8563h 2.6744 c 0.5349,-0.0000 0.8180,-0.2674 1.0383 -1.1327l 0.3933,0.0629 l -0.3146,1.9822 h -4.8611 c 0.0000,-0.8810 0.1416,-1.5574 1.6046 -3.0519l 1.1012,-1.0855 c 0.8810,-0.8967 1.2428,-1.6676 1.2428 -2.6272c 0.0000,-1.4316 -0.9754,-1.8406 -1.5102 -1.8406c -1.0855,-0.0000 -1.3844,0.5663 -1.3844 0.9439c 0.0000,0.1259 0.0315,0.2517 0.0629 0.3618c 0.0315,0.1101 0.0629,0.2202 0.0629 0.3461c 0.0000,0.4090 -0.3146,0.5663 -0.5663 0.5663c -0.3461,-0.0000 -0.5978,-0.2674 -0.5978 -0.5821ZM 289.9770,189.5156 ZM 291.6131,188.0211 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 293.4222,189.5156 ZM 294.3347,182.5465 c 0.0000,-0.8967 0.8652,-2.1238 2.5171 -2.1238c 1.2113,-0.0000 2.6272,0.4562 2.6272 2.2654c 0.0000,1.1956 -0.6135,1.7934 -1.4630 2.6114l -1.4945,1.4473 c -0.0787,0.0787 -1.1327,1.1169 -1.1327 1.8563h 2.6744 c 0.5349,-0.0000 0.8180,-0.2674 1.0383 -1.1327l 0.3933,0.0629 l -0.3146,1.9822 h -4.8611 c 0.0000,-0.8810 0.1416,-1.5574 1.6046 -3.0519l 1.1012,-1.0855 c 0.8810,-0.8967 1.2428,-1.6676 1.2428 -2.6272c 0.0000,-1.4316 -0.9754,-1.8406 -1.5102 -1.8406c -1.0855,-0.0000 -1.3844,0.5663 -1.3844 0.9439c 0.0000,0.1259 0.0315,0.2517 0.0629 0.3618c 0.0315,0.1101 0.0629,0.2202 0.0629 0.3461c 0.0000,0.4090 -0.3146,0.5663 -0.5663 0.5663c -0.3461,-0.0000 -0.5978,-0.2674 -0.5978 -0.5821Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 293.2806,198.3764 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 283.0865,221.1362 ZM 283.9990,214.1670 c 0.0000,-0.8967 0.8652,-2.1238 2.5171 -2.1238c 1.2113,-0.0000 2.6272,0.4562 2.6272 2.2654c 0.0000,1.1956 -0.6135,1.7934 -1.4630 2.6114l -1.4945,1.4473 c -0.0787,0.0787 -1.1327,1.1169 -1.1327 1.8563h 2.6744 c 0.5349,-0.0000 0.8180,-0.2674 1.0383 -1.1327l 0.3933,0.0629 l -0.3146,1.9822 h -4.8611 c 0.0000,-0.8810 0.1416,-1.5574 1.6046 -3.0519l 1.1012,-1.0855 c 0.8810,-0.8967 1.2428,-1.6676 1.2428 -2.6272c 0.0000,-1.4316 -0.9754,-1.8406 -1.5102 -1.8406c -1.0855,-0.0000 -1.3844,0.5663 -1.3844 0.9439c 0.0000,0.1259 0.0315,0.2517 0.0629 0.3618c 0.0315,0.1101 0.0629,0.2202 0.0629 0.3461c 0.0000,0.4090 -0.3146,0.5663 -0.5663 0.5663c -0.3461,-0.0000 -0.5978,-0.2674 -0.5978 -0.5821ZM 289.9770,221.1362 ZM 291.6131,219.6416 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 293.4222,221.1362 ZM 296.3798,213.6322 c -0.2989,-0.0000 -0.9911,0.2832 -1.3372 0.4405l -0.1888,-0.4877 c 1.3844,-0.6450 1.9193,-0.9754 2.7058 -1.5417h 0.2989 v 7.9130 c 0.0000,0.5663 0.0787,0.7237 0.5978 0.7237h 0.8180 c 0.0472,-0.0000 0.1259,0.0315 0.1259 0.1259v 0.3461 l -2.1552,-0.0315 l -2.1867,0.0315 v -0.3461 c 0.0157,-0.0472 0.0315,-0.1259 0.1259 -0.1259h 0.9439 c 0.5978,-0.0000 0.5978,-0.2674 0.5978 -0.7237v -5.4117 c 0.0000,-0.5349 0.0000,-0.9124 -0.3461 -0.9124Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 293.2806,229.9970 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 283.0865,252.7567 ZM 283.9990,245.7876 c 0.0000,-0.8967 0.8652,-2.1238 2.5171 -2.1238c 1.2113,-0.0000 2.6272,0.4562 2.6272 2.2654c 0.0000,1.1956 -0.6135,1.7934 -1.4630 2.6114l -1.4945,1.4473 c -0.0787,0.0787 -1.1327,1.1169 -1.1327 1.8563h 2.6744 c 0.5349,-0.0000 0.8180,-0.2674 1.0383 -1.1327l 0.3933,0.0629 l -0.3146,1.9822 h -4.8611 c 0.0000,-0.8810 0.1416,-1.5574 1.6046 -3.0519l 1.1012,-1.0855 c 0.8810,-0.8967 1.2428,-1.6676 1.2428 -2.6272c 0.0000,-1.4316 -0.9754,-1.8406 -1.5102 -1.8406c -1.0855,-0.0000 -1.3844,0.5663 -1.3844 0.9439c 0.0000,0.1259 0.0315,0.2517 0.0629 0.3618c 0.0315,0.1101 0.0629,0.2202 0.0629 0.3461c 0.0000,0.4090 -0.3146,0.5663 -0.5663 0.5663c -0.3461,-0.0000 -0.5978,-0.2674 -0.5978 -0.5821ZM 289.9770,252.7567 ZM 291.6131,251.2622 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 293.4222,252.7567 ZM 296.8674,244.2144 c -0.6765,-0.0000 -1.6676,0.6607 -1.6676 4.3262c 0.0000,1.2900 0.2360,3.8857 1.6204 3.8857c 0.2674,-0.0000 1.0226,-0.1730 1.3529 -1.4001c 0.2045,-0.7551 0.3146,-1.6990 0.3146 -3.0677c 0.0000,-1.9979 -0.5034,-3.1149 -0.9596 -3.5082c -0.1730,-0.1573 -0.4090,-0.2360 -0.6607 -0.2360ZM 296.8674,244.2144 ZM 296.8045,252.9455 c -1.6833,-0.0000 -2.8160,-2.1552 -2.8160 -4.5622c 0.0000,-2.9418 1.4001,-4.7195 2.8789 -4.7195c 0.6765,-0.0000 1.3529,0.4248 1.8091 1.0383c 0.6607,0.8810 1.0068,2.0608 1.0068 3.5396c 0.0000,3.4924 -1.7305,4.7038 -2.8789 4.7038Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 293.2806,261.6175 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 188.2249,94.6539 ZM 191.1824,87.1500 c -0.2989,-0.0000 -0.9911,0.2832 -1.3372 0.4405l -0.1888,-0.4877 c 1.3844,-0.6450 1.9193,-0.9754 2.7058 -1.5417h 0.2989 v 7.9130 c 0.0000,0.5663 0.0787,0.7237 0.5978 0.7237h 0.8180 c 0.0472,-0.0000 0.1259,0.0315 0.1259 0.1259v 0.3461 l -2.1552,-0.0315 l -2.1867,0.0315 v -0.3461 c 0.0157,-0.0472 0.0315,-0.1259 0.1259 -0.1259h 0.9439 c 0.5978,-0.0000 0.5978,-0.2674 0.5978 -0.7237v -5.4117 c 0.0000,-0.5349 0.0000,-0.9124 -0.3461 -0.9124ZM 195.1153,94.6539 ZM 196.7514,93.1594 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 198.5606,94.6539 ZM 203.4216,91.9953 c 0.0000,-1.6204 -0.8810,-2.4227 -1.8563 -2.4227c -0.7237,-0.0000 -1.2743,0.1101 -1.8878 0.3618l 0.5034,-4.2947 c 0.5191,0.0472 1.0540,0.0629 1.6046 0.0629c 0.7866,-0.0000 1.6046,-0.0472 2.4541 -0.1416l 0.0944,0.0472 l -0.2360,1.0226 c -0.6135,0.0629 -1.1169,0.0787 -1.5574 0.0787c -0.7079,-0.0000 -1.2428,-0.0629 -1.7934 -0.1259l -0.2989,2.4856 c 0.3304,-0.1259 0.8967,-0.2360 1.5102 -0.2360c 1.6676,-0.0000 2.5957,1.4473 2.5957 2.8946c 0.0000,1.7619 -1.2271,3.1149 -3.0047 3.1149c -0.8967,-0.0000 -2.2024,-0.5034 -2.2024 -1.1169c 0.0000,-0.2989 0.2517,-0.5034 0.5349 -0.5034c 0.3146,-0.0000 0.5191,0.2360 0.7079 0.4877c 0.2360,0.2832 0.4877,0.5978 0.9911 0.5978c 1.0068,-0.0000 1.8406,-0.9439 1.8406 -2.3125Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 198.4190,103.5148 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 188.2249,126.2745 ZM 191.1824,118.7705 c -0.2989,-0.0000 -0.9911,0.2832 -1.3372 0.4405l -0.1888,-0.4877 c 1.3844,-0.6450 1.9193,-0.9754 2.7058 -1.5417h 0.2989 v 7.9130 c 0.0000,0.5663 0.0787,0.7237 0.5978 0.7237h 0.8180 c 0.0472,-0.0000 0.1259,0.0315 0.1259 0.1259v 0.3461 l -2.1552,-0.0315 l -2.1867,0.0315 v -0.3461 c 0.0157,-0.0472 0.0315,-0.1259 0.1259 -0.1259h 0.9439 c 0.5978,-0.0000 0.5978,-0.2674 0.5978 -0.7237v -5.4117 c 0.0000,-0.5349 0.0000,-0.9124 -0.3461 -0.9124ZM 195.1153,126.2745 ZM 196.7514,124.7800 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 198.5606,126.2745 ZM 202.6193,120.6898 c 0.0000,-0.1101 0.0157,-0.2360 0.1573 -0.3146c 0.1730,-0.1259 0.4562,-0.2674 0.6922 -0.2674c 0.2045,-0.0000 0.2202,0.1730 0.2202 0.4877v 2.5328 h 1.2743 l -0.0944,0.7394 h -1.1799 v 1.3057 c 0.0000,0.4405 0.0629,0.6607 0.5191 0.6607h 0.4248 c 0.0944,-0.0000 0.1101,0.0787 0.1101 0.1101v 0.3461 c 0.0000,-0.0000 -1.0068,-0.0315 -1.6676 -0.0315c -0.5978,-0.0000 -1.5260,0.0315 -1.5260 0.0315v -0.3461 c 0.0000,-0.0315 0.0157,-0.1101 0.1101 -0.1101h 0.4248 c 0.4877,-0.0000 0.5349,-0.2045 0.5349 -0.6607v -1.3057 h -3.0834 c -0.0629,-0.0000 -0.0944,-0.0315 -0.1416 -0.0944l -0.1259,-0.1730 l -0.1888,-0.3304 c -0.0157,-0.0000 -0.0157,-0.0157 -0.0157 -0.0315c 0.0000,-0.0157 0.0157,-0.0315 0.0315 -0.0472c 1.0226,-1.1327 2.8317,-4.6408 3.3980 -5.9308c 0.0157,-0.0629 0.0472,-0.0787 0.1101 -0.0787c 0.0157,-0.0000 0.3618,0.1416 0.5506 0.1730c -0.7079,1.9035 -1.8721,3.9486 -3.0205 5.7735h 2.4856 v -2.4384 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 198.4190,135.1353 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 188.2249,157.8950 ZM 191.1824,150.3911 c -0.2989,-0.0000 -0.9911,0.2832 -1.3372 0.4405l -0.1888,-0.4877 c 1.3844,-0.6450 1.9193,-0.9754 2.7058 -1.5417h 0.2989 v 7.9130 c 0.0000,0.5663 0.0787,0.7237 0.5978 0.7237h 0.8180 c 0.0472,-0.0000 0.1259,0.0315 0.1259 0.1259v 0.3461 l -2.1552,-0.0315 l -2.1867,0.0315 v -0.3461 c 0.0157,-0.0472 0.0315,-0.1259 0.1259 -0.1259h 0.9439 c 0.5978,-0.0000 0.5978,-0.2674 0.5978 -0.7237v -5.4117 c 0.0000,-0.5349 0.0000,-0.9124 -0.3461 -0.9124ZM 195.1153,157.8950 ZM 196.7514,156.4005 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 198.5606,157.8950 ZM 201.9586,149.2898 c -0.3933,-0.0000 -1.5417,0.2202 -1.5417 1.1799c 0.0000,0.2832 -0.1101,0.7708 -0.5349 0.7708c -0.4090,-0.0000 -0.4405,-0.4562 -0.4405 -0.5034c 0.0000,-0.4877 0.6450,-1.9350 2.8317 -1.9350c 1.5260,-0.0000 1.9822,0.9596 1.9822 1.5889c 0.0000,0.3933 -0.1259,1.1799 -1.5417 2.0766c 0.8810,0.1416 2.0451,0.7866 2.0451 2.4227c 0.0000,2.0766 -1.5732,3.1935 -3.3508 3.1935c -0.8967,-0.0000 -2.1552,-0.3933 -2.1552 -0.9911c 0.0000,-0.2360 0.2360,-0.5034 0.5506 -0.5034c 0.2989,-0.0000 0.4405,0.1573 0.5821 0.3618c 0.1730,0.2674 0.4562,0.6450 1.2113 0.6450c 0.5191,-0.0000 1.9979,-0.5191 1.9979 -2.5013c 0.0000,-1.6833 -1.1799,-1.9507 -2.0294 -1.9507c -0.1416,-0.0000 -0.3146,0.0315 -0.4877 0.0629l -0.0629,-0.4719 c 1.2113,-0.2045 2.2182,-1.3844 2.2182 -2.1080c 0.0000,-0.8967 -0.6293,-1.3372 -1.2743 -1.3372Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 198.4190,166.7559 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 188.2249,189.5156 ZM 191.1824,182.0116 c -0.2989,-0.0000 -0.9911,0.2832 -1.3372 0.4405l -0.1888,-0.4877 c 1.3844,-0.6450 1.9193,-0.9754 2.7058 -1.5417h 0.2989 v 7.9130 c 0.0000,0.5663 0.0787,0.7237 0.5978 0.7237h 0.8180 c 0.0472,-0.0000 0.1259,0.0315 0.1259 0.1259v 0.3461 l -2.1552,-0.0315 l -2.1867,0.0315 v -0.3461 c 0.0157,-0.0472 0.0315,-0.1259 0.1259 -0.1259h 0.9439 c 0.5978,-0.0000 0.5978,-0.2674 0.5978 -0.7237v -5.4117 c 0.0000,-0.5349 0.0000,-0.9124 -0.3461 -0.9124ZM 195.1153,189.5156 ZM 196.7514,188.0211 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 198.5606,189.5156 ZM 199.4730,182.5465 c 0.0000,-0.8967 0.8652,-2.1238 2.5171 -2.1238c 1.2113,-0.0000 2.6272,0.4562 2.6272 2.2654c 0.0000,1.1956 -0.6135,1.7934 -1.4630 2.6114l -1.4945,1.4473 c -0.0787,0.0787 -1.1327,1.1169 -1.1327 1.8563h 2.6744 c 0.5349,-0.0000 0.8180,-0.2674 1.0383 -1.1327l 0.3933,0.0629 l -0.3146,1.9822 h -4.8611 c 0.0000,-0.8810 0.1416,-1.5574 1.6046 -3.0519l 1.1012,-1.0855 c 0.8810,-0.8967 1.2428,-1.6676 1.2428 -2.6272c 0.0000,-1.4316 -0.9754,-1.8406 -1.5102 -1.8406c -1.0855,-0.0000 -1.3844,0.5663 -1.3844 0.9439c 0.0000,0.1259 0.0315,0.2517 0.0629 0.3618c 0.0315,0.1101 0.0629,0.2202 0.0629 0.3461c 0.0000,0.4090 -0.3146,0.5663 -0.5663 0.5663c -0.3461,-0.0000 -0.5978,-0.2674 -0.5978 -0.5821Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 198.4190,198.3764 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 188.2249,221.1362 ZM 191.1824,213.6322 c -0.2989,-0.0000 -0.9911,0.2832 -1.3372 0.4405l -0.1888,-0.4877 c 1.3844,-0.6450 1.9193,-0.9754 2.7058 -1.5417h 0.2989 v 7.9130 c 0.0000,0.5663 0.0787,0.7237 0.5978 0.7237h 0.8180 c 0.0472,-0.0000 0.1259,0.0315 0.1259 0.1259v 0.3461 l -2.1552,-0.0315 l -2.1867,0.0315 v -0.3461 c 0.0157,-0.0472 0.0315,-0.1259 0.1259 -0.1259h 0.9439 c 0.5978,-0.0000 0.5978,-0.2674 0.5978 -0.7237v -5.4117 c 0.0000,-0.5349 0.0000,-0.9124 -0.3461 -0.9124ZM 195.1153,221.1362 ZM 196.7514,219.6416 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 198.5606,221.1362 ZM 201.5181,213.6322 c -0.2989,-0.0000 -0.9911,0.2832 -1.3372 0.4405l -0.1888,-0.4877 c 1.3844,-0.6450 1.9193,-0.9754 2.7058 -1.5417h 0.2989 v 7.9130 c 0.0000,0.5663 0.0787,0.7237 0.5978 0.7237h 0.8180 c 0.0472,-0.0000 0.1259,0.0315 0.1259 0.1259v 0.3461 l -2.1552,-0.0315 l -2.1867,0.0315 v -0.3461 c 0.0157,-0.0472 0.0315,-0.1259 0.1259 -0.1259h 0.9439 c 0.5978,-0.0000 0.5978,-0.2674 0.5978 -0.7237v -5.4117 c 0.0000,-0.5349 0.0000,-0.9124 -0.3461 -0.9124Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 198.4190,229.9970 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 188.2249,252.7567 ZM 191.1824,245.2527 c -0.2989,-0.0000 -0.9911,0.2832 -1.3372 0.4405l -0.1888,-0.4877 c 1.3844,-0.6450 1.9193,-0.9754 2.7058 -1.5417h 0.2989 v 7.9130 c 0.0000,0.5663 0.0787,0.7237 0.5978 0.7237h 0.8180 c 0.0472,-0.0000 0.1259,0.0315 0.1259 0.1259v 0.3461 l -2.1552,-0.0315 l -2.1867,0.0315 v -0.3461 c 0.0157,-0.0472 0.0315,-0.1259 0.1259 -0.1259h 0.9439 c 0.5978,-0.0000 0.5978,-0.2674 0.5978 -0.7237v -5.4117 c 0.0000,-0.5349 0.0000,-0.9124 -0.3461 -0.9124ZM 195.1153,252.7567 ZM 196.7514,251.2622 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 198.5606,252.7567 ZM 202.0058,244.2144 c -0.6765,-0.0000 -1.6676,0.6607 -1.6676 4.3262c 0.0000,1.2900 0.2360,3.8857 1.6204 3.8857c 0.2674,-0.0000 1.0226,-0.1730 1.3529 -1.4001c 0.2045,-0.7551 0.3146,-1.6990 0.3146 -3.0677c 0.0000,-1.9979 -0.5034,-3.1149 -0.9596 -3.5082c -0.1730,-0.1573 -0.4090,-0.2360 -0.6607 -0.2360ZM 202.0058,244.2144 ZM 201.9429,252.9455 c -1.6833,-0.0000 -2.8160,-2.1552 -2.8160 -4.5622c 0.0000,-2.9418 1.4001,-4.7195 2.8789 -4.7195c 0.6765,-0.0000 1.3529,0.4248 1.8091 1.0383c 0.6607,0.8810 1.0068,2.0608 1.0068 3.5396c 0.0000,3.4924 -1.7305,4.7038 -2.8789 4.7038Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 198.4190,261.6175 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 93.3632,94.6539 ZM 96.8084,86.1117 c -0.6765,-0.0000 -1.6676,0.6607 -1.6676 4.3262c 0.0000,1.2900 0.2360,3.8857 1.6204 3.8857c 0.2674,-0.0000 1.0226,-0.1730 1.3529 -1.4001c 0.2045,-0.7551 0.3146,-1.6990 0.3146 -3.0677c 0.0000,-1.9979 -0.5034,-3.1149 -0.9596 -3.5082c -0.1730,-0.1573 -0.4090,-0.2360 -0.6607 -0.2360ZM 96.8084,86.1117 ZM 96.7455,94.8427 c -1.6833,-0.0000 -2.8160,-2.1552 -2.8160 -4.5622c 0.0000,-2.9418 1.4001,-4.7195 2.8789 -4.7195c 0.6765,-0.0000 1.3529,0.4248 1.8091 1.0383c 0.6607,0.8810 1.0068,2.0608 1.0068 3.5396c 0.0000,3.4924 -1.7305,4.7038 -2.8789 4.7038ZM 100.2537,94.6539 ZM 101.8898,93.1594 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 103.6989,94.6539 ZM 108.5600,91.9953 c 0.0000,-1.6204 -0.8810,-2.4227 -1.8563 -2.4227c -0.7237,-0.0000 -1.2743,0.1101 -1.8878 0.3618l 0.5034,-4.2947 c 0.5191,0.0472 1.0540,0.0629 1.6046 0.0629c 0.7866,-0.0000 1.6046,-0.0472 2.4541 -0.1416l 0.0944,0.0472 l -0.2360,1.0226 c -0.6135,0.0629 -1.1169,0.0787 -1.5574 0.0787c -0.7079,-0.0000 -1.2428,-0.0629 -1.7934 -0.1259l -0.2989,2.4856 c 0.3304,-0.1259 0.8967,-0.2360 1.5102 -0.2360c 1.6676,-0.0000 2.5957,1.4473 2.5957 2.8946c 0.0000,1.7619 -1.2271,3.1149 -3.0047 3.1149c -0.8967,-0.0000 -2.2024,-0.5034 -2.2024 -1.1169c 0.0000,-0.2989 0.2517,-0.5034 0.5349 -0.5034c 0.3146,-0.0000 0.5191,0.2360 0.7079 0.4877c 0.2360,0.2832 0.4877,0.5978 0.9911 0.5978c 1.0068,-0.0000 1.8406,-0.9439 1.8406 -2.3125Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 103.5573,103.5148 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 93.3632,126.2745 ZM 96.8084,117.7322 c -0.6765,-0.0000 -1.6676,0.6607 -1.6676 4.3262c 0.0000,1.2900 0.2360,3.8857 1.6204 3.8857c 0.2674,-0.0000 1.0226,-0.1730 1.3529 -1.4001c 0.2045,-0.7551 0.3146,-1.6990 0.3146 -3.0677c 0.0000,-1.9979 -0.5034,-3.1149 -0.9596 -3.5082c -0.1730,-0.1573 -0.4090,-0.2360 -0.6607 -0.2360ZM 96.8084,117.7322 ZM 96.7455,126.4633 c -1.6833,-0.0000 -2.8160,-2.1552 -2.8160 -4.5622c 0.0000,-2.9418 1.4001,-4.7195 2.8789 -4.7195c 0.6765,-0.0000 1.3529,0.4248 1.8091 1.0383c 0.6607,0.8810 1.0068,2.0608 1.0068 3.5396c 0.0000,3.4924 -1.7305,4.7038 -2.8789 4.7038ZM 100.2537,126.2745 ZM 101.8898,124.7800 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 103.6989,126.2745 ZM 107.7577,120.6898 c 0.0000,-0.1101 0.0157,-0.2360 0.1573 -0.3146c 0.1730,-0.1259 0.4562,-0.2674 0.6922 -0.2674c 0.2045,-0.0000 0.2202,0.1730 0.2202 0.4877v 2.5328 h 1.2743 l -0.0944,0.7394 h -1.1799 v 1.3057 c 0.0000,0.4405 0.0629,0.6607 0.5191 0.6607h 0.4248 c 0.0944,-0.0000 0.1101,0.0787 0.1101 0.1101v 0.3461 c 0.0000,-0.0000 -1.0068,-0.0315 -1.6676 -0.0315c -0.5978,-0.0000 -1.5260,0.0315 -1.5260 0.0315v -0.3461 c 0.0000,-0.0315 0.0157,-0.1101 0.1101 -0.1101h 0.4248 c 0.4877,-0.0000 0.5349,-0.2045 0.5349 -0.6607v -1.3057 h -3.0834 c -0.0629,-0.0000 -0.0944,-0.0315 -0.1416 -0.0944l -0.1259,-0.1730 l -0.1888,-0.3304 c -0.0157,-0.0000 -0.0157,-0.0157 -0.0157 -0.0315c 0.0000,-0.0157 0.0157,-0.0315 0.0315 -0.0472c 1.0226,-1.1327 2.8317,-4.6408 3.3980 -5.9308c 0.0157,-0.0629 0.0472,-0.0787 0.1101 -0.0787c 0.0157,-0.0000 0.3618,0.1416 0.5506 0.1730c -0.7079,1.9035 -1.8721,3.9486 -3.0205 5.7735h 2.4856 v -2.4384 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 103.5573,135.1353 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 93.3632,157.8950 ZM 96.8084,149.3528 c -0.6765,-0.0000 -1.6676,0.6607 -1.6676 4.3262c 0.0000,1.2900 0.2360,3.8857 1.6204 3.8857c 0.2674,-0.0000 1.0226,-0.1730 1.3529 -1.4001c 0.2045,-0.7551 0.3146,-1.6990 0.3146 -3.0677c 0.0000,-1.9979 -0.5034,-3.1149 -0.9596 -3.5082c -0.1730,-0.1573 -0.4090,-0.2360 -0.6607 -0.2360ZM 96.8084,149.3528 ZM 96.7455,158.0838 c -1.6833,-0.0000 -2.8160,-2.1552 -2.8160 -4.5622c 0.0000,-2.9418 1.4001,-4.7195 2.8789 -4.7195c 0.6765,-0.0000 1.3529,0.4248 1.8091 1.0383c 0.6607,0.8810 1.0068,2.0608 1.0068 3.5396c 0.0000,3.4924 -1.7305,4.7038 -2.8789 4.7038ZM 100.2537,157.8950 ZM 101.8898,156.4005 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 103.6989,157.8950 ZM 107.0969,149.2898 c -0.3933,-0.0000 -1.5417,0.2202 -1.5417 1.1799c 0.0000,0.2832 -0.1101,0.7708 -0.5349 0.7708c -0.4090,-0.0000 -0.4405,-0.4562 -0.4405 -0.5034c 0.0000,-0.4877 0.6450,-1.9350 2.8317 -1.9350c 1.5260,-0.0000 1.9822,0.9596 1.9822 1.5889c 0.0000,0.3933 -0.1259,1.1799 -1.5417 2.0766c 0.8810,0.1416 2.0451,0.7866 2.0451 2.4227c 0.0000,2.0766 -1.5732,3.1935 -3.3508 3.1935c -0.8967,-0.0000 -2.1552,-0.3933 -2.1552 -0.9911c 0.0000,-0.2360 0.2360,-0.5034 0.5506 -0.5034c 0.2989,-0.0000 0.4405,0.1573 0.5821 0.3618c 0.1730,0.2674 0.4562,0.6450 1.2113 0.6450c 0.5191,-0.0000 1.9979,-0.5191 1.9979 -2.5013c 0.0000,-1.6833 -1.1799,-1.9507 -2.0294 -1.9507c -0.1416,-0.0000 -0.3146,0.0315 -0.4877 0.0629l -0.0629,-0.4719 c 1.2113,-0.2045 2.2182,-1.3844 2.2182 -2.1080c 0.0000,-0.8967 -0.6293,-1.3372 -1.2743 -1.3372Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 103.5573,166.7559 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 93.3632,189.5156 ZM 96.8084,180.9733 c -0.6765,-0.0000 -1.6676,0.6607 -1.6676 4.3262c 0.0000,1.2900 0.2360,3.8857 1.6204 3.8857c 0.2674,-0.0000 1.0226,-0.1730 1.3529 -1.4001c 0.2045,-0.7551 0.3146,-1.6990 0.3146 -3.0677c 0.0000,-1.9979 -0.5034,-3.1149 -0.9596 -3.5082c -0.1730,-0.1573 -0.4090,-0.2360 -0.6607 -0.2360ZM 96.8084,180.9733 ZM 96.7455,189.7044 c -1.6833,-0.0000 -2.8160,-2.1552 -2.8160 -4.5622c 0.0000,-2.9418 1.4001,-4.7195 2.8789 -4.7195c 0.6765,-0.0000 1.3529,0.4248 1.8091 1.0383c 0.6607,0.8810 1.0068,2.0608 1.0068 3.5396c 0.0000,3.4924 -1.7305,4.7038 -2.8789 4.7038ZM 100.2537,189.5156 ZM 101.8898,188.0211 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 103.6989,189.5156 ZM 104.6113,182.5465 c 0.0000,-0.8967 0.8652,-2.1238 2.5171 -2.1238c 1.2113,-0.0000 2.6272,0.4562 2.6272 2.2654c 0.0000,1.1956 -0.6135,1.7934 -1.4630 2.6114l -1.4945,1.4473 c -0.0787,0.0787 -1.1327,1.1169 -1.1327 1.8563h 2.6744 c 0.5349,-0.0000 0.8180,-0.2674 1.0383 -1.1327l 0.3933,0.0629 l -0.3146,1.9822 h -4.8611 c 0.0000,-0.8810 0.1416,-1.5574 1.6046 -3.0519l 1.1012,-1.0855 c 0.8810,-0.8967 1.2428,-1.6676 1.2428 -2.6272c 0.0000,-1.4316 -0.9754,-1.8406 -1.5102 -1.8406c -1.0855,-0.0000 -1.3844,0.5663 -1.3844 0.9439c 0.0000,0.1259 0.0315,0.2517 0.0629 0.3618c 0.0315,0.1101 0.0629,0.2202 0.0629 0.3461c 0.0000,0.4090 -0.3146,0.5663 -0.5663 0.5663c -0.3461,-0.0000 -0.5978,-0.2674 -0.5978 -0.5821Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 103.5573,198.3764 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 93.3632,221.1362 ZM 96.8084,212.5939 c -0.6765,-0.0000 -1.6676,0.6607 -1.6676 4.3262c 0.0000,1.2900 0.2360,3.8857 1.6204 3.8857c 0.2674,-0.0000 1.0226,-0.1730 1.3529 -1.4001c 0.2045,-0.7551 0.3146,-1.6990 0.3146 -3.0677c 0.0000,-1.9979 -0.5034,-3.1149 -0.9596 -3.5082c -0.1730,-0.1573 -0.4090,-0.2360 -0.6607 -0.2360ZM 96.8084,212.5939 ZM 96.7455,221.3249 c -1.6833,-0.0000 -2.8160,-2.1552 -2.8160 -4.5622c 0.0000,-2.9418 1.4001,-4.7195 2.8789 -4.7195c 0.6765,-0.0000 1.3529,0.4248 1.8091 1.0383c 0.6607,0.8810 1.0068,2.0608 1.0068 3.5396c 0.0000,3.4924 -1.7305,4.7038 -2.8789 4.7038ZM 100.2537,221.1362 ZM 101.8898,219.6416 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 103.6989,221.1362 ZM 106.6564,213.6322 c -0.2989,-0.0000 -0.9911,0.2832 -1.3372 0.4405l -0.1888,-0.4877 c 1.3844,-0.6450 1.9193,-0.9754 2.7058 -1.5417h 0.2989 v 7.9130 c 0.0000,0.5663 0.0787,0.7237 0.5978 0.7237h 0.8180 c 0.0472,-0.0000 0.1259,0.0315 0.1259 0.1259v 0.3461 l -2.1552,-0.0315 l -2.1867,0.0315 v -0.3461 c 0.0157,-0.0472 0.0315,-0.1259 0.1259 -0.1259h 0.9439 c 0.5978,-0.0000 0.5978,-0.2674 0.5978 -0.7237v -5.4117 c 0.0000,-0.5349 0.0000,-0.9124 -0.3461 -0.9124Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 103.5573,229.9970 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 93.3632,252.7567 ZM 96.8084,244.2144 c -0.6765,-0.0000 -1.6676,0.6607 -1.6676 4.3262c 0.0000,1.2900 0.2360,3.8857 1.6204 3.8857c 0.2674,-0.0000 1.0226,-0.1730 1.3529 -1.4001c 0.2045,-0.7551 0.3146,-1.6990 0.3146 -3.0677c 0.0000,-1.9979 -0.5034,-3.1149 -0.9596 -3.5082c -0.1730,-0.1573 -0.4090,-0.2360 -0.6607 -0.2360ZM 96.8084,244.2144 ZM 96.7455,252.9455 c -1.6833,-0.0000 -2.8160,-2.1552 -2.8160 -4.5622c 0.0000,-2.9418 1.4001,-4.7195 2.8789 -4.7195c 0.6765,-0.0000 1.3529,0.4248 1.8091 1.0383c 0.6607,0.8810 1.0068,2.0608 1.0068 3.5396c 0.0000,3.4924 -1.7305,4.7038 -2.8789 4.7038ZM 100.2537,252.7567 ZM 101.8898,251.2622 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 103.6989,252.7567 ZM 107.1441,244.2144 c -0.6765,-0.0000 -1.6676,0.6607 -1.6676 4.3262c 0.0000,1.2900 0.2360,3.8857 1.6204 3.8857c 0.2674,-0.0000 1.0226,-0.1730 1.3529 -1.4001c 0.2045,-0.7551 0.3146,-1.6990 0.3146 -3.0677c 0.0000,-1.9979 -0.5034,-3.1149 -0.9596 -3.5082c -0.1730,-0.1573 -0.4090,-0.2360 -0.6607 -0.2360ZM 107.1441,244.2144 ZM 107.0812,252.9455 c -1.6833,-0.0000 -2.8160,-2.1552 -2.8160 -4.5622c 0.0000,-2.9418 1.4001,-4.7195 2.8789 -4.7195c 0.6765,-0.0000 1.3529,0.4248 1.8091 1.0383c 0.6607,0.8810 1.0068,2.0608 1.0068 3.5396c 0.0000,3.4924 -1.7305,4.7038 -2.8789 4.7038Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="1.0" stroke="rgb(128,128,128)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 103.5573,261.6175 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(31,119,180)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 293.6398,309.6462 ZM 300.5224,297.5695 c 2.2391,-0.0000 2.8999,0.8259 4.0011 0.8259c 0.1285,1.3215 0.2386,2.0556 0.4038 2.8264l -0.5506,0.1101 c -0.4772,-1.5784 -1.4499,-3.0834 -4.1112 -3.0834c -2.4777,-0.0000 -4.4416,2.1841 -4.4416 5.3959c 0.0000,2.4227 1.7619,5.5611 5.0289 5.5611c 0.9911,-0.0000 2.0740,-0.3304 2.6980 -0.9177v -2.8081 c 0.0000,-0.5690 -0.2753,-0.8076 -1.0094 -0.8076h -0.4772 c -0.0734,-0.0000 -0.1468,-0.0551 -0.1468 -0.1468v -0.4772 l 0.0367,-0.0367 c 0.0000,-0.0000 1.5968,0.0367 2.3125 0.0367c 0.6424,-0.0000 1.7069,-0.0367 1.7069 -0.0367l 0.0367,0.0367 v 0.4772 c 0.0000,0.0918 -0.0551,0.1468 -0.1468 0.1468h -0.0184 c -0.6424,-0.0000 -0.8076,0.2937 -0.8076 0.8076v 2.1290 c 0.0000,0.2019 0.0918,0.3487 0.2937 0.5139c -1.2480,1.0645 -2.7347,1.7436 -4.9004 1.7436c -3.6891,-0.0000 -6.2035,-2.6796 -6.2035 -5.8548c 0.0000,-4.0378 3.1385,-6.4421 6.2953 -6.4421ZM 306.3589,309.6462 ZM 308.1024,308.3247 v -9.1951 c 0.0000,-1.0462 -0.1835,-1.3398 -0.5506 -1.3398l -0.5873,0.0734 c -0.0551,-0.0000 -0.1101,-0.0367 -0.1101 -0.0918l -0.0367,-0.4588 c 0.2937,-0.0000 0.9727,-0.1101 1.2847 -0.1652c 0.3304,-0.0734 0.5873,-0.1468 0.9544 -0.3120h 0.4038 v 11.4893 c 0.0000,0.5323 0.2019,0.8076 0.7892 0.8076h 0.4405 c 0.0734,-0.0000 0.1468,0.0551 0.1468 0.1468v 0.3487 l -0.0367,0.0367 c 0.0000,-0.0000 -1.3398,-0.0367 -2.0556 -0.0367c -0.6424,-0.0000 -1.9822,0.0367 -1.9822 0.0367l -0.0184,-0.0367 v -0.3487 c 0.0000,-0.0918 0.0367,-0.1468 0.1285 -0.1468h 0.4405 c 0.6057,-0.0000 0.7892,-0.2753 0.7892 -0.8076ZM 311.1308,309.6462 ZM 314.9483,302.1212 c 0.0000,0.0918 -0.1101,0.1468 -0.2019 0.1468c -0.5506,-0.0000 -0.7892,0.1101 -0.7892 0.4038c 0.0000,0.1101 0.0367,0.2569 0.1101 0.4221l 2.0189,4.7352 l 2.0372,-4.6618 c 0.0918,-0.1652 0.1285,-0.3120 0.1285 -0.4221c 0.0000,-0.3854 -0.3671,-0.4772 -0.7708 -0.4772h -0.0734 c -0.0918,-0.0000 -0.1835,-0.0734 -0.1835 -0.1285v -0.3487 l 0.0367,-0.0551 c 0.0000,-0.0000 1.0829,0.0367 1.7252 0.0367c 0.5139,-0.0000 1.2664,-0.0367 1.2664 -0.0367l 0.0551,0.0367 v 0.3487 c 0.0000,0.0918 -0.0734,0.1468 -0.2019 0.1468c -0.6974,-0.0000 -1.0462,0.7158 -1.3031 1.2480c -0.9727,2.0556 -1.7803,3.9460 -3.2486 7.4883c -0.5506,1.3215 -1.2113,2.8632 -2.5144 2.8632c -0.3487,-0.0000 -1.0645,-0.2019 -1.0645 -0.8626c 0.0000,-0.5506 0.4038,-0.7158 0.6974 -0.7158c 0.2753,-0.0000 0.4588,0.1101 0.5690 0.2569c 0.1835,0.1835 0.3120,0.3120 0.4955 0.3120c 0.2753,-0.0000 0.9177,-1.5784 1.3765 -2.6980c 0.1101,-0.2202 0.1468,-0.4038 0.1468 -0.5690c 0.0000,-0.1835 -0.1652,-0.6791 -0.3120 -1.0462l -2.3125,-5.3776 c -0.2937,-0.6974 -0.4955,-0.8993 -1.1196 -0.8993c -0.1101,-0.0000 -0.1835,-0.0551 -0.1835 -0.1285v -0.3671 l 0.0367,-0.0367 c 0.0000,-0.0000 0.8076,0.0367 1.3582 0.0367c 0.8626,-0.0000 2.1841,-0.0367 2.1841 -0.0367l 0.0367,0.0551 v 0.3304 ZM 320.4727,309.6462 ZM 323.2074,303.8832 v 4.5700 c 0.6424,0.7525 1.2480,0.7892 1.5417 0.7892c 1.9638,-0.0000 2.4043,-1.8354 2.4043 -3.4138c 0.0000,-2.2208 -0.8993,-3.4505 -2.0189 -3.4505c -0.6240,-0.0000 -1.5233,0.5323 -1.9271 1.5050ZM 323.2074,303.8832 ZM 321.8493,312.5460 v -9.0850 c 0.0000,-0.6974 -0.1652,-0.8259 -0.4221 -0.8259c -0.2386,-0.0000 -0.4588,0.0184 -0.7708 0.0918l -0.0918,-0.5139 c 1.1746,-0.2019 1.3949,-0.2753 1.9088 -0.5323c 0.2019,-0.0918 0.3304,-0.1468 0.4588 -0.1468h 0.2753 l -0.0551,1.4683 h 0.0551 c 0.8443,-1.2847 1.8354,-1.4683 2.4227 -1.4683c 1.7803,-0.0000 2.9549,1.8537 2.9549 3.7992c 0.0000,1.4866 -0.4588,2.6246 -1.2847 3.4688c -0.7158,0.7158 -1.4683,1.0645 -2.4410 1.0645c -0.6607,-0.0000 -1.1746,-0.1468 -1.6518 -0.4038v 3.0834 c 0.0000,0.5323 0.2019,0.8076 0.7892 0.8076h 0.3487 c 0.0918,-0.0000 0.1652,0.0551 0.1652 0.1468v 0.3487 l -0.0367,0.0367 c 0.0000,-0.0000 -1.2664,-0.0367 -1.9822 -0.0367c -0.6424,-0.0000 -1.8904,0.0367 -1.8904 0.0367l -0.0367,-0.0367 v -0.3487 c 0.0000,-0.0918 0.0551,-0.1468 0.1468 -0.1468h 0.3487 c 0.6057,-0.0000 0.7892,-0.2753 0.7892 -0.8076ZM 329.2641,309.6462 ZM 332.2557,296.8354 v 6.2219 c 1.2297,-1.2297 2.3125,-1.5233 3.0283 -1.5233c 1.3215,-0.0000 1.9822,1.0094 1.9822 2.8999v 3.8910 c 0.0000,0.5323 0.1835,0.8076 0.7892 0.8076h 0.3487 c 0.0734,-0.0000 0.1468,0.0551 0.1468 0.1468v 0.3487 l -0.0367,0.0367 c 0.0000,-0.0000 -1.2480,-0.0367 -1.9822 -0.0367c -0.6424,-0.0000 -1.8904,0.0367 -1.8904 0.0367l -0.0367,-0.0367 v -0.3487 c 0.0000,-0.0918 0.0551,-0.1468 0.1468 -0.1468h 0.3487 c 0.6240,-0.0000 0.7892,-0.2753 0.7892 -0.8076v -4.0928 c 0.0000,-1.4866 -0.4038,-1.8354 -1.4316 -1.8354c -0.5323,-0.0000 -1.3215,0.4772 -2.2024 1.3398v 4.5884 c 0.0000,0.5323 0.1835,0.8076 0.7892 0.8076h 0.3487 c 0.0734,-0.0000 0.1468,0.0551 0.1468 0.1468v 0.3487 l -0.0367,0.0367 c 0.0000,-0.0000 -1.2480,-0.0367 -1.9638 -0.0367c -0.6607,-0.0000 -1.8904,0.0367 -1.8904 0.0367l -0.0367,-0.0367 v -0.3487 c 0.0000,-0.0918 0.0367,-0.1468 0.1285 -0.1468h 0.3487 c 0.6240,-0.0000 0.7892,-0.2753 0.7892 -0.8076v -9.1951 c 0.0000,-1.0462 -0.1652,-1.3398 -0.5323 -1.3398l -0.6057,0.0734 c -0.0551,-0.0000 -0.0918,-0.0367 -0.0918 -0.0918l -0.0367,-0.4588 c 0.2937,-0.0000 0.9544,-0.1101 1.2664 -0.1652c 0.3304,-0.0734 0.6057,-0.1468 0.9727 -0.3120h 0.4038 ZM 338.7712,309.6462 ZM 339.5604,307.0767 l 0.4955,-0.0184 c 0.0551,0.4588 0.2569,1.3398 0.6607 1.7619c 0.1835,0.2019 0.6791,0.5323 1.3582 0.5323c 0.6424,-0.0000 1.5968,-0.5139 1.5968 -1.4132c 0.0000,-0.7892 -0.4405,-1.3215 -1.8904 -1.9455c -1.3398,-0.5873 -2.0372,-0.9727 -2.0372 -2.3493c 0.0000,-1.2297 1.0829,-2.1107 2.5328 -2.1107c 0.9177,-0.0000 1.5968,0.1652 2.1657 0.4588c 0.1101,0.5873 0.1652,1.2113 0.2019 1.8721l -0.4955,0.0184 c -0.3854,-1.5050 -1.4866,-1.7986 -1.8721 -1.7986c -0.6974,-0.0000 -1.4132,0.2753 -1.4132 1.2847c 0.0000,0.7341 0.3487,1.1012 1.3582 1.4683c 1.4866,0.5506 2.6796,1.2113 2.6796 2.6796c 0.0000,1.8170 -1.9271,2.3493 -2.7897 2.3493c -0.6424,-0.0000 -1.1746,-0.0734 -1.6518 -0.2019c -0.1285,-0.0184 -0.2202,-0.0367 -0.3487 -0.0367c -0.0918,-0.0000 -0.2386,0.0184 -0.4221 0.0551c 0.0000,-0.7708 -0.0551,-1.7069 -0.1285 -2.6062ZM 350.1688,309.6462 ZM 353.8762,302.1212 c 0.0000,0.0918 -0.0734,0.1468 -0.1652 0.1468h -0.2753 c -0.4038,-0.0000 -0.5323,0.1101 -0.5323 0.2937c 0.0000,0.1285 0.0734,0.2937 0.1652 0.5506l 1.9271,4.8453 l 1.5968,-3.9827 l -0.3304,-0.8259 c -0.2386,-0.6240 -0.6240,-0.8810 -1.1746 -0.8810c -0.0918,-0.0000 -0.1835,-0.0367 -0.1835 -0.1285v -0.3671 l 0.0367,-0.0367 c 0.0000,-0.0000 1.0278,0.0367 1.6702 0.0367l 1.8354,-0.0367 l 0.0551,0.0367 v 0.3487 c 0.0000,0.0918 -0.0918,0.1468 -0.1835 0.1468h -0.3304 c -0.3671,-0.0000 -0.5323,0.0734 -0.5323 0.2569c 0.0000,0.1468 0.0734,0.3304 0.1835 0.5873l 1.9088,4.8453 l 1.9088,-4.7536 c 0.0551,-0.1101 0.0918,-0.2569 0.0918 -0.4038c 0.0000,-0.3120 -0.2019,-0.5323 -0.8259 -0.5323h -0.2753 c -0.0918,-0.0000 -0.1652,-0.0734 -0.1652 -0.1285v -0.3671 l 0.0551,-0.0367 c 0.0000,-0.0000 1.2113,0.0367 1.8904 0.0367c 0.6240,-0.0000 1.3582,-0.0367 1.3582 -0.0367l 0.0184,0.0367 v 0.3487 c 0.0000,0.1101 -0.1101,0.1468 -0.2202 0.1468c -0.4588,-0.0000 -0.9360,0.2019 -1.2664 1.0094l -2.4961,6.2035 c -0.1101,0.2753 -0.2569,0.3854 -0.4221 0.3854c -0.1835,-0.0000 -0.3304,-0.1101 -0.4405 -0.3671l -1.8354,-4.5884 l -1.8354,4.5517 c -0.1285,0.2937 -0.2753,0.4038 -0.4405 0.4038c -0.1835,-0.0000 -0.3304,-0.1101 -0.4405 -0.3671l -2.5144,-6.3503 c -0.2753,-0.7158 -0.6057,-0.8810 -1.1563 -0.8810c -0.0918,-0.0000 -0.2202,-0.0367 -0.2202 -0.1285v -0.3671 l 0.0367,-0.0367 c 0.0000,-0.0000 0.8626,0.0367 1.6702 0.0367c 0.8443,-0.0000 1.8170,-0.0367 1.8170 -0.0367l 0.0367,0.0551 v 0.3304 ZM 363.8238,309.6462 ZM 365.2554,299.1663 c 0.0000,-0.4772 0.3854,-0.8810 0.8626 -0.8810c 0.4955,-0.0000 0.8810,0.4038 0.8810 0.8810c 0.0000,0.4955 -0.3854,0.8810 -0.8810 0.8810c -0.4772,-0.0000 -0.8626,-0.3854 -0.8626 -0.8810ZM 365.2554,299.1663 ZM 366.9990,308.3247 c 0.0000,0.5323 0.2019,0.8076 0.7892 0.8076h 0.3487 c 0.0918,-0.0000 0.1652,0.0551 0.1652 0.1468v 0.3487 l -0.0367,0.0367 c 0.0000,-0.0000 -1.2664,-0.0367 -1.9822 -0.0367c -0.6424,-0.0000 -1.8904,0.0367 -1.8904 0.0367l -0.0367,-0.0367 v -0.3487 c 0.0000,-0.0918 0.0551,-0.1468 0.1468 -0.1468h 0.3487 c 0.6057,-0.0000 0.7892,-0.2753 0.7892 -0.8076v -4.5700 c 0.0000,-0.9727 -0.1652,-1.1196 -0.4221 -1.1196c -0.2386,-0.0000 -0.4588,0.0184 -0.7708 0.0918l -0.0918,-0.5139 c 1.1746,-0.2019 1.3765,-0.2753 1.9088 -0.5323c 0.2019,-0.0734 0.3304,-0.1468 0.4588 -0.1468h 0.2753 v 6.7908 ZM 368.6692,309.6462 ZM 371.6792,302.4699 v 4.6985 c 0.0000,1.1379 0.1101,1.6885 0.6057 1.6885c 0.4772,-0.0000 0.8443,-0.1468 1.3215 -0.5139l 0.3304,0.3120 c -0.7158,0.8076 -1.4499,1.2113 -2.2942 1.2113c -0.8443,-0.0000 -1.3398,-0.5139 -1.3398 -1.8170v -5.5795 h -1.1930 c -0.0551,-0.0000 -0.0734,-0.0184 -0.0734 -0.0734v -0.5690 c 0.0000,-0.0551 0.0184,-0.0734 0.0551 -0.0734c 1.2297,-0.0000 1.5233,-0.7158 1.5233 -2.1107v -0.3487 l 1.0645,-0.3671 v 2.8264 h 2.0189 c 0.0918,-0.0000 0.1468,0.0367 0.1468 0.1101v 0.3671 c 0.0000,0.1652 -0.2569,0.2386 -0.4405 0.2386h -1.7252 ZM 374.2119,309.6462 ZM 377.2036,296.8354 v 6.2219 c 1.2297,-1.2297 2.3125,-1.5233 3.0283 -1.5233c 1.3215,-0.0000 1.9822,1.0094 1.9822 2.8999v 3.8910 c 0.0000,0.5323 0.1835,0.8076 0.7892 0.8076h 0.3487 c 0.0734,-0.0000 0.1468,0.0551 0.1468 0.1468v 0.3487 l -0.0367,0.0367 c 0.0000,-0.0000 -1.2480,-0.0367 -1.9822 -0.0367c -0.6424,-0.0000 -1.8904,0.0367 -1.8904 0.0367l -0.0367,-0.0367 v -0.3487 c 0.0000,-0.0918 0.0551,-0.1468 0.1468 -0.1468h 0.3487 c 0.6240,-0.0000 0.7892,-0.2753 0.7892 -0.8076v -4.0928 c 0.0000,-1.4866 -0.4038,-1.8354 -1.4316 -1.8354c -0.5323,-0.0000 -1.3215,0.4772 -2.2024 1.3398v 4.5884 c 0.0000,0.5323 0.1835,0.8076 0.7892 0.8076h 0.3487 c 0.0734,-0.0000 0.1468,0.0551 0.1468 0.1468v 0.3487 l -0.0367,0.0367 c 0.0000,-0.0000 -1.2480,-0.0367 -1.9638 -0.0367c -0.6607,-0.0000 -1.8904,0.0367 -1.8904 0.0367l -0.0367,-0.0367 v -0.3487 c 0.0000,-0.0918 0.0367,-0.1468 0.1285 -0.1468h 0.3487 c 0.6240,-0.0000 0.7892,-0.2753 0.7892 -0.8076v -9.1951 c 0.0000,-1.0462 -0.1652,-1.3398 -0.5323 -1.3398l -0.6057,0.0734 c -0.0551,-0.0000 -0.0918,-0.0367 -0.0918 -0.0918l -0.0367,-0.4588 c 0.2937,-0.0000 0.9544,-0.1101 1.2664 -0.1652c 0.3304,-0.0734 0.6057,-0.1468 0.9727 -0.3120h 0.4038 ZM 388.3075,309.6462 ZM 391.3175,302.4699 v 4.6985 c 0.0000,1.1379 0.1101,1.6885 0.6057 1.6885c 0.4772,-0.0000 0.8443,-0.1468 1.3215 -0.5139l 0.3304,0.3120 c -0.7158,0.8076 -1.4499,1.2113 -2.2942 1.2113c -0.8443,-0.0000 -1.3398,-0.5139 -1.3398 -1.8170v -5.5795 h -1.1930 c -0.0551,-0.0000 -0.0734,-0.0184 -0.0734 -0.0734v -0.5690 c 0.0000,-0.0551 0.0184,-0.0734 0.0551 -0.0734c 1.2297,-0.0000 1.5233,-0.7158 1.5233 -2.1107v -0.3487 l 1.0645,-0.3671 v 2.8264 h 2.0189 c 0.0918,-0.0000 0.1468,0.0367 0.1468 0.1101v 0.3671 c 0.0000,0.1652 -0.2569,0.2386 -0.4405 0.2386h -1.7252 ZM 393.8502,309.6462 ZM 395.9426,304.5622 h 3.3771 c 0.1835,-0.0000 0.2569,-0.0918 0.2569 -0.2569c 0.0000,-1.7069 -0.8626,-2.1474 -1.5233 -2.1474c -0.4221,-0.0000 -1.7986,0.1652 -2.1107 2.4043ZM 395.9426,304.5622 ZM 400.7879,307.9393 l 0.3671,0.2937 c -0.6974,0.9544 -1.7803,1.6335 -3.1018 1.6335c -2.5144,-0.0000 -3.5789,-1.8721 -3.5789 -3.8726c 0.0000,-2.7897 1.8354,-4.4599 3.5789 -4.4599c 2.4227,-0.0000 2.9916,1.8904 2.9916 3.4321c 0.0000,0.2019 -0.1285,0.3120 -0.3304 0.3120h -4.8270 c -0.0184,0.1101 -0.0184,0.2202 -0.0184 0.3671c 0.0000,1.8721 1.3031,3.3220 2.6246 3.3220c 1.0094,-0.0000 1.6518,-0.3304 2.2942 -1.0278ZM 401.7056,309.6462 ZM 405.3212,302.2680 c -0.3671,-0.0000 -0.4405,0.0918 -0.4405 0.2202c 0.0000,0.0918 0.0734,0.2569 0.2753 0.5873l 1.1196,1.6518 c 0.0551,0.1101 0.1101,0.1652 0.1835 0.1652c 0.0551,-0.0000 0.0918,-0.0367 0.1652 -0.1285l 1.1930,-1.6702 c 0.2019,-0.2569 0.3120,-0.4588 0.3120 -0.6057c 0.0000,-0.1468 -0.1285,-0.2202 -0.3854 -0.2202h -0.2937 c -0.0551,-0.0000 -0.1101,-0.0367 -0.1101 -0.1285v -0.3487 l 0.0551,-0.0551 c 0.0000,-0.0000 0.8626,0.0367 1.4316 0.0367c 0.5873,-0.0000 1.4866,-0.0367 1.4866 -0.0367l 0.0184,0.0367 v 0.3487 c 0.0000,0.1285 -0.1101,0.1468 -0.2202 0.1468c -0.6791,-0.0000 -0.9544,0.2202 -1.6335 1.0829l -1.5417,1.9638 c -0.0367,0.0551 -0.0551,0.0918 -0.0551 0.1285c 0.0000,0.0367 0.0184,0.0918 0.0551 0.1468l 1.6518,2.3309 c 0.8443,1.1930 1.0829,1.2113 1.6702 1.2113c 0.1835,-0.0000 0.2569,0.0367 0.2569 0.1468v 0.3487 l -0.0184,0.0367 c 0.0000,-0.0000 -0.9911,-0.0367 -1.6151 -0.0367c -0.7525,-0.0000 -1.9088,0.0367 -1.9088 0.0367l -0.0367,-0.0367 v -0.3487 c 0.0000,-0.0918 0.0367,-0.1468 0.1285 -0.1468h 0.2202 c 0.2937,-0.0000 0.4221,-0.0551 0.4221 -0.2019c 0.0000,-0.1652 -0.2019,-0.4405 -0.4955 -0.8259l -1.0645,-1.4683 c -0.0734,-0.0918 -0.1101,-0.1285 -0.1652 -0.1285c -0.0367,-0.0000 -0.0918,0.0551 -0.1652 0.1652l -1.1563,1.6702 c -0.2753,0.3671 -0.3304,0.4588 -0.3304 0.5873c 0.0000,0.1285 0.1101,0.2019 0.3854 0.2019h 0.2569 c 0.0918,-0.0000 0.1285,0.0551 0.1285 0.1468v 0.3487 l -0.0367,0.0367 c 0.0000,-0.0000 -0.9544,-0.0367 -1.5417 -0.0367c -0.5323,-0.0000 -1.3765,0.0367 -1.3765 0.0367l -0.0367,-0.0367 v -0.3120 c 0.0000,-0.1101 0.0734,-0.1835 0.2386 -0.1835c 0.4405,-0.0000 0.8626,-0.0918 1.6335 -1.0829l 1.5417,-1.9822 c 0.0184,-0.0367 0.0367,-0.0734 0.0367 -0.1285c 0.0000,-0.0551 -0.0184,-0.0918 -0.0551 -0.1468l -1.5968,-2.3309 c -0.5139,-0.7525 -0.8443,-1.1930 -1.4866 -1.1930c -0.1285,-0.0000 -0.2569,-0.0551 -0.2569 -0.1285v -0.3487 l 0.0367,-0.0551 l 1.4499,0.0367 l 2.0372,-0.0367 l 0.0551,0.0551 v 0.3304 c 0.0000,0.0918 -0.0734,0.1468 -0.1468 0.1468h -0.2753 ZM 410.8273,309.6462 ZM 413.8373,302.4699 v 4.6985 c 0.0000,1.1379 0.1101,1.6885 0.6057 1.6885c 0.4772,-0.0000 0.8443,-0.1468 1.3215 -0.5139l 0.3304,0.3120 c -0.7158,0.8076 -1.4499,1.2113 -2.2942 1.2113c -0.8443,-0.0000 -1.3398,-0.5139 -1.3398 -1.8170v -5.5795 h -1.1930 c -0.0551,-0.0000 -0.0734,-0.0184 -0.0734 -0.0734v -0.5690 c 0.0000,-0.0551 0.0184,-0.0734 0.0551 -0.0734c 1.2297,-0.0000 1.5233,-0.7158 1.5233 -2.1107v -0.3487 l 1.0645,-0.3671 v 2.8264 h 2.0189 c 0.0918,-0.0000 0.1468,0.0367 0.1468 0.1101v 0.3671 c 0.0000,0.1652 -0.2569,0.2386 -0.4405 0.2386h -1.7252 ZM 420.9584,309.6462 ZM 422.7020,308.3247 v -9.1951 c 0.0000,-1.0462 -0.1835,-1.3398 -0.5506 -1.3398l -0.5873,0.0734 c -0.0551,-0.0000 -0.1101,-0.0367 -0.1101 -0.0918l -0.0367,-0.4588 c 0.2937,-0.0000 0.9727,-0.1101 1.2847 -0.1652c 0.3304,-0.0734 0.5873,-0.1468 0.9544 -0.3120h 0.4038 v 11.4893 c 0.0000,0.5323 0.2019,0.8076 0.7892 0.8076h 0.4405 c 0.0734,-0.0000 0.1468,0.0551 0.1468 0.1468v 0.3487 l -0.0367,0.0367 c 0.0000,-0.0000 -1.3398,-0.0367 -2.0556 -0.0367c -0.6424,-0.0000 -1.9822,0.0367 -1.9822 0.0367l -0.0184,-0.0367 v -0.3487 c 0.0000,-0.0918 0.0367,-0.1468 0.1285 -0.1468h 0.4405 c 0.6057,-0.0000 0.7892,-0.2753 0.7892 -0.8076ZM 425.7304,309.6462 ZM 431.0713,305.1495 l -1.4499,0.3671 c -1.6151,0.4955 -1.8537,1.3398 -1.8537 2.1657c 0.0000,0.5690 0.2753,1.4316 1.4316 1.4316c 0.5506,-0.0000 1.3949,-0.5323 1.8721 -0.9360v -3.0283 ZM 431.0713,305.1495 ZM 432.2459,309.8664 c -0.6974,-0.0000 -1.0829,-0.6240 -1.1563 -1.0645l -0.4221,0.2937 c -0.8443,0.5873 -1.1563,0.7708 -2.0005 0.7708c -1.2847,-0.0000 -2.2208,-0.7341 -2.2208 -2.1107c 0.0000,-1.3949 1.1930,-2.3493 2.9366 -2.7897l 1.6885,-0.4221 c 0.0000,-2.0740 -0.9544,-2.4594 -1.5784 -2.4594c -0.6974,-0.0000 -1.5050,0.3120 -1.5050 0.8810c 0.0000,0.2019 0.0367,0.3120 0.0551 0.3671c 0.0367,0.0734 0.0551,0.2019 0.0551 0.3304c 0.0000,0.2386 -0.1835,0.6057 -0.7158 0.6057c -0.4405,-0.0000 -0.7341,-0.2937 -0.7341 -0.7341c 0.0000,-1.0645 1.7252,-2.0005 2.8999 -2.0005c 1.3398,-0.0000 2.8815,0.5506 2.8815 3.1568v 2.6980 c 0.0000,1.1196 0.0184,1.5968 0.4405 1.5968c 0.4038,-0.0000 0.5139,-0.5139 0.5323 -0.9177l 0.4588,0.0918 c -0.1101,1.3398 -0.6791,1.7069 -1.6151 1.7069ZM 434.0078,309.6462 ZM 436.7425,308.6367 c 0.3671,0.4405 0.7525,0.5873 1.3215 0.5873c 1.7436,-0.0000 2.6246,-1.6151 2.6246 -3.7074c 0.0000,-1.8721 -0.9544,-3.2119 -2.0740 -3.2119c -0.2019,-0.0000 -1.1563,0.0367 -1.8721 0.7892v 5.5428 ZM 436.7425,308.6367 ZM 435.3660,299.1296 c 0.0000,-1.0462 -0.1835,-1.3398 -0.5506 -1.3398l -0.5873,0.0734 c -0.0551,-0.0000 -0.0918,-0.0367 -0.0918 -0.0918l -0.0367,-0.4588 c 0.2937,-0.0000 0.9544,-0.1101 1.2664 -0.1652c 0.3304,-0.0734 0.6057,-0.1468 0.9727 -0.3120h 0.4038 v 5.6896 c 0.6240,-0.6791 1.3582,-1.0094 2.2391 -1.0094c 1.5968,-0.0000 3.1201,1.5233 3.1201 3.7625c 0.0000,2.9182 -2.0556,4.5700 -3.9277 4.5700c -0.7892,-0.0000 -1.3765,-0.2202 -1.9088 -0.6791c -0.1652,0.2202 -0.4038,0.4955 -0.5690 0.6791l -0.3854,-0.0918 c 0.0551,-0.4405 0.0551,-0.7341 0.0551 -1.4499v -9.1768 ZM 442.7808,309.6462 ZM 444.8731,304.5622 h 3.3771 c 0.1835,-0.0000 0.2569,-0.0918 0.2569 -0.2569c 0.0000,-1.7069 -0.8626,-2.1474 -1.5233 -2.1474c -0.4221,-0.0000 -1.7986,0.1652 -2.1107 2.4043ZM 444.8731,304.5622 ZM 449.7185,307.9393 l 0.3671,0.2937 c -0.6974,0.9544 -1.7803,1.6335 -3.1018 1.6335c -2.5144,-0.0000 -3.5789,-1.8721 -3.5789 -3.8726c 0.0000,-2.7897 1.8354,-4.4599 3.5789 -4.4599c 2.4227,-0.0000 2.9916,1.8904 2.9916 3.4321c 0.0000,0.2019 -0.1285,0.3120 -0.3304 0.3120h -4.8270 c -0.0184,0.1101 -0.0184,0.2202 -0.0184 0.3671c 0.0000,1.8721 1.3031,3.3220 2.6246 3.3220c 1.0094,-0.0000 1.6518,-0.3304 2.2942 -1.0278ZM 450.6361,309.6462 ZM 452.3797,308.3247 v -9.1951 c 0.0000,-1.0462 -0.1835,-1.3398 -0.5506 -1.3398l -0.5873,0.0734 c -0.0551,-0.0000 -0.1101,-0.0367 -0.1101 -0.0918l -0.0367,-0.4588 c 0.2937,-0.0000 0.9727,-0.1101 1.2847 -0.1652c 0.3304,-0.0734 0.5873,-0.1468 0.9544 -0.3120h 0.4038 v 11.4893 c 0.0000,0.5323 0.2019,0.8076 0.7892 0.8076h 0.4405 c 0.0734,-0.0000 0.1468,0.0551 0.1468 0.1468v 0.3487 l -0.0367,0.0367 c 0.0000,-0.0000 -1.3398,-0.0367 -2.0556 -0.0367c -0.6424,-0.0000 -1.9822,0.0367 -1.9822 0.0367l -0.0184,-0.0367 v -0.3487 c 0.0000,-0.0918 0.0367,-0.1468 0.1285 -0.1468h 0.4405 c 0.6057,-0.0000 0.7892,-0.2753 0.7892 -0.8076ZM 455.4081,309.6462 ZM 456.1973,307.0767 l 0.4955,-0.0184 c 0.0551,0.4588 0.2569,1.3398 0.6607 1.7619c 0.1835,0.2019 0.6791,0.5323 1.3582 0.5323c 0.6424,-0.0000 1.5968,-0.5139 1.5968 -1.4132c 0.0000,-0.7892 -0.4405,-1.3215 -1.8904 -1.9455c -1.3398,-0.5873 -2.0372,-0.9727 -2.0372 -2.3493c 0.0000,-1.2297 1.0829,-2.1107 2.5328 -2.1107c 0.9177,-0.0000 1.5968,0.1652 2.1657 0.4588c 0.1101,0.5873 0.1652,1.2113 0.2019 1.8721l -0.4955,0.0184 c -0.3854,-1.5050 -1.4866,-1.7986 -1.8721 -1.7986c -0.6974,-0.0000 -1.4132,0.2753 -1.4132 1.2847c 0.0000,0.7341 0.3487,1.1012 1.3582 1.4683c 1.4866,0.5506 2.6796,1.2113 2.6796 2.6796c 0.0000,1.8170 -1.9271,2.3493 -2.7897 2.3493c -0.6424,-0.0000 -1.1746,-0.0734 -1.6518 -0.2019c -0.1285,-0.0184 -0.2202,-0.0367 -0.3487 -0.0367c -0.0918,-0.0000 -0.2386,0.0184 -0.4221 0.0551c 0.0000,-0.7708 -0.0551,-1.7069 -0.1285 -2.6062ZM 466.8056,309.6462 ZM 472.1465,305.1495 l -1.4499,0.3671 c -1.6151,0.4955 -1.8537,1.3398 -1.8537 2.1657c 0.0000,0.5690 0.2753,1.4316 1.4316 1.4316c 0.5506,-0.0000 1.3949,-0.5323 1.8721 -0.9360v -3.0283 ZM 472.1465,305.1495 ZM 473.3211,309.8664 c -0.6974,-0.0000 -1.0829,-0.6240 -1.1563 -1.0645l -0.4221,0.2937 c -0.8443,0.5873 -1.1563,0.7708 -2.0005 0.7708c -1.2847,-0.0000 -2.2208,-0.7341 -2.2208 -2.1107c 0.0000,-1.3949 1.1930,-2.3493 2.9366 -2.7897l 1.6885,-0.4221 c 0.0000,-2.0740 -0.9544,-2.4594 -1.5784 -2.4594c -0.6974,-0.0000 -1.5050,0.3120 -1.5050 0.8810c 0.0000,0.2019 0.0367,0.3120 0.0551 0.3671c 0.0367,0.0734 0.0551,0.2019 0.0551 0.3304c 0.0000,0.2386 -0.1835,0.6057 -0.7158 0.6057c -0.4405,-0.0000 -0.7341,-0.2937 -0.7341 -0.7341c 0.0000,-1.0645 1.7252,-2.0005 2.8999 -2.0005c 1.3398,-0.0000 2.8815,0.5506 2.8815 3.1568v 2.6980 c 0.0000,1.1196 0.0184,1.5968 0.4405 1.5968c 0.4038,-0.0000 0.5139,-0.5139 0.5323 -0.9177l 0.4588,0.0918 c -0.1101,1.3398 -0.6791,1.7069 -1.6151 1.7069ZM 475.0831,309.6462 ZM 476.7165,308.3247 v -4.5700 c 0.0000,-0.9177 -0.1285,-1.1196 -0.4038 -1.1196c -0.2386,-0.0000 -0.4588,0.0184 -0.7708 0.0918l -0.0918,-0.5139 c 1.1563,-0.2019 1.3582,-0.2569 1.9088 -0.5323c 0.1835,-0.0918 0.3304,-0.1468 0.4588 -0.1468h 0.2753 l -0.0551,1.6518 h 0.0551 c 0.4772,-0.7158 1.2847,-1.6518 2.1474 -1.6518c 0.7525,-0.0000 1.0278,0.3671 1.0278 0.8443c 0.0000,0.4772 -0.3120,0.7708 -0.7892 0.7708c -0.3671,-0.0000 -0.5690,-0.1468 -0.7525 -0.3304c -0.1101,-0.1101 -0.2386,-0.1652 -0.3671 -0.1652c -0.2019,-0.0000 -0.6057,0.3304 -1.0462 0.9544c -0.1285,0.1652 -0.2202,0.4038 -0.2202 0.6424v 4.0745 c 0.0000,0.5323 0.1835,0.8076 0.7892 0.8076h 0.5323 c 0.0918,-0.0000 0.1652,0.0551 0.1652 0.1468v 0.3487 l -0.0367,0.0367 c 0.0000,-0.0000 -1.4499,-0.0367 -2.1657 -0.0367c -0.6607,-0.0000 -1.9088,0.0367 -1.9088 0.0367l -0.0184,-0.0367 v -0.3487 c 0.0000,-0.0918 0.0367,-0.1468 0.1285 -0.1468h 0.3487 c 0.6240,-0.0000 0.7892,-0.2753 0.7892 -0.8076ZM 481.4518,309.6462 ZM 483.5441,304.5622 h 3.3771 c 0.1835,-0.0000 0.2569,-0.0918 0.2569 -0.2569c 0.0000,-1.7069 -0.8626,-2.1474 -1.5233 -2.1474c -0.4221,-0.0000 -1.7986,0.1652 -2.1107 2.4043ZM 483.5441,304.5622 ZM 488.3894,307.9393 l 0.3671,0.2937 c -0.6974,0.9544 -1.7803,1.6335 -3.1018 1.6335c -2.5144,-0.0000 -3.5789,-1.8721 -3.5789 -3.8726c 0.0000,-2.7897 1.8354,-4.4599 3.5789 -4.4599c 2.4227,-0.0000 2.9916,1.8904 2.9916 3.4321c 0.0000,0.2019 -0.1285,0.3120 -0.3304 0.3120h -4.8270 c -0.0184,0.1101 -0.0184,0.2202 -0.0184 0.3671c 0.0000,1.8721 1.3031,3.3220 2.6246 3.3220c 1.0094,-0.0000 1.6518,-0.3304 2.2942 -1.0278ZM 493.8955,309.6462 ZM 499.9521,302.2680 h -0.0918 c -0.0918,-0.0000 -0.1468,-0.0734 -0.1468 -0.1285v -0.3671 l 0.0734,-0.0367 c 0.0000,-0.0000 1.0462,0.0367 1.7252 0.0367c 0.4772,-0.0000 1.2480,-0.0367 1.2480 -0.0367l 0.0367,0.0367 v 0.3304 c 0.0000,0.0918 -0.0918,0.1652 -0.2019 0.1652c -0.5323,-0.0000 -0.9544,0.2386 -1.2480 0.9544l -2.5328,6.2219 c -0.1285,0.3120 -0.2569,0.4221 -0.4405 0.4221c -0.2386,-0.0000 -0.3487,-0.1101 -0.4588 -0.3854l -2.4961,-6.3320 c -0.2569,-0.6607 -0.6424,-0.8810 -1.1746 -0.8810c -0.0918,-0.0000 -0.1835,-0.0367 -0.1835 -0.1285v -0.3671 l 0.0551,-0.0367 c 0.0000,-0.0000 0.9727,0.0367 1.5968 0.0367c 0.7158,-0.0000 1.8354,-0.0367 1.8354 -0.0367l 0.0734,0.0367 v 0.3487 c 0.0000,0.1285 -0.1101,0.1468 -0.1652 0.1468h -0.3120 c -0.3671,0.0184 -0.5323,0.1285 -0.5323 0.3120c 0.0000,0.1285 0.0734,0.2753 0.1835 0.5323l 1.5784,4.0011 l 0.3120,0.8443 l 0.3120,-0.7892 l 1.6335,-4.0194 c 0.0918,-0.2019 0.1468,-0.3671 0.1468 -0.4955c 0.0000,-0.2753 -0.2019,-0.3854 -0.8259 -0.3854ZM 503.0172,309.6462 ZM 505.1095,304.5622 h 3.3771 c 0.1835,-0.0000 0.2569,-0.0918 0.2569 -0.2569c 0.0000,-1.7069 -0.8626,-2.1474 -1.5233 -2.1474c -0.4221,-0.0000 -1.7986,0.1652 -2.1107 2.4043ZM 505.1095,304.5622 ZM 509.9548,307.9393 l 0.3671,0.2937 c -0.6974,0.9544 -1.7803,1.6335 -3.1018 1.6335c -2.5144,-0.0000 -3.5789,-1.8721 -3.5789 -3.8726c 0.0000,-2.7897 1.8354,-4.4599 3.5789 -4.4599c 2.4227,-0.0000 2.9916,1.8904 2.9916 3.4321c 0.0000,0.2019 -0.1285,0.3120 -0.3304 0.3120h -4.8270 c -0.0184,0.1101 -0.0184,0.2202 -0.0184 0.3671c 0.0000,1.8721 1.3031,3.3220 2.6246 3.3220c 1.0094,-0.0000 1.6518,-0.3304 2.2942 -1.0278ZM 510.8725,309.6462 ZM 512.5060,308.3247 v -4.5700 c 0.0000,-0.9177 -0.1285,-1.1196 -0.4038 -1.1196c -0.2386,-0.0000 -0.4588,0.0184 -0.7708 0.0918l -0.0918,-0.5139 c 1.1563,-0.2019 1.3582,-0.2569 1.9088 -0.5323c 0.1835,-0.0918 0.3304,-0.1468 0.4588 -0.1468h 0.2753 l -0.0551,1.6518 h 0.0551 c 0.4772,-0.7158 1.2847,-1.6518 2.1474 -1.6518c 0.7525,-0.0000 1.0278,0.3671 1.0278 0.8443c 0.0000,0.4772 -0.3120,0.7708 -0.7892 0.7708c -0.3671,-0.0000 -0.5690,-0.1468 -0.7525 -0.3304c -0.1101,-0.1101 -0.2386,-0.1652 -0.3671 -0.1652c -0.2019,-0.0000 -0.6057,0.3304 -1.0462 0.9544c -0.1285,0.1652 -0.2202,0.4038 -0.2202 0.6424v 4.0745 c 0.0000,0.5323 0.1835,0.8076 0.7892 0.8076h 0.5323 c 0.0918,-0.0000 0.1652,0.0551 0.1652 0.1468v 0.3487 l -0.0367,0.0367 c 0.0000,-0.0000 -1.4499,-0.0367 -2.1657 -0.0367c -0.6607,-0.0000 -1.9088,0.0367 -1.9088 0.0367l -0.0184,-0.0367 v -0.3487 c 0.0000,-0.0918 0.0367,-0.1468 0.1285 -0.1468h 0.3487 c 0.6240,-0.0000 0.7892,-0.2753 0.7892 -0.8076ZM 517.2412,309.6462 ZM 521.0587,302.1212 c 0.0000,0.0918 -0.1101,0.1468 -0.2019 0.1468c -0.5506,-0.0000 -0.7892,0.1101 -0.7892 0.4038c 0.0000,0.1101 0.0367,0.2569 0.1101 0.4221l 2.0189,4.7352 l 2.0372,-4.6618 c 0.0918,-0.1652 0.1285,-0.3120 0.1285 -0.4221c 0.0000,-0.3854 -0.3671,-0.4772 -0.7708 -0.4772h -0.0734 c -0.0918,-0.0000 -0.1835,-0.0734 -0.1835 -0.1285v -0.3487 l 0.0367,-0.0551 c 0.0000,-0.0000 1.0829,0.0367 1.7252 0.0367c 0.5139,-0.0000 1.2664,-0.0367 1.2664 -0.0367l 0.0551,0.0367 v 0.3487 c 0.0000,0.0918 -0.0734,0.1468 -0.2019 0.1468c -0.6974,-0.0000 -1.0462,0.7158 -1.3031 1.2480c -0.9727,2.0556 -1.7803,3.9460 -3.2486 7.4883c -0.5506,1.3215 -1.2113,2.8632 -2.5144 2.8632c -0.3487,-0.0000 -1.0645,-0.2019 -1.0645 -0.8626c 0.0000,-0.5506 0.4038,-0.7158 0.6974 -0.7158c 0.2753,-0.0000 0.4588,0.1101 0.5690 0.2569c 0.1835,0.1835 0.3120,0.3120 0.4955 0.3120c 0.2753,-0.0000 0.9177,-1.5784 1.3765 -2.6980c 0.1101,-0.2202 0.1468,-0.4038 0.1468 -0.5690c 0.0000,-0.1835 -0.1652,-0.6791 -0.3120 -1.0462l -2.3125,-5.3776 c -0.2937,-0.6974 -0.4955,-0.8993 -1.1196 -0.8993c -0.1101,-0.0000 -0.1835,-0.0551 -0.1835 -0.1285v -0.3671 l 0.0367,-0.0367 c 0.0000,-0.0000 0.8076,0.0367 1.3582 0.0367c 0.8626,-0.0000 2.1841,-0.0367 2.1841 -0.0367l 0.0367,0.0551 v 0.3304 ZM 531.1715,309.6462 ZM 539.0452,307.5172 c 0.0000,0.9177 0.0918,1.2113 0.4588 1.2113c 0.2202,-0.0000 0.6240,-0.0367 0.9360 -0.0918l 0.0734,0.5139 c -1.1196,0.2019 -2.0189,0.3854 -2.4410 0.7158h -0.4038 l 0.0551,-1.3582 h -0.0551 c -1.0094,1.1012 -1.8354,1.3582 -2.5879 1.3582c -1.8170,-0.0000 -2.2942,-1.2297 -2.2942 -2.4961v -4.1846 c 0.0000,-0.6057 -0.1285,-0.9177 -0.8076 -0.9177c -0.0734,-0.0000 -0.2019,0.0184 -0.3120 0.0184l -0.0551,-0.0184 v -0.4772 l 0.0551,-0.0551 c 0.0000,-0.0000 1.2480,0.0367 1.8354 0.0367c 0.2569,-0.0000 0.6791,-0.0367 0.6791 -0.0367l -0.0184,1.4683 v 3.9093 c 0.0000,1.6335 0.8443,1.9271 1.3949 1.9271c 0.4221,-0.0000 0.8076,-0.1652 1.1930 -0.4405c 0.4405,-0.3304 0.7341,-0.5873 0.9177 -0.8259v -4.5333 c 0.0000,-0.6607 -0.0918,-0.9727 -0.7708 -0.9727c -0.1101,-0.0000 -0.3120,0.0184 -0.3671 0.0184l -0.0367,-0.0367 v -0.4588 l 0.0367,-0.0551 c 0.0000,-0.0000 1.3031,0.0367 1.8170 0.0367c 0.4221,-0.0000 0.7158,-0.0367 0.7158 -0.0367l -0.0184,1.4499 v 4.3314 ZM 540.6603,309.6462 ZM 541.4495,307.0767 l 0.4955,-0.0184 c 0.0551,0.4588 0.2569,1.3398 0.6607 1.7619c 0.1835,0.2019 0.6791,0.5323 1.3582 0.5323c 0.6424,-0.0000 1.5968,-0.5139 1.5968 -1.4132c 0.0000,-0.7892 -0.4405,-1.3215 -1.8904 -1.9455c -1.3398,-0.5873 -2.0372,-0.9727 -2.0372 -2.3493c 0.0000,-1.2297 1.0829,-2.1107 2.5328 -2.1107c 0.9177,-0.0000 1.5968,0.1652 2.1657 0.4588c 0.1101,0.5873 0.1652,1.2113 0.2019 1.8721l -0.4955,0.0184 c -0.3854,-1.5050 -1.4866,-1.7986 -1.8721 -1.7986c -0.6974,-0.0000 -1.4132,0.2753 -1.4132 1.2847c 0.0000,0.7341 0.3487,1.1012 1.3582 1.4683c 1.4866,0.5506 2.6796,1.2113 2.6796 2.6796c 0.0000,1.8170 -1.9271,2.3493 -2.7897 2.3493c -0.6424,-0.0000 -1.1746,-0.0734 -1.6518 -0.2019c -0.1285,-0.0184 -0.2202,-0.0367 -0.3487 -0.0367c -0.0918,-0.0000 -0.2386,0.0184 -0.4221 0.0551c 0.0000,-0.7708 -0.0551,-1.7069 -0.1285 -2.6062ZM 547.4695,309.6462 ZM 549.5618,304.5622 h 3.3771 c 0.1835,-0.0000 0.2569,-0.0918 0.2569 -0.2569c 0.0000,-1.7069 -0.8626,-2.1474 -1.5233 -2.1474c -0.4221,-0.0000 -1.7986,0.1652 -2.1107 2.4043ZM 549.5618,304.5622 ZM 554.4071,307.9393 l 0.3671,0.2937 c -0.6974,0.9544 -1.7803,1.6335 -3.1018 1.6335c -2.5144,-0.0000 -3.5789,-1.8721 -3.5789 -3.8726c 0.0000,-2.7897 1.8354,-4.4599 3.5789 -4.4599c 2.4227,-0.0000 2.9916,1.8904 2.9916 3.4321c 0.0000,0.2019 -0.1285,0.3120 -0.3304 0.3120h -4.8270 c -0.0184,0.1101 -0.0184,0.2202 -0.0184 0.3671c 0.0000,1.8721 1.3031,3.3220 2.6246 3.3220c 1.0094,-0.0000 1.6518,-0.3304 2.2942 -1.0278ZM 555.3248,309.6462 ZM 557.0134,308.3247 v -5.8548 h -1.2664 c -0.0734,-0.0000 -0.0918,-0.0184 -0.0918 -0.0918v -0.2569 c 0.0000,-0.1468 0.0918,-0.3671 0.4221 -0.3671h 0.9360 v -0.7158 c 0.0000,-2.8632 1.4866,-4.2030 3.0283 -4.2030c 0.6974,-0.0000 1.1746,0.1835 1.6335 0.4955c 0.3671,0.2753 0.5323,0.5873 0.5323 0.8810c 0.0000,0.3854 -0.2753,0.6607 -0.6240 0.6607c -0.3671,-0.0000 -0.6057,-0.2019 -0.7525 -0.5139c -0.2386,-0.6057 -0.5873,-0.8993 -1.1379 -0.8993c -0.6057,-0.0000 -1.3031,0.4405 -1.3031 3.2669v 1.0278 h 2.0189 c 0.0918,-0.0000 0.1468,0.0367 0.1468 0.1101v 0.3671 c 0.0000,0.1652 -0.2569,0.2386 -0.4221 0.2386h -1.7436 v 5.8548 c 0.0000,0.5323 0.1835,0.8076 0.7892 0.8076h 0.6057 c 0.0734,-0.0000 0.1468,0.0551 0.1468 0.1468v 0.3487 l -0.0367,0.0367 c 0.0000,-0.0000 -1.5050,-0.0367 -2.2208 -0.0367c -0.6607,-0.0000 -1.9088,0.0367 -1.9088 0.0367l -0.0367,-0.0367 v -0.3487 c 0.0000,-0.0918 0.0551,-0.1468 0.1468 -0.1468h 0.3487 c 0.6240,-0.0000 0.7892,-0.2753 0.7892 -0.8076ZM 562.0239,309.6462 ZM 569.8975,307.5172 c 0.0000,0.9177 0.0918,1.2113 0.4588 1.2113c 0.2202,-0.0000 0.6240,-0.0367 0.9360 -0.0918l 0.0734,0.5139 c -1.1196,0.2019 -2.0189,0.3854 -2.4410 0.7158h -0.4038 l 0.0551,-1.3582 h -0.0551 c -1.0094,1.1012 -1.8354,1.3582 -2.5879 1.3582c -1.8170,-0.0000 -2.2942,-1.2297 -2.2942 -2.4961v -4.1846 c 0.0000,-0.6057 -0.1285,-0.9177 -0.8076 -0.9177c -0.0734,-0.0000 -0.2019,0.0184 -0.3120 0.0184l -0.0551,-0.0184 v -0.4772 l 0.0551,-0.0551 c 0.0000,-0.0000 1.2480,0.0367 1.8354 0.0367c 0.2569,-0.0000 0.6791,-0.0367 0.6791 -0.0367l -0.0184,1.4683 v 3.9093 c 0.0000,1.6335 0.8443,1.9271 1.3949 1.9271c 0.4221,-0.0000 0.8076,-0.1652 1.1930 -0.4405c 0.4405,-0.3304 0.7341,-0.5873 0.9177 -0.8259v -4.5333 c 0.0000,-0.6607 -0.0918,-0.9727 -0.7708 -0.9727c -0.1101,-0.0000 -0.3120,0.0184 -0.3671 0.0184l -0.0367,-0.0367 v -0.4588 l 0.0367,-0.0551 c 0.0000,-0.0000 1.3031,0.0367 1.8170 0.0367c 0.4221,-0.0000 0.7158,-0.0367 0.7158 -0.0367l -0.0184,1.4499 v 4.3314 ZM 571.5127,309.6462 ZM 573.2562,308.3247 v -9.1951 c 0.0000,-1.0462 -0.1835,-1.3398 -0.5506 -1.3398l -0.5873,0.0734 c -0.0551,-0.0000 -0.1101,-0.0367 -0.1101 -0.0918l -0.0367,-0.4588 c 0.2937,-0.0000 0.9727,-0.1101 1.2847 -0.1652c 0.3304,-0.0734 0.5873,-0.1468 0.9544 -0.3120h 0.4038 v 11.4893 c 0.0000,0.5323 0.2019,0.8076 0.7892 0.8076h 0.4405 c 0.0734,-0.0000 0.1468,0.0551 0.1468 0.1468v 0.3487 l -0.0367,0.0367 c 0.0000,-0.0000 -1.3398,-0.0367 -2.0556 -0.0367c -0.6424,-0.0000 -1.9822,0.0367 -1.9822 0.0367l -0.0184,-0.0367 v -0.3487 c 0.0000,-0.0918 0.0367,-0.1468 0.1285 -0.1468h 0.4405 c 0.6057,-0.0000 0.7892,-0.2753 0.7892 -0.8076Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(31,119,180)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.1302,261.6175 ZM 58.8520,250.1793 c 0.0000,-2.4908 -1.9337,-3.4741 -4.2934 -4.1295l 0.1639,-0.9832 c 1.7043,0.3605 3.5724,0.7210 5.4077 0.8521l -0.0000,8.3574 l -0.0328,2.5564 c -0.0000,0.3933 0.0655,4.1623 0.0655 4.1623l -0.0655,0.0655 l -0.6227,-0.0000 c -0.1639,-0.0000 -0.2622,-0.1311 -0.2622 -0.2622l 0.0000,-0.9832 c 0.0000,-1.3765 -0.2950,-1.6715 -1.4421 -1.6715l -16.4527,-0.0000 c -0.9832,-0.0000 -1.4421,0.4916 -1.4421 1.7698l -0.0000,0.8849 c -0.0000,0.1311 -0.0983,0.2622 -0.2622 0.2622l -0.6227,-0.0000 l -0.0328,-0.0655 c 0.0000,-0.0000 0.0328,-2.8514 0.0328 -4.1295c 0.0000,-1.1799 -0.0328,-4.2279 -0.0328 -4.2279l 0.0328,-0.0655 l 0.6227,0.0000 c 0.1639,0.0000 0.2622,0.0983 0.2622 0.2622l -0.0000,0.8521 c -0.0000,1.3437 0.5244,1.8026 1.4421 1.8026l 15.8955,0.0000 c 1.0160,0.0000 1.6387,-0.5899 1.6387 -1.5404l 0.0000,-3.7690 ZM 60.1302,244.3783 ZM 38.5648,232.0880 c 0.0000,-3.9985 1.4748,-5.1783 1.4748 -7.1448c 2.3597,-0.2294 3.6707,-0.4261 5.0472 -0.7210l 0.1966,0.9832 c -2.8186,0.8521 -5.5061,2.5892 -5.5061 7.3414c -0.0000,4.4245 3.9001,7.9314 9.6356 7.9314c 4.3262,0.0000 9.9306,-3.1463 9.9306 -8.9801c 0.0000,-1.7698 -0.5899,-3.7035 -1.6387 -4.8178l -5.0145,-0.0000 c -1.0160,-0.0000 -1.4421,0.4916 -1.4421 1.8026l -0.0000,0.8521 c -0.0000,0.1311 -0.0983,0.2622 -0.2622 0.2622l -0.8521,-0.0000 l -0.0655,-0.0655 c 0.0000,-0.0000 0.0655,-2.8514 0.0655 -4.1295c 0.0000,-1.1471 -0.0655,-3.0480 -0.0655 -3.0480l 0.0655,-0.0655 l 0.8521,0.0000 c 0.1639,0.0000 0.2622,0.0983 0.2622 0.2622l -0.0000,0.0328 c -0.0000,1.1471 0.5244,1.4421 1.4421 1.4421l 3.8018,0.0000 c 0.3605,0.0000 0.6227,-0.1639 0.9177 -0.5244c 1.9009,2.2286 3.1135,4.8834 3.1135 8.7507c -0.0000,6.5876 -4.7850,11.0777 -10.4550 11.0777c -7.2103,-0.0000 -11.5037,-5.6044 -11.5037 -11.2416ZM 60.1302,221.6658 ZM 57.7704,218.5522 l -16.4199,-0.0000 c -1.8681,-0.0000 -2.3925,0.3277 -2.3925 0.9832l 0.1311,1.0488 c -0.0000,0.0983 -0.0655,0.1966 -0.1639 0.1966l -0.8194,0.0655 c 0.0000,-0.5244 -0.1966,-1.7370 -0.2950 -2.2942c -0.1311,-0.5899 -0.2622,-1.0488 -0.5572 -1.7043l 0.0000,-0.7210 l 20.5167,0.0000 c 0.9505,0.0000 1.4421,-0.3605 1.4421 -1.4093l 0.0000,-0.7866 c 0.0000,-0.1311 0.0983,-0.2622 0.2622 -0.2622l 0.6227,0.0000 l 0.0655,0.0655 c 0.0000,-0.0000 -0.0655,2.3925 -0.0655 3.6707c -0.0000,1.1471 0.0655,3.5396 0.0655 3.5396l -0.0655,0.0328 l -0.6227,-0.0000 c -0.1639,-0.0000 -0.2622,-0.0655 -0.2622 -0.2294l 0.0000,-0.7866 c 0.0000,-1.0815 -0.4916,-1.4093 -1.4421 -1.4093ZM 60.1302,213.1445 ZM 46.6928,206.3275 c 0.1639,0.0000 0.2622,0.1966 0.2622 0.3605c -0.0000,0.9832 0.1966,1.4093 0.7210 1.4093c 0.1966,0.0000 0.4588,-0.0655 0.7538 -0.1966l 8.4557,-3.6052 l -8.3246,-3.6379 c -0.2950,-0.1639 -0.5572,-0.2294 -0.7538 -0.2294c -0.6883,-0.0000 -0.8521,0.6555 -0.8521 1.3765l -0.0000,0.1311 c -0.0000,0.1639 -0.1311,0.3277 -0.2294 0.3277l -0.6227,-0.0000 l -0.0983,-0.0655 c 0.0000,-0.0000 0.0655,-1.9337 0.0655 -3.0808c 0.0000,-0.9177 -0.0655,-2.2614 -0.0655 -2.2614l 0.0655,-0.0983 l 0.6227,0.0000 c 0.1639,0.0000 0.2622,0.1311 0.2622 0.3605c -0.0000,1.2454 1.2782,1.8681 2.2286 2.3270c 3.6707,1.7370 7.0465,3.1791 13.3719 5.8010c 2.3597,0.9832 5.1128,2.1631 5.1128 4.4901c -0.0000,0.6227 -0.3605,1.9009 -1.5404 1.9009c -0.9832,-0.0000 -1.2782,-0.7210 -1.2782 -1.2454c 0.0000,-0.4916 0.1966,-0.8194 0.4588 -1.0160c 0.3277,-0.3277 0.5572,-0.5572 0.5572 -0.8849c 0.0000,-0.4916 -2.8186,-1.6387 -4.8178 -2.4581c -0.3933,-0.1966 -0.7210,-0.2622 -1.0160 -0.2622c -0.3277,-0.0000 -1.2126,0.2950 -1.8681 0.5572l -9.6028,4.1295 c -1.2454,0.5244 -1.6059,0.8849 -1.6059 1.9992c -0.0000,0.1966 -0.0983,0.3277 -0.2294 0.3277l -0.6555,-0.0000 l -0.0655,-0.0655 c 0.0000,-0.0000 0.0655,-1.4421 0.0655 -2.4253c 0.0000,-1.5404 -0.0655,-3.9001 -0.0655 -3.9001l 0.0983,-0.0655 l 0.5899,0.0000 ZM 60.1302,196.4624 ZM 49.8391,191.5791 l 8.1608,0.0000 c 1.3437,-1.1471 1.4093,-2.2286 1.4093 -2.7530c 0.0000,-3.5068 -3.2774,-4.2934 -6.0960 -4.2934c -3.9657,-0.0000 -6.1616,1.6059 -6.1616 3.6052c -0.0000,1.1143 0.9505,2.7203 2.6875 3.4413ZM 49.8391,191.5791 ZM 65.3085,194.0044 l -16.2232,-0.0000 c -1.2454,-0.0000 -1.4748,0.2950 -1.4748 0.7538c -0.0000,0.4261 0.0328,0.8194 0.1639 1.3765l -0.9177,0.1639 c -0.3605,-2.0975 -0.4916,-2.4908 -0.9505 -3.4085c -0.1639,-0.3605 -0.2622,-0.5899 -0.2622 -0.8194l 0.0000,-0.4916 l 2.6219,0.0983 l 0.0000,-0.0983 c -2.2942,-1.5076 -2.6219,-3.2774 -2.6219 -4.3262c 0.0000,-3.1791 3.3102,-5.2766 6.7843 -5.2766c 2.6547,0.0000 4.6867,0.8194 6.1943 2.2942c 1.2782,1.2782 1.9009,2.6219 1.9009 4.3590c -0.0000,1.1799 -0.2622,2.0975 -0.7210 2.9497l 5.5061,0.0000 c 0.9505,0.0000 1.4421,-0.3605 1.4421 -1.4093l 0.0000,-0.6227 c 0.0000,-0.1639 0.0983,-0.2950 0.2622 -0.2950l 0.6227,0.0000 l 0.0655,0.0655 c 0.0000,-0.0000 -0.0655,2.2614 -0.0655 3.5396c -0.0000,1.1471 0.0655,3.3757 0.0655 3.3757l -0.0655,0.0655 l -0.6227,-0.0000 c -0.1639,-0.0000 -0.2622,-0.0983 -0.2622 -0.2622l 0.0000,-0.6227 c 0.0000,-1.0815 -0.4916,-1.4093 -1.4421 -1.4093ZM 60.1302,180.7636 ZM 37.2538,175.4214 l 11.1105,0.0000 c -2.1959,-2.1959 -2.7203,-4.1295 -2.7203 -5.4077c 0.0000,-2.3597 1.8026,-3.5396 5.1783 -3.5396l 6.9481,0.0000 c 0.9505,0.0000 1.4421,-0.3277 1.4421 -1.4093l 0.0000,-0.6227 c 0.0000,-0.1311 0.0983,-0.2622 0.2622 -0.2622l 0.6227,0.0000 l 0.0655,0.0655 c 0.0000,-0.0000 -0.0655,2.2286 -0.0655 3.5396c -0.0000,1.1471 0.0655,3.3757 0.0655 3.3757l -0.0655,0.0655 l -0.6227,-0.0000 c -0.1639,-0.0000 -0.2622,-0.0983 -0.2622 -0.2622l 0.0000,-0.6227 c 0.0000,-1.1143 -0.4916,-1.4093 -1.4421 -1.4093l -7.3086,-0.0000 c -2.6547,-0.0000 -3.2774,0.7210 -3.2774 2.5564c -0.0000,0.9505 0.8521,2.3597 2.3925 3.9329l 8.1936,0.0000 c 0.9505,0.0000 1.4421,-0.3277 1.4421 -1.4093l 0.0000,-0.6227 c 0.0000,-0.1311 0.0983,-0.2622 0.2622 -0.2622l 0.6227,0.0000 l 0.0655,0.0655 c 0.0000,-0.0000 -0.0655,2.2286 -0.0655 3.5068c -0.0000,1.1799 0.0655,3.3757 0.0655 3.3757l -0.0655,0.0655 l -0.6227,-0.0000 c -0.1639,-0.0000 -0.2622,-0.0655 -0.2622 -0.2294l 0.0000,-0.6227 c 0.0000,-1.1143 -0.4916,-1.4093 -1.4421 -1.4093l -16.4199,-0.0000 c -1.8681,-0.0000 -2.3925,0.2950 -2.3925 0.9505l 0.1311,1.0815 c -0.0000,0.0983 -0.0655,0.1639 -0.1639 0.1639l -0.8194,0.0655 c 0.0000,-0.5244 -0.1966,-1.7043 -0.2950 -2.2614c -0.1311,-0.5899 -0.2622,-1.0815 -0.5572 -1.7370l 0.0000,-0.7210 ZM 60.1302,155.5930 ZM 60.5235,143.9581 c -0.0000,7.0465 -5.4405,10.4222 -10.7172 10.4222c -6.4565,-0.0000 -11.2416,-5.0145 -11.2416 -10.4550c 0.0000,-4.0312 1.3765,-5.3094 1.4748 -7.1776c 1.8026,-0.0983 3.3757,-0.3933 5.0800 -0.7210l 0.1311,0.9832 c -2.8186,0.8521 -5.4733,2.7530 -5.4733 7.2759c -0.0000,2.5892 2.7530,7.2431 9.4062 7.2431c 4.7850,0.0000 9.9961,-2.4581 9.9961 -7.5381c 0.0000,-3.0480 -1.0815,-5.2766 -3.6379 -7.6036l 0.4916,-0.7538 c 2.9169,2.2286 4.4901,5.1456 4.4901 8.3246ZM 60.1302,134.4864 ZM 37.2538,129.1442 l 11.1105,0.0000 c -2.1959,-2.1959 -2.7203,-4.1295 -2.7203 -5.4077c 0.0000,-2.3597 1.8026,-3.5396 5.1783 -3.5396l 6.9481,0.0000 c 0.9505,0.0000 1.4421,-0.3277 1.4421 -1.4093l 0.0000,-0.6227 c 0.0000,-0.1311 0.0983,-0.2622 0.2622 -0.2622l 0.6227,0.0000 l 0.0655,0.0655 c 0.0000,-0.0000 -0.0655,2.2286 -0.0655 3.5396c -0.0000,1.1471 0.0655,3.3757 0.0655 3.3757l -0.0655,0.0655 l -0.6227,-0.0000 c -0.1639,-0.0000 -0.2622,-0.0983 -0.2622 -0.2622l 0.0000,-0.6227 c 0.0000,-1.1143 -0.4916,-1.4093 -1.4421 -1.4093l -7.3086,-0.0000 c -2.6547,-0.0000 -3.2774,0.7210 -3.2774 2.5564c -0.0000,0.9505 0.8521,2.3597 2.3925 3.9329l 8.1936,0.0000 c 0.9505,0.0000 1.4421,-0.3277 1.4421 -1.4093l 0.0000,-0.6227 c 0.0000,-0.1311 0.0983,-0.2622 0.2622 -0.2622l 0.6227,0.0000 l 0.0655,0.0655 c 0.0000,-0.0000 -0.0655,2.2286 -0.0655 3.5068c -0.0000,1.1799 0.0655,3.3757 0.0655 3.3757l -0.0655,0.0655 l -0.6227,-0.0000 c -0.1639,-0.0000 -0.2622,-0.0655 -0.2622 -0.2294l 0.0000,-0.6227 c 0.0000,-1.1143 -0.4916,-1.4093 -1.4421 -1.4093l -16.4199,-0.0000 c -1.8681,-0.0000 -2.3925,0.2950 -2.3925 0.9505l 0.1311,1.0815 c -0.0000,0.0983 -0.0655,0.1639 -0.1639 0.1639l -0.8194,0.0655 c 0.0000,-0.5244 -0.1966,-1.7043 -0.2950 -2.2614c -0.1311,-0.5899 -0.2622,-1.0815 -0.5572 -1.7370l 0.0000,-0.7210 ZM 60.1302,117.5094 ZM 52.1005,107.9721 l 0.6555,2.5892 c 0.8849,2.8841 2.3925,3.3102 3.8674 3.3102c 1.0160,0.0000 2.5564,-0.4916 2.5564 -2.5564c 0.0000,-0.9832 -0.9505,-2.4908 -1.6715 -3.3430l -5.4077,-0.0000 ZM 52.1005,107.9721 ZM 60.5235,105.8745 c -0.0000,1.2454 -1.1143,1.9337 -1.9009 2.0648l 0.5244,0.7538 c 1.0488,1.5076 1.3765,2.0648 1.3765 3.5724c -0.0000,2.2942 -1.3110,3.9657 -3.7690 3.9657c -2.4908,-0.0000 -4.1951,-2.1303 -4.9817 -5.2439l -0.7538,-3.0152 c -3.7035,-0.0000 -4.3917,1.7043 -4.3917 2.8186c -0.0000,1.2454 0.5572,2.6875 1.5732 2.6875c 0.3605,0.0000 0.5572,-0.0655 0.6555 -0.0983c 0.1311,-0.0655 0.3605,-0.0983 0.5899 -0.0983c 0.4261,0.0000 1.0815,0.3277 1.0815 1.2782c -0.0000,0.7866 -0.5244,1.3110 -1.3110 1.3110c -1.9009,-0.0000 -3.5724,-3.0808 -3.5724 -5.1783c 0.0000,-2.3925 0.9832,-5.1456 5.6372 -5.1456l 4.8178,0.0000 c 1.9992,0.0000 2.8514,-0.0328 2.8514 -0.7866c 0.0000,-0.7210 -0.9177,-0.9177 -1.6387 -0.9505l 0.1639,-0.8194 c 2.3925,0.1966 3.0480,1.2126 3.0480 2.8841ZM 60.1302,102.7282 ZM 57.7704,99.8113 l -8.1608,-0.0000 c -1.6387,-0.0000 -1.9992,0.2294 -1.9992 0.7210c -0.0000,0.4261 0.0328,0.8194 0.1639 1.3765l -0.9177,0.1639 c -0.3605,-2.0648 -0.4588,-2.4253 -0.9505 -3.4085c -0.1639,-0.3277 -0.2622,-0.5899 -0.2622 -0.8194l 0.0000,-0.4916 l 2.9497,0.0983 l 0.0000,-0.0983 c -1.2782,-0.8521 -2.9497,-2.2942 -2.9497 -3.8346c 0.0000,-1.3437 0.6555,-1.8354 1.5076 -1.8354c 0.8521,0.0000 1.3765,0.5572 1.3765 1.4093c -0.0000,0.6555 -0.2622,1.0160 -0.5899 1.3437c -0.1966,0.1966 -0.2950,0.4261 -0.2950 0.6555c -0.0000,0.3605 0.5899,1.0815 1.7043 1.8681c 0.2950,0.2294 0.7210,0.3933 1.1471 0.3933l 7.2759,0.0000 c 0.9505,0.0000 1.4421,-0.3277 1.4421 -1.4093l 0.0000,-0.9505 c 0.0000,-0.1639 0.0983,-0.2950 0.2622 -0.2950l 0.6227,0.0000 l 0.0655,0.0655 c 0.0000,-0.0000 -0.0655,2.5892 -0.0655 3.8674c -0.0000,1.1799 0.0655,3.4085 0.0655 3.4085l -0.0655,0.0328 l -0.6227,-0.0000 c -0.1639,-0.0000 -0.2622,-0.0655 -0.2622 -0.2294l 0.0000,-0.6227 c 0.0000,-1.1143 -0.4916,-1.4093 -1.4421 -1.4093ZM 60.1302,91.3555 ZM 47.3155,85.9806 l 8.3902,0.0000 c 2.0320,0.0000 3.0152,-0.1966 3.0152 -1.0815c 0.0000,-0.8521 -0.2622,-1.5076 -0.9177 -2.3597l 0.5572,-0.5899 c 1.4421,1.2782 2.1631,2.5892 2.1631 4.0968c -0.0000,1.5076 -0.9177,2.3925 -3.2446 2.3925l -9.9634,-0.0000 l -0.0000,2.1303 c -0.0000,0.0983 -0.0328,0.1311 -0.1311 0.1311l -1.0160,-0.0000 c -0.0983,-0.0000 -0.1311,-0.0328 -0.1311 -0.0983c 0.0000,-2.1959 -1.2782,-2.7203 -3.7690 -2.7203l -0.6227,-0.0000 l -0.6555,-1.9009 l 5.0472,0.0000 l 0.0000,-3.6052 c 0.0000,-0.1639 0.0655,-0.2622 0.1966 -0.2622l 0.6555,0.0000 c 0.2950,0.0000 0.4261,0.4588 0.4261 0.7866l -0.0000,3.0808 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 576.2846,261.6175 l -0.0000,-158.1028 h -474.3083 l -0.0000,158.1028 Z"/></g></svg>
+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="400.0000" stroke-opacity="1" viewBox="0 0 600 400" font-size="1" width="600.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 567.6715,94.6539 ZM 572.5326,91.9953 c 0.0000,-1.6204 -0.8810,-2.4227 -1.8563 -2.4227c -0.7237,-0.0000 -1.2743,0.1101 -1.8878 0.3618l 0.5034,-4.2947 c 0.5191,0.0472 1.0540,0.0629 1.6046 0.0629c 0.7866,-0.0000 1.6046,-0.0472 2.4541 -0.1416l 0.0944,0.0472 l -0.2360,1.0226 c -0.6135,0.0629 -1.1169,0.0787 -1.5574 0.0787c -0.7079,-0.0000 -1.2428,-0.0629 -1.7934 -0.1259l -0.2989,2.4856 c 0.3304,-0.1259 0.8967,-0.2360 1.5102 -0.2360c 1.6676,-0.0000 2.5957,1.4473 2.5957 2.8946c 0.0000,1.7619 -1.2271,3.1149 -3.0047 3.1149c -0.8967,-0.0000 -2.2024,-0.5034 -2.2024 -1.1169c 0.0000,-0.2989 0.2517,-0.5034 0.5349 -0.5034c 0.3146,-0.0000 0.5191,0.2360 0.7079 0.4877c 0.2360,0.2832 0.4877,0.5978 0.9911 0.5978c 1.0068,-0.0000 1.8406,-0.9439 1.8406 -2.3125ZM 574.5620,94.6539 ZM 576.1981,93.1594 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 578.0072,94.6539 ZM 582.8683,91.9953 c 0.0000,-1.6204 -0.8810,-2.4227 -1.8563 -2.4227c -0.7237,-0.0000 -1.2743,0.1101 -1.8878 0.3618l 0.5034,-4.2947 c 0.5191,0.0472 1.0540,0.0629 1.6046 0.0629c 0.7866,-0.0000 1.6046,-0.0472 2.4541 -0.1416l 0.0944,0.0472 l -0.2360,1.0226 c -0.6135,0.0629 -1.1169,0.0787 -1.5574 0.0787c -0.7079,-0.0000 -1.2428,-0.0629 -1.7934 -0.1259l -0.2989,2.4856 c 0.3304,-0.1259 0.8967,-0.2360 1.5102 -0.2360c 1.6676,-0.0000 2.5957,1.4473 2.5957 2.8946c 0.0000,1.7619 -1.2271,3.1149 -3.0047 3.1149c -0.8967,-0.0000 -2.2024,-0.5034 -2.2024 -1.1169c 0.0000,-0.2989 0.2517,-0.5034 0.5349 -0.5034c 0.3146,-0.0000 0.5191,0.2360 0.7079 0.4877c 0.2360,0.2832 0.4877,0.5978 0.9911 0.5978c 1.0068,-0.0000 1.8406,-0.9439 1.8406 -2.3125Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 577.8656,103.5148 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 567.6715,126.2745 ZM 572.5326,123.6158 c 0.0000,-1.6204 -0.8810,-2.4227 -1.8563 -2.4227c -0.7237,-0.0000 -1.2743,0.1101 -1.8878 0.3618l 0.5034,-4.2947 c 0.5191,0.0472 1.0540,0.0629 1.6046 0.0629c 0.7866,-0.0000 1.6046,-0.0472 2.4541 -0.1416l 0.0944,0.0472 l -0.2360,1.0226 c -0.6135,0.0629 -1.1169,0.0787 -1.5574 0.0787c -0.7079,-0.0000 -1.2428,-0.0629 -1.7934 -0.1259l -0.2989,2.4856 c 0.3304,-0.1259 0.8967,-0.2360 1.5102 -0.2360c 1.6676,-0.0000 2.5957,1.4473 2.5957 2.8946c 0.0000,1.7619 -1.2271,3.1149 -3.0047 3.1149c -0.8967,-0.0000 -2.2024,-0.5034 -2.2024 -1.1169c 0.0000,-0.2989 0.2517,-0.5034 0.5349 -0.5034c 0.3146,-0.0000 0.5191,0.2360 0.7079 0.4877c 0.2360,0.2832 0.4877,0.5978 0.9911 0.5978c 1.0068,-0.0000 1.8406,-0.9439 1.8406 -2.3125ZM 574.5620,126.2745 ZM 576.1981,124.7800 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 578.0072,126.2745 ZM 582.0660,120.6898 c 0.0000,-0.1101 0.0157,-0.2360 0.1573 -0.3146c 0.1730,-0.1259 0.4562,-0.2674 0.6922 -0.2674c 0.2045,-0.0000 0.2202,0.1730 0.2202 0.4877v 2.5328 h 1.2743 l -0.0944,0.7394 h -1.1799 v 1.3057 c 0.0000,0.4405 0.0629,0.6607 0.5191 0.6607h 0.4248 c 0.0944,-0.0000 0.1101,0.0787 0.1101 0.1101v 0.3461 c 0.0000,-0.0000 -1.0068,-0.0315 -1.6676 -0.0315c -0.5978,-0.0000 -1.5260,0.0315 -1.5260 0.0315v -0.3461 c 0.0000,-0.0315 0.0157,-0.1101 0.1101 -0.1101h 0.4248 c 0.4877,-0.0000 0.5349,-0.2045 0.5349 -0.6607v -1.3057 h -3.0834 c -0.0629,-0.0000 -0.0944,-0.0315 -0.1416 -0.0944l -0.1259,-0.1730 l -0.1888,-0.3304 c -0.0157,-0.0000 -0.0157,-0.0157 -0.0157 -0.0315c 0.0000,-0.0157 0.0157,-0.0315 0.0315 -0.0472c 1.0226,-1.1327 2.8317,-4.6408 3.3980 -5.9308c 0.0157,-0.0629 0.0472,-0.0787 0.1101 -0.0787c 0.0157,-0.0000 0.3618,0.1416 0.5506 0.1730c -0.7079,1.9035 -1.8721,3.9486 -3.0205 5.7735h 2.4856 v -2.4384 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 577.8656,135.1353 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 567.6715,157.8950 ZM 572.5326,155.2364 c 0.0000,-1.6204 -0.8810,-2.4227 -1.8563 -2.4227c -0.7237,-0.0000 -1.2743,0.1101 -1.8878 0.3618l 0.5034,-4.2947 c 0.5191,0.0472 1.0540,0.0629 1.6046 0.0629c 0.7866,-0.0000 1.6046,-0.0472 2.4541 -0.1416l 0.0944,0.0472 l -0.2360,1.0226 c -0.6135,0.0629 -1.1169,0.0787 -1.5574 0.0787c -0.7079,-0.0000 -1.2428,-0.0629 -1.7934 -0.1259l -0.2989,2.4856 c 0.3304,-0.1259 0.8967,-0.2360 1.5102 -0.2360c 1.6676,-0.0000 2.5957,1.4473 2.5957 2.8946c 0.0000,1.7619 -1.2271,3.1149 -3.0047 3.1149c -0.8967,-0.0000 -2.2024,-0.5034 -2.2024 -1.1169c 0.0000,-0.2989 0.2517,-0.5034 0.5349 -0.5034c 0.3146,-0.0000 0.5191,0.2360 0.7079 0.4877c 0.2360,0.2832 0.4877,0.5978 0.9911 0.5978c 1.0068,-0.0000 1.8406,-0.9439 1.8406 -2.3125ZM 574.5620,157.8950 ZM 576.1981,156.4005 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 578.0072,157.8950 ZM 581.4052,149.2898 c -0.3933,-0.0000 -1.5417,0.2202 -1.5417 1.1799c 0.0000,0.2832 -0.1101,0.7708 -0.5349 0.7708c -0.4090,-0.0000 -0.4405,-0.4562 -0.4405 -0.5034c 0.0000,-0.4877 0.6450,-1.9350 2.8317 -1.9350c 1.5260,-0.0000 1.9822,0.9596 1.9822 1.5889c 0.0000,0.3933 -0.1259,1.1799 -1.5417 2.0766c 0.8810,0.1416 2.0451,0.7866 2.0451 2.4227c 0.0000,2.0766 -1.5732,3.1935 -3.3508 3.1935c -0.8967,-0.0000 -2.1552,-0.3933 -2.1552 -0.9911c 0.0000,-0.2360 0.2360,-0.5034 0.5506 -0.5034c 0.2989,-0.0000 0.4405,0.1573 0.5821 0.3618c 0.1730,0.2674 0.4562,0.6450 1.2113 0.6450c 0.5191,-0.0000 1.9979,-0.5191 1.9979 -2.5013c 0.0000,-1.6833 -1.1799,-1.9507 -2.0294 -1.9507c -0.1416,-0.0000 -0.3146,0.0315 -0.4877 0.0629l -0.0629,-0.4719 c 1.2113,-0.2045 2.2182,-1.3844 2.2182 -2.1080c 0.0000,-0.8967 -0.6293,-1.3372 -1.2743 -1.3372Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 577.8656,166.7559 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 567.6715,189.5156 ZM 572.5326,186.8570 c 0.0000,-1.6204 -0.8810,-2.4227 -1.8563 -2.4227c -0.7237,-0.0000 -1.2743,0.1101 -1.8878 0.3618l 0.5034,-4.2947 c 0.5191,0.0472 1.0540,0.0629 1.6046 0.0629c 0.7866,-0.0000 1.6046,-0.0472 2.4541 -0.1416l 0.0944,0.0472 l -0.2360,1.0226 c -0.6135,0.0629 -1.1169,0.0787 -1.5574 0.0787c -0.7079,-0.0000 -1.2428,-0.0629 -1.7934 -0.1259l -0.2989,2.4856 c 0.3304,-0.1259 0.8967,-0.2360 1.5102 -0.2360c 1.6676,-0.0000 2.5957,1.4473 2.5957 2.8946c 0.0000,1.7619 -1.2271,3.1149 -3.0047 3.1149c -0.8967,-0.0000 -2.2024,-0.5034 -2.2024 -1.1169c 0.0000,-0.2989 0.2517,-0.5034 0.5349 -0.5034c 0.3146,-0.0000 0.5191,0.2360 0.7079 0.4877c 0.2360,0.2832 0.4877,0.5978 0.9911 0.5978c 1.0068,-0.0000 1.8406,-0.9439 1.8406 -2.3125ZM 574.5620,189.5156 ZM 576.1981,188.0211 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 578.0072,189.5156 ZM 578.9196,182.5465 c 0.0000,-0.8967 0.8652,-2.1238 2.5171 -2.1238c 1.2113,-0.0000 2.6272,0.4562 2.6272 2.2654c 0.0000,1.1956 -0.6135,1.7934 -1.4630 2.6114l -1.4945,1.4473 c -0.0787,0.0787 -1.1327,1.1169 -1.1327 1.8563h 2.6744 c 0.5349,-0.0000 0.8180,-0.2674 1.0383 -1.1327l 0.3933,0.0629 l -0.3146,1.9822 h -4.8611 c 0.0000,-0.8810 0.1416,-1.5574 1.6046 -3.0519l 1.1012,-1.0855 c 0.8810,-0.8967 1.2428,-1.6676 1.2428 -2.6272c 0.0000,-1.4316 -0.9754,-1.8406 -1.5102 -1.8406c -1.0855,-0.0000 -1.3844,0.5663 -1.3844 0.9439c 0.0000,0.1259 0.0315,0.2517 0.0629 0.3618c 0.0315,0.1101 0.0629,0.2202 0.0629 0.3461c 0.0000,0.4090 -0.3146,0.5663 -0.5663 0.5663c -0.3461,-0.0000 -0.5978,-0.2674 -0.5978 -0.5821Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 577.8656,198.3764 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 567.6715,221.1362 ZM 572.5326,218.4775 c 0.0000,-1.6204 -0.8810,-2.4227 -1.8563 -2.4227c -0.7237,-0.0000 -1.2743,0.1101 -1.8878 0.3618l 0.5034,-4.2947 c 0.5191,0.0472 1.0540,0.0629 1.6046 0.0629c 0.7866,-0.0000 1.6046,-0.0472 2.4541 -0.1416l 0.0944,0.0472 l -0.2360,1.0226 c -0.6135,0.0629 -1.1169,0.0787 -1.5574 0.0787c -0.7079,-0.0000 -1.2428,-0.0629 -1.7934 -0.1259l -0.2989,2.4856 c 0.3304,-0.1259 0.8967,-0.2360 1.5102 -0.2360c 1.6676,-0.0000 2.5957,1.4473 2.5957 2.8946c 0.0000,1.7619 -1.2271,3.1149 -3.0047 3.1149c -0.8967,-0.0000 -2.2024,-0.5034 -2.2024 -1.1169c 0.0000,-0.2989 0.2517,-0.5034 0.5349 -0.5034c 0.3146,-0.0000 0.5191,0.2360 0.7079 0.4877c 0.2360,0.2832 0.4877,0.5978 0.9911 0.5978c 1.0068,-0.0000 1.8406,-0.9439 1.8406 -2.3125ZM 574.5620,221.1362 ZM 576.1981,219.6416 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 578.0072,221.1362 ZM 580.9647,213.6322 c -0.2989,-0.0000 -0.9911,0.2832 -1.3372 0.4405l -0.1888,-0.4877 c 1.3844,-0.6450 1.9193,-0.9754 2.7058 -1.5417h 0.2989 v 7.9130 c 0.0000,0.5663 0.0787,0.7237 0.5978 0.7237h 0.8180 c 0.0472,-0.0000 0.1259,0.0315 0.1259 0.1259v 0.3461 l -2.1552,-0.0315 l -2.1867,0.0315 v -0.3461 c 0.0157,-0.0472 0.0315,-0.1259 0.1259 -0.1259h 0.9439 c 0.5978,-0.0000 0.5978,-0.2674 0.5978 -0.7237v -5.4117 c 0.0000,-0.5349 0.0000,-0.9124 -0.3461 -0.9124Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 577.8656,229.9970 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 567.6715,252.7567 ZM 572.5326,250.0981 c 0.0000,-1.6204 -0.8810,-2.4227 -1.8563 -2.4227c -0.7237,-0.0000 -1.2743,0.1101 -1.8878 0.3618l 0.5034,-4.2947 c 0.5191,0.0472 1.0540,0.0629 1.6046 0.0629c 0.7866,-0.0000 1.6046,-0.0472 2.4541 -0.1416l 0.0944,0.0472 l -0.2360,1.0226 c -0.6135,0.0629 -1.1169,0.0787 -1.5574 0.0787c -0.7079,-0.0000 -1.2428,-0.0629 -1.7934 -0.1259l -0.2989,2.4856 c 0.3304,-0.1259 0.8967,-0.2360 1.5102 -0.2360c 1.6676,-0.0000 2.5957,1.4473 2.5957 2.8946c 0.0000,1.7619 -1.2271,3.1149 -3.0047 3.1149c -0.8967,-0.0000 -2.2024,-0.5034 -2.2024 -1.1169c 0.0000,-0.2989 0.2517,-0.5034 0.5349 -0.5034c 0.3146,-0.0000 0.5191,0.2360 0.7079 0.4877c 0.2360,0.2832 0.4877,0.5978 0.9911 0.5978c 1.0068,-0.0000 1.8406,-0.9439 1.8406 -2.3125ZM 574.5620,252.7567 ZM 576.1981,251.2622 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 578.0072,252.7567 ZM 581.4524,244.2144 c -0.6765,-0.0000 -1.6676,0.6607 -1.6676 4.3262c 0.0000,1.2900 0.2360,3.8857 1.6204 3.8857c 0.2674,-0.0000 1.0226,-0.1730 1.3529 -1.4001c 0.2045,-0.7551 0.3146,-1.6990 0.3146 -3.0677c 0.0000,-1.9979 -0.5034,-3.1149 -0.9596 -3.5082c -0.1730,-0.1573 -0.4090,-0.2360 -0.6607 -0.2360ZM 581.4524,244.2144 ZM 581.3895,252.9455 c -1.6833,-0.0000 -2.8160,-2.1552 -2.8160 -4.5622c 0.0000,-2.9418 1.4001,-4.7195 2.8789 -4.7195c 0.6765,-0.0000 1.3529,0.4248 1.8091 1.0383c 0.6607,0.8810 1.0068,2.0608 1.0068 3.5396c 0.0000,3.4924 -1.7305,4.7038 -2.8789 4.7038Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 577.8656,261.6175 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 472.8099,94.6539 ZM 476.8686,89.0692 c 0.0000,-0.1101 0.0157,-0.2360 0.1573 -0.3146c 0.1730,-0.1259 0.4562,-0.2674 0.6922 -0.2674c 0.2045,-0.0000 0.2202,0.1730 0.2202 0.4877v 2.5328 h 1.2743 l -0.0944,0.7394 h -1.1799 v 1.3057 c 0.0000,0.4405 0.0629,0.6607 0.5191 0.6607h 0.4248 c 0.0944,-0.0000 0.1101,0.0787 0.1101 0.1101v 0.3461 c 0.0000,-0.0000 -1.0068,-0.0315 -1.6676 -0.0315c -0.5978,-0.0000 -1.5260,0.0315 -1.5260 0.0315v -0.3461 c 0.0000,-0.0315 0.0157,-0.1101 0.1101 -0.1101h 0.4248 c 0.4877,-0.0000 0.5349,-0.2045 0.5349 -0.6607v -1.3057 h -3.0834 c -0.0629,-0.0000 -0.0944,-0.0315 -0.1416 -0.0944l -0.1259,-0.1730 l -0.1888,-0.3304 c -0.0157,-0.0000 -0.0157,-0.0157 -0.0157 -0.0315c 0.0000,-0.0157 0.0157,-0.0315 0.0315 -0.0472c 1.0226,-1.1327 2.8317,-4.6408 3.3980 -5.9308c 0.0157,-0.0629 0.0472,-0.0787 0.1101 -0.0787c 0.0157,-0.0000 0.3618,0.1416 0.5506 0.1730c -0.7079,1.9035 -1.8721,3.9486 -3.0205 5.7735h 2.4856 v -2.4384 ZM 479.7003,94.6539 ZM 481.3364,93.1594 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 483.1455,94.6539 ZM 488.0066,91.9953 c 0.0000,-1.6204 -0.8810,-2.4227 -1.8563 -2.4227c -0.7237,-0.0000 -1.2743,0.1101 -1.8878 0.3618l 0.5034,-4.2947 c 0.5191,0.0472 1.0540,0.0629 1.6046 0.0629c 0.7866,-0.0000 1.6046,-0.0472 2.4541 -0.1416l 0.0944,0.0472 l -0.2360,1.0226 c -0.6135,0.0629 -1.1169,0.0787 -1.5574 0.0787c -0.7079,-0.0000 -1.2428,-0.0629 -1.7934 -0.1259l -0.2989,2.4856 c 0.3304,-0.1259 0.8967,-0.2360 1.5102 -0.2360c 1.6676,-0.0000 2.5957,1.4473 2.5957 2.8946c 0.0000,1.7619 -1.2271,3.1149 -3.0047 3.1149c -0.8967,-0.0000 -2.2024,-0.5034 -2.2024 -1.1169c 0.0000,-0.2989 0.2517,-0.5034 0.5349 -0.5034c 0.3146,-0.0000 0.5191,0.2360 0.7079 0.4877c 0.2360,0.2832 0.4877,0.5978 0.9911 0.5978c 1.0068,-0.0000 1.8406,-0.9439 1.8406 -2.3125Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 483.0040,103.5148 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 472.8099,126.2745 ZM 476.8686,120.6898 c 0.0000,-0.1101 0.0157,-0.2360 0.1573 -0.3146c 0.1730,-0.1259 0.4562,-0.2674 0.6922 -0.2674c 0.2045,-0.0000 0.2202,0.1730 0.2202 0.4877v 2.5328 h 1.2743 l -0.0944,0.7394 h -1.1799 v 1.3057 c 0.0000,0.4405 0.0629,0.6607 0.5191 0.6607h 0.4248 c 0.0944,-0.0000 0.1101,0.0787 0.1101 0.1101v 0.3461 c 0.0000,-0.0000 -1.0068,-0.0315 -1.6676 -0.0315c -0.5978,-0.0000 -1.5260,0.0315 -1.5260 0.0315v -0.3461 c 0.0000,-0.0315 0.0157,-0.1101 0.1101 -0.1101h 0.4248 c 0.4877,-0.0000 0.5349,-0.2045 0.5349 -0.6607v -1.3057 h -3.0834 c -0.0629,-0.0000 -0.0944,-0.0315 -0.1416 -0.0944l -0.1259,-0.1730 l -0.1888,-0.3304 c -0.0157,-0.0000 -0.0157,-0.0157 -0.0157 -0.0315c 0.0000,-0.0157 0.0157,-0.0315 0.0315 -0.0472c 1.0226,-1.1327 2.8317,-4.6408 3.3980 -5.9308c 0.0157,-0.0629 0.0472,-0.0787 0.1101 -0.0787c 0.0157,-0.0000 0.3618,0.1416 0.5506 0.1730c -0.7079,1.9035 -1.8721,3.9486 -3.0205 5.7735h 2.4856 v -2.4384 ZM 479.7003,126.2745 ZM 481.3364,124.7800 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 483.1455,126.2745 ZM 487.2043,120.6898 c 0.0000,-0.1101 0.0157,-0.2360 0.1573 -0.3146c 0.1730,-0.1259 0.4562,-0.2674 0.6922 -0.2674c 0.2045,-0.0000 0.2202,0.1730 0.2202 0.4877v 2.5328 h 1.2743 l -0.0944,0.7394 h -1.1799 v 1.3057 c 0.0000,0.4405 0.0629,0.6607 0.5191 0.6607h 0.4248 c 0.0944,-0.0000 0.1101,0.0787 0.1101 0.1101v 0.3461 c 0.0000,-0.0000 -1.0068,-0.0315 -1.6676 -0.0315c -0.5978,-0.0000 -1.5260,0.0315 -1.5260 0.0315v -0.3461 c 0.0000,-0.0315 0.0157,-0.1101 0.1101 -0.1101h 0.4248 c 0.4877,-0.0000 0.5349,-0.2045 0.5349 -0.6607v -1.3057 h -3.0834 c -0.0629,-0.0000 -0.0944,-0.0315 -0.1416 -0.0944l -0.1259,-0.1730 l -0.1888,-0.3304 c -0.0157,-0.0000 -0.0157,-0.0157 -0.0157 -0.0315c 0.0000,-0.0157 0.0157,-0.0315 0.0315 -0.0472c 1.0226,-1.1327 2.8317,-4.6408 3.3980 -5.9308c 0.0157,-0.0629 0.0472,-0.0787 0.1101 -0.0787c 0.0157,-0.0000 0.3618,0.1416 0.5506 0.1730c -0.7079,1.9035 -1.8721,3.9486 -3.0205 5.7735h 2.4856 v -2.4384 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 483.0040,135.1353 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 472.8099,157.8950 ZM 476.8686,152.3103 c 0.0000,-0.1101 0.0157,-0.2360 0.1573 -0.3146c 0.1730,-0.1259 0.4562,-0.2674 0.6922 -0.2674c 0.2045,-0.0000 0.2202,0.1730 0.2202 0.4877v 2.5328 h 1.2743 l -0.0944,0.7394 h -1.1799 v 1.3057 c 0.0000,0.4405 0.0629,0.6607 0.5191 0.6607h 0.4248 c 0.0944,-0.0000 0.1101,0.0787 0.1101 0.1101v 0.3461 c 0.0000,-0.0000 -1.0068,-0.0315 -1.6676 -0.0315c -0.5978,-0.0000 -1.5260,0.0315 -1.5260 0.0315v -0.3461 c 0.0000,-0.0315 0.0157,-0.1101 0.1101 -0.1101h 0.4248 c 0.4877,-0.0000 0.5349,-0.2045 0.5349 -0.6607v -1.3057 h -3.0834 c -0.0629,-0.0000 -0.0944,-0.0315 -0.1416 -0.0944l -0.1259,-0.1730 l -0.1888,-0.3304 c -0.0157,-0.0000 -0.0157,-0.0157 -0.0157 -0.0315c 0.0000,-0.0157 0.0157,-0.0315 0.0315 -0.0472c 1.0226,-1.1327 2.8317,-4.6408 3.3980 -5.9308c 0.0157,-0.0629 0.0472,-0.0787 0.1101 -0.0787c 0.0157,-0.0000 0.3618,0.1416 0.5506 0.1730c -0.7079,1.9035 -1.8721,3.9486 -3.0205 5.7735h 2.4856 v -2.4384 ZM 479.7003,157.8950 ZM 481.3364,156.4005 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 483.1455,157.8950 ZM 486.5436,149.2898 c -0.3933,-0.0000 -1.5417,0.2202 -1.5417 1.1799c 0.0000,0.2832 -0.1101,0.7708 -0.5349 0.7708c -0.4090,-0.0000 -0.4405,-0.4562 -0.4405 -0.5034c 0.0000,-0.4877 0.6450,-1.9350 2.8317 -1.9350c 1.5260,-0.0000 1.9822,0.9596 1.9822 1.5889c 0.0000,0.3933 -0.1259,1.1799 -1.5417 2.0766c 0.8810,0.1416 2.0451,0.7866 2.0451 2.4227c 0.0000,2.0766 -1.5732,3.1935 -3.3508 3.1935c -0.8967,-0.0000 -2.1552,-0.3933 -2.1552 -0.9911c 0.0000,-0.2360 0.2360,-0.5034 0.5506 -0.5034c 0.2989,-0.0000 0.4405,0.1573 0.5821 0.3618c 0.1730,0.2674 0.4562,0.6450 1.2113 0.6450c 0.5191,-0.0000 1.9979,-0.5191 1.9979 -2.5013c 0.0000,-1.6833 -1.1799,-1.9507 -2.0294 -1.9507c -0.1416,-0.0000 -0.3146,0.0315 -0.4877 0.0629l -0.0629,-0.4719 c 1.2113,-0.2045 2.2182,-1.3844 2.2182 -2.1080c 0.0000,-0.8967 -0.6293,-1.3372 -1.2743 -1.3372Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 483.0040,166.7559 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 472.8099,189.5156 ZM 476.8686,183.9309 c 0.0000,-0.1101 0.0157,-0.2360 0.1573 -0.3146c 0.1730,-0.1259 0.4562,-0.2674 0.6922 -0.2674c 0.2045,-0.0000 0.2202,0.1730 0.2202 0.4877v 2.5328 h 1.2743 l -0.0944,0.7394 h -1.1799 v 1.3057 c 0.0000,0.4405 0.0629,0.6607 0.5191 0.6607h 0.4248 c 0.0944,-0.0000 0.1101,0.0787 0.1101 0.1101v 0.3461 c 0.0000,-0.0000 -1.0068,-0.0315 -1.6676 -0.0315c -0.5978,-0.0000 -1.5260,0.0315 -1.5260 0.0315v -0.3461 c 0.0000,-0.0315 0.0157,-0.1101 0.1101 -0.1101h 0.4248 c 0.4877,-0.0000 0.5349,-0.2045 0.5349 -0.6607v -1.3057 h -3.0834 c -0.0629,-0.0000 -0.0944,-0.0315 -0.1416 -0.0944l -0.1259,-0.1730 l -0.1888,-0.3304 c -0.0157,-0.0000 -0.0157,-0.0157 -0.0157 -0.0315c 0.0000,-0.0157 0.0157,-0.0315 0.0315 -0.0472c 1.0226,-1.1327 2.8317,-4.6408 3.3980 -5.9308c 0.0157,-0.0629 0.0472,-0.0787 0.1101 -0.0787c 0.0157,-0.0000 0.3618,0.1416 0.5506 0.1730c -0.7079,1.9035 -1.8721,3.9486 -3.0205 5.7735h 2.4856 v -2.4384 ZM 479.7003,189.5156 ZM 481.3364,188.0211 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 483.1455,189.5156 ZM 484.0580,182.5465 c 0.0000,-0.8967 0.8652,-2.1238 2.5171 -2.1238c 1.2113,-0.0000 2.6272,0.4562 2.6272 2.2654c 0.0000,1.1956 -0.6135,1.7934 -1.4630 2.6114l -1.4945,1.4473 c -0.0787,0.0787 -1.1327,1.1169 -1.1327 1.8563h 2.6744 c 0.5349,-0.0000 0.8180,-0.2674 1.0383 -1.1327l 0.3933,0.0629 l -0.3146,1.9822 h -4.8611 c 0.0000,-0.8810 0.1416,-1.5574 1.6046 -3.0519l 1.1012,-1.0855 c 0.8810,-0.8967 1.2428,-1.6676 1.2428 -2.6272c 0.0000,-1.4316 -0.9754,-1.8406 -1.5102 -1.8406c -1.0855,-0.0000 -1.3844,0.5663 -1.3844 0.9439c 0.0000,0.1259 0.0315,0.2517 0.0629 0.3618c 0.0315,0.1101 0.0629,0.2202 0.0629 0.3461c 0.0000,0.4090 -0.3146,0.5663 -0.5663 0.5663c -0.3461,-0.0000 -0.5978,-0.2674 -0.5978 -0.5821Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 483.0040,198.3764 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 472.8099,221.1362 ZM 476.8686,215.5514 c 0.0000,-0.1101 0.0157,-0.2360 0.1573 -0.3146c 0.1730,-0.1259 0.4562,-0.2674 0.6922 -0.2674c 0.2045,-0.0000 0.2202,0.1730 0.2202 0.4877v 2.5328 h 1.2743 l -0.0944,0.7394 h -1.1799 v 1.3057 c 0.0000,0.4405 0.0629,0.6607 0.5191 0.6607h 0.4248 c 0.0944,-0.0000 0.1101,0.0787 0.1101 0.1101v 0.3461 c 0.0000,-0.0000 -1.0068,-0.0315 -1.6676 -0.0315c -0.5978,-0.0000 -1.5260,0.0315 -1.5260 0.0315v -0.3461 c 0.0000,-0.0315 0.0157,-0.1101 0.1101 -0.1101h 0.4248 c 0.4877,-0.0000 0.5349,-0.2045 0.5349 -0.6607v -1.3057 h -3.0834 c -0.0629,-0.0000 -0.0944,-0.0315 -0.1416 -0.0944l -0.1259,-0.1730 l -0.1888,-0.3304 c -0.0157,-0.0000 -0.0157,-0.0157 -0.0157 -0.0315c 0.0000,-0.0157 0.0157,-0.0315 0.0315 -0.0472c 1.0226,-1.1327 2.8317,-4.6408 3.3980 -5.9308c 0.0157,-0.0629 0.0472,-0.0787 0.1101 -0.0787c 0.0157,-0.0000 0.3618,0.1416 0.5506 0.1730c -0.7079,1.9035 -1.8721,3.9486 -3.0205 5.7735h 2.4856 v -2.4384 ZM 479.7003,221.1362 ZM 481.3364,219.6416 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 483.1455,221.1362 ZM 486.1031,213.6322 c -0.2989,-0.0000 -0.9911,0.2832 -1.3372 0.4405l -0.1888,-0.4877 c 1.3844,-0.6450 1.9193,-0.9754 2.7058 -1.5417h 0.2989 v 7.9130 c 0.0000,0.5663 0.0787,0.7237 0.5978 0.7237h 0.8180 c 0.0472,-0.0000 0.1259,0.0315 0.1259 0.1259v 0.3461 l -2.1552,-0.0315 l -2.1867,0.0315 v -0.3461 c 0.0157,-0.0472 0.0315,-0.1259 0.1259 -0.1259h 0.9439 c 0.5978,-0.0000 0.5978,-0.2674 0.5978 -0.7237v -5.4117 c 0.0000,-0.5349 0.0000,-0.9124 -0.3461 -0.9124Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 483.0040,229.9970 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 472.8099,252.7567 ZM 476.8686,247.1720 c 0.0000,-0.1101 0.0157,-0.2360 0.1573 -0.3146c 0.1730,-0.1259 0.4562,-0.2674 0.6922 -0.2674c 0.2045,-0.0000 0.2202,0.1730 0.2202 0.4877v 2.5328 h 1.2743 l -0.0944,0.7394 h -1.1799 v 1.3057 c 0.0000,0.4405 0.0629,0.6607 0.5191 0.6607h 0.4248 c 0.0944,-0.0000 0.1101,0.0787 0.1101 0.1101v 0.3461 c 0.0000,-0.0000 -1.0068,-0.0315 -1.6676 -0.0315c -0.5978,-0.0000 -1.5260,0.0315 -1.5260 0.0315v -0.3461 c 0.0000,-0.0315 0.0157,-0.1101 0.1101 -0.1101h 0.4248 c 0.4877,-0.0000 0.5349,-0.2045 0.5349 -0.6607v -1.3057 h -3.0834 c -0.0629,-0.0000 -0.0944,-0.0315 -0.1416 -0.0944l -0.1259,-0.1730 l -0.1888,-0.3304 c -0.0157,-0.0000 -0.0157,-0.0157 -0.0157 -0.0315c 0.0000,-0.0157 0.0157,-0.0315 0.0315 -0.0472c 1.0226,-1.1327 2.8317,-4.6408 3.3980 -5.9308c 0.0157,-0.0629 0.0472,-0.0787 0.1101 -0.0787c 0.0157,-0.0000 0.3618,0.1416 0.5506 0.1730c -0.7079,1.9035 -1.8721,3.9486 -3.0205 5.7735h 2.4856 v -2.4384 ZM 479.7003,252.7567 ZM 481.3364,251.2622 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 483.1455,252.7567 ZM 486.5908,244.2144 c -0.6765,-0.0000 -1.6676,0.6607 -1.6676 4.3262c 0.0000,1.2900 0.2360,3.8857 1.6204 3.8857c 0.2674,-0.0000 1.0226,-0.1730 1.3529 -1.4001c 0.2045,-0.7551 0.3146,-1.6990 0.3146 -3.0677c 0.0000,-1.9979 -0.5034,-3.1149 -0.9596 -3.5082c -0.1730,-0.1573 -0.4090,-0.2360 -0.6607 -0.2360ZM 486.5908,244.2144 ZM 486.5278,252.9455 c -1.6833,-0.0000 -2.8160,-2.1552 -2.8160 -4.5622c 0.0000,-2.9418 1.4001,-4.7195 2.8789 -4.7195c 0.6765,-0.0000 1.3529,0.4248 1.8091 1.0383c 0.6607,0.8810 1.0068,2.0608 1.0068 3.5396c 0.0000,3.4924 -1.7305,4.7038 -2.8789 4.7038Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 483.0040,261.6175 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 377.9482,94.6539 ZM 381.3462,86.0487 c -0.3933,-0.0000 -1.5417,0.2202 -1.5417 1.1799c 0.0000,0.2832 -0.1101,0.7708 -0.5349 0.7708c -0.4090,-0.0000 -0.4405,-0.4562 -0.4405 -0.5034c 0.0000,-0.4877 0.6450,-1.9350 2.8317 -1.9350c 1.5260,-0.0000 1.9822,0.9596 1.9822 1.5889c 0.0000,0.3933 -0.1259,1.1799 -1.5417 2.0766c 0.8810,0.1416 2.0451,0.7866 2.0451 2.4227c 0.0000,2.0766 -1.5732,3.1935 -3.3508 3.1935c -0.8967,-0.0000 -2.1552,-0.3933 -2.1552 -0.9911c 0.0000,-0.2360 0.2360,-0.5034 0.5506 -0.5034c 0.2989,-0.0000 0.4405,0.1573 0.5821 0.3618c 0.1730,0.2674 0.4562,0.6450 1.2113 0.6450c 0.5191,-0.0000 1.9979,-0.5191 1.9979 -2.5013c 0.0000,-1.6833 -1.1799,-1.9507 -2.0294 -1.9507c -0.1416,-0.0000 -0.3146,0.0315 -0.4877 0.0629l -0.0629,-0.4719 c 1.2113,-0.2045 2.2182,-1.3844 2.2182 -2.1080c 0.0000,-0.8967 -0.6293,-1.3372 -1.2743 -1.3372ZM 384.8387,94.6539 ZM 386.4747,93.1594 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 388.2839,94.6539 ZM 393.1449,91.9953 c 0.0000,-1.6204 -0.8810,-2.4227 -1.8563 -2.4227c -0.7237,-0.0000 -1.2743,0.1101 -1.8878 0.3618l 0.5034,-4.2947 c 0.5191,0.0472 1.0540,0.0629 1.6046 0.0629c 0.7866,-0.0000 1.6046,-0.0472 2.4541 -0.1416l 0.0944,0.0472 l -0.2360,1.0226 c -0.6135,0.0629 -1.1169,0.0787 -1.5574 0.0787c -0.7079,-0.0000 -1.2428,-0.0629 -1.7934 -0.1259l -0.2989,2.4856 c 0.3304,-0.1259 0.8967,-0.2360 1.5102 -0.2360c 1.6676,-0.0000 2.5957,1.4473 2.5957 2.8946c 0.0000,1.7619 -1.2271,3.1149 -3.0047 3.1149c -0.8967,-0.0000 -2.2024,-0.5034 -2.2024 -1.1169c 0.0000,-0.2989 0.2517,-0.5034 0.5349 -0.5034c 0.3146,-0.0000 0.5191,0.2360 0.7079 0.4877c 0.2360,0.2832 0.4877,0.5978 0.9911 0.5978c 1.0068,-0.0000 1.8406,-0.9439 1.8406 -2.3125Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 388.1423,103.5148 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 377.9482,126.2745 ZM 381.3462,117.6693 c -0.3933,-0.0000 -1.5417,0.2202 -1.5417 1.1799c 0.0000,0.2832 -0.1101,0.7708 -0.5349 0.7708c -0.4090,-0.0000 -0.4405,-0.4562 -0.4405 -0.5034c 0.0000,-0.4877 0.6450,-1.9350 2.8317 -1.9350c 1.5260,-0.0000 1.9822,0.9596 1.9822 1.5889c 0.0000,0.3933 -0.1259,1.1799 -1.5417 2.0766c 0.8810,0.1416 2.0451,0.7866 2.0451 2.4227c 0.0000,2.0766 -1.5732,3.1935 -3.3508 3.1935c -0.8967,-0.0000 -2.1552,-0.3933 -2.1552 -0.9911c 0.0000,-0.2360 0.2360,-0.5034 0.5506 -0.5034c 0.2989,-0.0000 0.4405,0.1573 0.5821 0.3618c 0.1730,0.2674 0.4562,0.6450 1.2113 0.6450c 0.5191,-0.0000 1.9979,-0.5191 1.9979 -2.5013c 0.0000,-1.6833 -1.1799,-1.9507 -2.0294 -1.9507c -0.1416,-0.0000 -0.3146,0.0315 -0.4877 0.0629l -0.0629,-0.4719 c 1.2113,-0.2045 2.2182,-1.3844 2.2182 -2.1080c 0.0000,-0.8967 -0.6293,-1.3372 -1.2743 -1.3372ZM 384.8387,126.2745 ZM 386.4747,124.7800 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 388.2839,126.2745 ZM 392.3426,120.6898 c 0.0000,-0.1101 0.0157,-0.2360 0.1573 -0.3146c 0.1730,-0.1259 0.4562,-0.2674 0.6922 -0.2674c 0.2045,-0.0000 0.2202,0.1730 0.2202 0.4877v 2.5328 h 1.2743 l -0.0944,0.7394 h -1.1799 v 1.3057 c 0.0000,0.4405 0.0629,0.6607 0.5191 0.6607h 0.4248 c 0.0944,-0.0000 0.1101,0.0787 0.1101 0.1101v 0.3461 c 0.0000,-0.0000 -1.0068,-0.0315 -1.6676 -0.0315c -0.5978,-0.0000 -1.5260,0.0315 -1.5260 0.0315v -0.3461 c 0.0000,-0.0315 0.0157,-0.1101 0.1101 -0.1101h 0.4248 c 0.4877,-0.0000 0.5349,-0.2045 0.5349 -0.6607v -1.3057 h -3.0834 c -0.0629,-0.0000 -0.0944,-0.0315 -0.1416 -0.0944l -0.1259,-0.1730 l -0.1888,-0.3304 c -0.0157,-0.0000 -0.0157,-0.0157 -0.0157 -0.0315c 0.0000,-0.0157 0.0157,-0.0315 0.0315 -0.0472c 1.0226,-1.1327 2.8317,-4.6408 3.3980 -5.9308c 0.0157,-0.0629 0.0472,-0.0787 0.1101 -0.0787c 0.0157,-0.0000 0.3618,0.1416 0.5506 0.1730c -0.7079,1.9035 -1.8721,3.9486 -3.0205 5.7735h 2.4856 v -2.4384 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 388.1423,135.1353 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 377.9482,157.8950 ZM 381.3462,149.2898 c -0.3933,-0.0000 -1.5417,0.2202 -1.5417 1.1799c 0.0000,0.2832 -0.1101,0.7708 -0.5349 0.7708c -0.4090,-0.0000 -0.4405,-0.4562 -0.4405 -0.5034c 0.0000,-0.4877 0.6450,-1.9350 2.8317 -1.9350c 1.5260,-0.0000 1.9822,0.9596 1.9822 1.5889c 0.0000,0.3933 -0.1259,1.1799 -1.5417 2.0766c 0.8810,0.1416 2.0451,0.7866 2.0451 2.4227c 0.0000,2.0766 -1.5732,3.1935 -3.3508 3.1935c -0.8967,-0.0000 -2.1552,-0.3933 -2.1552 -0.9911c 0.0000,-0.2360 0.2360,-0.5034 0.5506 -0.5034c 0.2989,-0.0000 0.4405,0.1573 0.5821 0.3618c 0.1730,0.2674 0.4562,0.6450 1.2113 0.6450c 0.5191,-0.0000 1.9979,-0.5191 1.9979 -2.5013c 0.0000,-1.6833 -1.1799,-1.9507 -2.0294 -1.9507c -0.1416,-0.0000 -0.3146,0.0315 -0.4877 0.0629l -0.0629,-0.4719 c 1.2113,-0.2045 2.2182,-1.3844 2.2182 -2.1080c 0.0000,-0.8967 -0.6293,-1.3372 -1.2743 -1.3372ZM 384.8387,157.8950 ZM 386.4747,156.4005 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 388.2839,157.8950 ZM 391.6819,149.2898 c -0.3933,-0.0000 -1.5417,0.2202 -1.5417 1.1799c 0.0000,0.2832 -0.1101,0.7708 -0.5349 0.7708c -0.4090,-0.0000 -0.4405,-0.4562 -0.4405 -0.5034c 0.0000,-0.4877 0.6450,-1.9350 2.8317 -1.9350c 1.5260,-0.0000 1.9822,0.9596 1.9822 1.5889c 0.0000,0.3933 -0.1259,1.1799 -1.5417 2.0766c 0.8810,0.1416 2.0451,0.7866 2.0451 2.4227c 0.0000,2.0766 -1.5732,3.1935 -3.3508 3.1935c -0.8967,-0.0000 -2.1552,-0.3933 -2.1552 -0.9911c 0.0000,-0.2360 0.2360,-0.5034 0.5506 -0.5034c 0.2989,-0.0000 0.4405,0.1573 0.5821 0.3618c 0.1730,0.2674 0.4562,0.6450 1.2113 0.6450c 0.5191,-0.0000 1.9979,-0.5191 1.9979 -2.5013c 0.0000,-1.6833 -1.1799,-1.9507 -2.0294 -1.9507c -0.1416,-0.0000 -0.3146,0.0315 -0.4877 0.0629l -0.0629,-0.4719 c 1.2113,-0.2045 2.2182,-1.3844 2.2182 -2.1080c 0.0000,-0.8967 -0.6293,-1.3372 -1.2743 -1.3372Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 388.1423,166.7559 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 377.9482,189.5156 ZM 381.3462,180.9104 c -0.3933,-0.0000 -1.5417,0.2202 -1.5417 1.1799c 0.0000,0.2832 -0.1101,0.7708 -0.5349 0.7708c -0.4090,-0.0000 -0.4405,-0.4562 -0.4405 -0.5034c 0.0000,-0.4877 0.6450,-1.9350 2.8317 -1.9350c 1.5260,-0.0000 1.9822,0.9596 1.9822 1.5889c 0.0000,0.3933 -0.1259,1.1799 -1.5417 2.0766c 0.8810,0.1416 2.0451,0.7866 2.0451 2.4227c 0.0000,2.0766 -1.5732,3.1935 -3.3508 3.1935c -0.8967,-0.0000 -2.1552,-0.3933 -2.1552 -0.9911c 0.0000,-0.2360 0.2360,-0.5034 0.5506 -0.5034c 0.2989,-0.0000 0.4405,0.1573 0.5821 0.3618c 0.1730,0.2674 0.4562,0.6450 1.2113 0.6450c 0.5191,-0.0000 1.9979,-0.5191 1.9979 -2.5013c 0.0000,-1.6833 -1.1799,-1.9507 -2.0294 -1.9507c -0.1416,-0.0000 -0.3146,0.0315 -0.4877 0.0629l -0.0629,-0.4719 c 1.2113,-0.2045 2.2182,-1.3844 2.2182 -2.1080c 0.0000,-0.8967 -0.6293,-1.3372 -1.2743 -1.3372ZM 384.8387,189.5156 ZM 386.4747,188.0211 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 388.2839,189.5156 ZM 389.1963,182.5465 c 0.0000,-0.8967 0.8652,-2.1238 2.5171 -2.1238c 1.2113,-0.0000 2.6272,0.4562 2.6272 2.2654c 0.0000,1.1956 -0.6135,1.7934 -1.4630 2.6114l -1.4945,1.4473 c -0.0787,0.0787 -1.1327,1.1169 -1.1327 1.8563h 2.6744 c 0.5349,-0.0000 0.8180,-0.2674 1.0383 -1.1327l 0.3933,0.0629 l -0.3146,1.9822 h -4.8611 c 0.0000,-0.8810 0.1416,-1.5574 1.6046 -3.0519l 1.1012,-1.0855 c 0.8810,-0.8967 1.2428,-1.6676 1.2428 -2.6272c 0.0000,-1.4316 -0.9754,-1.8406 -1.5102 -1.8406c -1.0855,-0.0000 -1.3844,0.5663 -1.3844 0.9439c 0.0000,0.1259 0.0315,0.2517 0.0629 0.3618c 0.0315,0.1101 0.0629,0.2202 0.0629 0.3461c 0.0000,0.4090 -0.3146,0.5663 -0.5663 0.5663c -0.3461,-0.0000 -0.5978,-0.2674 -0.5978 -0.5821Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 388.1423,198.3764 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 377.9482,221.1362 ZM 381.3462,212.5310 c -0.3933,-0.0000 -1.5417,0.2202 -1.5417 1.1799c 0.0000,0.2832 -0.1101,0.7708 -0.5349 0.7708c -0.4090,-0.0000 -0.4405,-0.4562 -0.4405 -0.5034c 0.0000,-0.4877 0.6450,-1.9350 2.8317 -1.9350c 1.5260,-0.0000 1.9822,0.9596 1.9822 1.5889c 0.0000,0.3933 -0.1259,1.1799 -1.5417 2.0766c 0.8810,0.1416 2.0451,0.7866 2.0451 2.4227c 0.0000,2.0766 -1.5732,3.1935 -3.3508 3.1935c -0.8967,-0.0000 -2.1552,-0.3933 -2.1552 -0.9911c 0.0000,-0.2360 0.2360,-0.5034 0.5506 -0.5034c 0.2989,-0.0000 0.4405,0.1573 0.5821 0.3618c 0.1730,0.2674 0.4562,0.6450 1.2113 0.6450c 0.5191,-0.0000 1.9979,-0.5191 1.9979 -2.5013c 0.0000,-1.6833 -1.1799,-1.9507 -2.0294 -1.9507c -0.1416,-0.0000 -0.3146,0.0315 -0.4877 0.0629l -0.0629,-0.4719 c 1.2113,-0.2045 2.2182,-1.3844 2.2182 -2.1080c 0.0000,-0.8967 -0.6293,-1.3372 -1.2743 -1.3372ZM 384.8387,221.1362 ZM 386.4747,219.6416 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 388.2839,221.1362 ZM 391.2414,213.6322 c -0.2989,-0.0000 -0.9911,0.2832 -1.3372 0.4405l -0.1888,-0.4877 c 1.3844,-0.6450 1.9193,-0.9754 2.7058 -1.5417h 0.2989 v 7.9130 c 0.0000,0.5663 0.0787,0.7237 0.5978 0.7237h 0.8180 c 0.0472,-0.0000 0.1259,0.0315 0.1259 0.1259v 0.3461 l -2.1552,-0.0315 l -2.1867,0.0315 v -0.3461 c 0.0157,-0.0472 0.0315,-0.1259 0.1259 -0.1259h 0.9439 c 0.5978,-0.0000 0.5978,-0.2674 0.5978 -0.7237v -5.4117 c 0.0000,-0.5349 0.0000,-0.9124 -0.3461 -0.9124Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 388.1423,229.9970 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 377.9482,252.7567 ZM 381.3462,244.1515 c -0.3933,-0.0000 -1.5417,0.2202 -1.5417 1.1799c 0.0000,0.2832 -0.1101,0.7708 -0.5349 0.7708c -0.4090,-0.0000 -0.4405,-0.4562 -0.4405 -0.5034c 0.0000,-0.4877 0.6450,-1.9350 2.8317 -1.9350c 1.5260,-0.0000 1.9822,0.9596 1.9822 1.5889c 0.0000,0.3933 -0.1259,1.1799 -1.5417 2.0766c 0.8810,0.1416 2.0451,0.7866 2.0451 2.4227c 0.0000,2.0766 -1.5732,3.1935 -3.3508 3.1935c -0.8967,-0.0000 -2.1552,-0.3933 -2.1552 -0.9911c 0.0000,-0.2360 0.2360,-0.5034 0.5506 -0.5034c 0.2989,-0.0000 0.4405,0.1573 0.5821 0.3618c 0.1730,0.2674 0.4562,0.6450 1.2113 0.6450c 0.5191,-0.0000 1.9979,-0.5191 1.9979 -2.5013c 0.0000,-1.6833 -1.1799,-1.9507 -2.0294 -1.9507c -0.1416,-0.0000 -0.3146,0.0315 -0.4877 0.0629l -0.0629,-0.4719 c 1.2113,-0.2045 2.2182,-1.3844 2.2182 -2.1080c 0.0000,-0.8967 -0.6293,-1.3372 -1.2743 -1.3372ZM 384.8387,252.7567 ZM 386.4747,251.2622 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 388.2839,252.7567 ZM 391.7291,244.2144 c -0.6765,-0.0000 -1.6676,0.6607 -1.6676 4.3262c 0.0000,1.2900 0.2360,3.8857 1.6204 3.8857c 0.2674,-0.0000 1.0226,-0.1730 1.3529 -1.4001c 0.2045,-0.7551 0.3146,-1.6990 0.3146 -3.0677c 0.0000,-1.9979 -0.5034,-3.1149 -0.9596 -3.5082c -0.1730,-0.1573 -0.4090,-0.2360 -0.6607 -0.2360ZM 391.7291,244.2144 ZM 391.6662,252.9455 c -1.6833,-0.0000 -2.8160,-2.1552 -2.8160 -4.5622c 0.0000,-2.9418 1.4001,-4.7195 2.8789 -4.7195c 0.6765,-0.0000 1.3529,0.4248 1.8091 1.0383c 0.6607,0.8810 1.0068,2.0608 1.0068 3.5396c 0.0000,3.4924 -1.7305,4.7038 -2.8789 4.7038Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 388.1423,261.6175 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 283.0865,94.6539 ZM 283.9990,87.6848 c 0.0000,-0.8967 0.8652,-2.1238 2.5171 -2.1238c 1.2113,-0.0000 2.6272,0.4562 2.6272 2.2654c 0.0000,1.1956 -0.6135,1.7934 -1.4630 2.6114l -1.4945,1.4473 c -0.0787,0.0787 -1.1327,1.1169 -1.1327 1.8563h 2.6744 c 0.5349,-0.0000 0.8180,-0.2674 1.0383 -1.1327l 0.3933,0.0629 l -0.3146,1.9822 h -4.8611 c 0.0000,-0.8810 0.1416,-1.5574 1.6046 -3.0519l 1.1012,-1.0855 c 0.8810,-0.8967 1.2428,-1.6676 1.2428 -2.6272c 0.0000,-1.4316 -0.9754,-1.8406 -1.5102 -1.8406c -1.0855,-0.0000 -1.3844,0.5663 -1.3844 0.9439c 0.0000,0.1259 0.0315,0.2517 0.0629 0.3618c 0.0315,0.1101 0.0629,0.2202 0.0629 0.3461c 0.0000,0.4090 -0.3146,0.5663 -0.5663 0.5663c -0.3461,-0.0000 -0.5978,-0.2674 -0.5978 -0.5821ZM 289.9770,94.6539 ZM 291.6131,93.1594 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 293.4222,94.6539 ZM 298.2833,91.9953 c 0.0000,-1.6204 -0.8810,-2.4227 -1.8563 -2.4227c -0.7237,-0.0000 -1.2743,0.1101 -1.8878 0.3618l 0.5034,-4.2947 c 0.5191,0.0472 1.0540,0.0629 1.6046 0.0629c 0.7866,-0.0000 1.6046,-0.0472 2.4541 -0.1416l 0.0944,0.0472 l -0.2360,1.0226 c -0.6135,0.0629 -1.1169,0.0787 -1.5574 0.0787c -0.7079,-0.0000 -1.2428,-0.0629 -1.7934 -0.1259l -0.2989,2.4856 c 0.3304,-0.1259 0.8967,-0.2360 1.5102 -0.2360c 1.6676,-0.0000 2.5957,1.4473 2.5957 2.8946c 0.0000,1.7619 -1.2271,3.1149 -3.0047 3.1149c -0.8967,-0.0000 -2.2024,-0.5034 -2.2024 -1.1169c 0.0000,-0.2989 0.2517,-0.5034 0.5349 -0.5034c 0.3146,-0.0000 0.5191,0.2360 0.7079 0.4877c 0.2360,0.2832 0.4877,0.5978 0.9911 0.5978c 1.0068,-0.0000 1.8406,-0.9439 1.8406 -2.3125Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 293.2806,103.5148 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 283.0865,126.2745 ZM 283.9990,119.3054 c 0.0000,-0.8967 0.8652,-2.1238 2.5171 -2.1238c 1.2113,-0.0000 2.6272,0.4562 2.6272 2.2654c 0.0000,1.1956 -0.6135,1.7934 -1.4630 2.6114l -1.4945,1.4473 c -0.0787,0.0787 -1.1327,1.1169 -1.1327 1.8563h 2.6744 c 0.5349,-0.0000 0.8180,-0.2674 1.0383 -1.1327l 0.3933,0.0629 l -0.3146,1.9822 h -4.8611 c 0.0000,-0.8810 0.1416,-1.5574 1.6046 -3.0519l 1.1012,-1.0855 c 0.8810,-0.8967 1.2428,-1.6676 1.2428 -2.6272c 0.0000,-1.4316 -0.9754,-1.8406 -1.5102 -1.8406c -1.0855,-0.0000 -1.3844,0.5663 -1.3844 0.9439c 0.0000,0.1259 0.0315,0.2517 0.0629 0.3618c 0.0315,0.1101 0.0629,0.2202 0.0629 0.3461c 0.0000,0.4090 -0.3146,0.5663 -0.5663 0.5663c -0.3461,-0.0000 -0.5978,-0.2674 -0.5978 -0.5821ZM 289.9770,126.2745 ZM 291.6131,124.7800 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 293.4222,126.2745 ZM 297.4810,120.6898 c 0.0000,-0.1101 0.0157,-0.2360 0.1573 -0.3146c 0.1730,-0.1259 0.4562,-0.2674 0.6922 -0.2674c 0.2045,-0.0000 0.2202,0.1730 0.2202 0.4877v 2.5328 h 1.2743 l -0.0944,0.7394 h -1.1799 v 1.3057 c 0.0000,0.4405 0.0629,0.6607 0.5191 0.6607h 0.4248 c 0.0944,-0.0000 0.1101,0.0787 0.1101 0.1101v 0.3461 c 0.0000,-0.0000 -1.0068,-0.0315 -1.6676 -0.0315c -0.5978,-0.0000 -1.5260,0.0315 -1.5260 0.0315v -0.3461 c 0.0000,-0.0315 0.0157,-0.1101 0.1101 -0.1101h 0.4248 c 0.4877,-0.0000 0.5349,-0.2045 0.5349 -0.6607v -1.3057 h -3.0834 c -0.0629,-0.0000 -0.0944,-0.0315 -0.1416 -0.0944l -0.1259,-0.1730 l -0.1888,-0.3304 c -0.0157,-0.0000 -0.0157,-0.0157 -0.0157 -0.0315c 0.0000,-0.0157 0.0157,-0.0315 0.0315 -0.0472c 1.0226,-1.1327 2.8317,-4.6408 3.3980 -5.9308c 0.0157,-0.0629 0.0472,-0.0787 0.1101 -0.0787c 0.0157,-0.0000 0.3618,0.1416 0.5506 0.1730c -0.7079,1.9035 -1.8721,3.9486 -3.0205 5.7735h 2.4856 v -2.4384 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 293.2806,135.1353 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 283.0865,157.8950 ZM 283.9990,150.9259 c 0.0000,-0.8967 0.8652,-2.1238 2.5171 -2.1238c 1.2113,-0.0000 2.6272,0.4562 2.6272 2.2654c 0.0000,1.1956 -0.6135,1.7934 -1.4630 2.6114l -1.4945,1.4473 c -0.0787,0.0787 -1.1327,1.1169 -1.1327 1.8563h 2.6744 c 0.5349,-0.0000 0.8180,-0.2674 1.0383 -1.1327l 0.3933,0.0629 l -0.3146,1.9822 h -4.8611 c 0.0000,-0.8810 0.1416,-1.5574 1.6046 -3.0519l 1.1012,-1.0855 c 0.8810,-0.8967 1.2428,-1.6676 1.2428 -2.6272c 0.0000,-1.4316 -0.9754,-1.8406 -1.5102 -1.8406c -1.0855,-0.0000 -1.3844,0.5663 -1.3844 0.9439c 0.0000,0.1259 0.0315,0.2517 0.0629 0.3618c 0.0315,0.1101 0.0629,0.2202 0.0629 0.3461c 0.0000,0.4090 -0.3146,0.5663 -0.5663 0.5663c -0.3461,-0.0000 -0.5978,-0.2674 -0.5978 -0.5821ZM 289.9770,157.8950 ZM 291.6131,156.4005 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 293.4222,157.8950 ZM 296.8202,149.2898 c -0.3933,-0.0000 -1.5417,0.2202 -1.5417 1.1799c 0.0000,0.2832 -0.1101,0.7708 -0.5349 0.7708c -0.4090,-0.0000 -0.4405,-0.4562 -0.4405 -0.5034c 0.0000,-0.4877 0.6450,-1.9350 2.8317 -1.9350c 1.5260,-0.0000 1.9822,0.9596 1.9822 1.5889c 0.0000,0.3933 -0.1259,1.1799 -1.5417 2.0766c 0.8810,0.1416 2.0451,0.7866 2.0451 2.4227c 0.0000,2.0766 -1.5732,3.1935 -3.3508 3.1935c -0.8967,-0.0000 -2.1552,-0.3933 -2.1552 -0.9911c 0.0000,-0.2360 0.2360,-0.5034 0.5506 -0.5034c 0.2989,-0.0000 0.4405,0.1573 0.5821 0.3618c 0.1730,0.2674 0.4562,0.6450 1.2113 0.6450c 0.5191,-0.0000 1.9979,-0.5191 1.9979 -2.5013c 0.0000,-1.6833 -1.1799,-1.9507 -2.0294 -1.9507c -0.1416,-0.0000 -0.3146,0.0315 -0.4877 0.0629l -0.0629,-0.4719 c 1.2113,-0.2045 2.2182,-1.3844 2.2182 -2.1080c 0.0000,-0.8967 -0.6293,-1.3372 -1.2743 -1.3372Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 293.2806,166.7559 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 283.0865,189.5156 ZM 283.9990,182.5465 c 0.0000,-0.8967 0.8652,-2.1238 2.5171 -2.1238c 1.2113,-0.0000 2.6272,0.4562 2.6272 2.2654c 0.0000,1.1956 -0.6135,1.7934 -1.4630 2.6114l -1.4945,1.4473 c -0.0787,0.0787 -1.1327,1.1169 -1.1327 1.8563h 2.6744 c 0.5349,-0.0000 0.8180,-0.2674 1.0383 -1.1327l 0.3933,0.0629 l -0.3146,1.9822 h -4.8611 c 0.0000,-0.8810 0.1416,-1.5574 1.6046 -3.0519l 1.1012,-1.0855 c 0.8810,-0.8967 1.2428,-1.6676 1.2428 -2.6272c 0.0000,-1.4316 -0.9754,-1.8406 -1.5102 -1.8406c -1.0855,-0.0000 -1.3844,0.5663 -1.3844 0.9439c 0.0000,0.1259 0.0315,0.2517 0.0629 0.3618c 0.0315,0.1101 0.0629,0.2202 0.0629 0.3461c 0.0000,0.4090 -0.3146,0.5663 -0.5663 0.5663c -0.3461,-0.0000 -0.5978,-0.2674 -0.5978 -0.5821ZM 289.9770,189.5156 ZM 291.6131,188.0211 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 293.4222,189.5156 ZM 294.3347,182.5465 c 0.0000,-0.8967 0.8652,-2.1238 2.5171 -2.1238c 1.2113,-0.0000 2.6272,0.4562 2.6272 2.2654c 0.0000,1.1956 -0.6135,1.7934 -1.4630 2.6114l -1.4945,1.4473 c -0.0787,0.0787 -1.1327,1.1169 -1.1327 1.8563h 2.6744 c 0.5349,-0.0000 0.8180,-0.2674 1.0383 -1.1327l 0.3933,0.0629 l -0.3146,1.9822 h -4.8611 c 0.0000,-0.8810 0.1416,-1.5574 1.6046 -3.0519l 1.1012,-1.0855 c 0.8810,-0.8967 1.2428,-1.6676 1.2428 -2.6272c 0.0000,-1.4316 -0.9754,-1.8406 -1.5102 -1.8406c -1.0855,-0.0000 -1.3844,0.5663 -1.3844 0.9439c 0.0000,0.1259 0.0315,0.2517 0.0629 0.3618c 0.0315,0.1101 0.0629,0.2202 0.0629 0.3461c 0.0000,0.4090 -0.3146,0.5663 -0.5663 0.5663c -0.3461,-0.0000 -0.5978,-0.2674 -0.5978 -0.5821Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 293.2806,198.3764 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 283.0865,221.1362 ZM 283.9990,214.1670 c 0.0000,-0.8967 0.8652,-2.1238 2.5171 -2.1238c 1.2113,-0.0000 2.6272,0.4562 2.6272 2.2654c 0.0000,1.1956 -0.6135,1.7934 -1.4630 2.6114l -1.4945,1.4473 c -0.0787,0.0787 -1.1327,1.1169 -1.1327 1.8563h 2.6744 c 0.5349,-0.0000 0.8180,-0.2674 1.0383 -1.1327l 0.3933,0.0629 l -0.3146,1.9822 h -4.8611 c 0.0000,-0.8810 0.1416,-1.5574 1.6046 -3.0519l 1.1012,-1.0855 c 0.8810,-0.8967 1.2428,-1.6676 1.2428 -2.6272c 0.0000,-1.4316 -0.9754,-1.8406 -1.5102 -1.8406c -1.0855,-0.0000 -1.3844,0.5663 -1.3844 0.9439c 0.0000,0.1259 0.0315,0.2517 0.0629 0.3618c 0.0315,0.1101 0.0629,0.2202 0.0629 0.3461c 0.0000,0.4090 -0.3146,0.5663 -0.5663 0.5663c -0.3461,-0.0000 -0.5978,-0.2674 -0.5978 -0.5821ZM 289.9770,221.1362 ZM 291.6131,219.6416 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 293.4222,221.1362 ZM 296.3798,213.6322 c -0.2989,-0.0000 -0.9911,0.2832 -1.3372 0.4405l -0.1888,-0.4877 c 1.3844,-0.6450 1.9193,-0.9754 2.7058 -1.5417h 0.2989 v 7.9130 c 0.0000,0.5663 0.0787,0.7237 0.5978 0.7237h 0.8180 c 0.0472,-0.0000 0.1259,0.0315 0.1259 0.1259v 0.3461 l -2.1552,-0.0315 l -2.1867,0.0315 v -0.3461 c 0.0157,-0.0472 0.0315,-0.1259 0.1259 -0.1259h 0.9439 c 0.5978,-0.0000 0.5978,-0.2674 0.5978 -0.7237v -5.4117 c 0.0000,-0.5349 0.0000,-0.9124 -0.3461 -0.9124Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 293.2806,229.9970 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 283.0865,252.7567 ZM 283.9990,245.7876 c 0.0000,-0.8967 0.8652,-2.1238 2.5171 -2.1238c 1.2113,-0.0000 2.6272,0.4562 2.6272 2.2654c 0.0000,1.1956 -0.6135,1.7934 -1.4630 2.6114l -1.4945,1.4473 c -0.0787,0.0787 -1.1327,1.1169 -1.1327 1.8563h 2.6744 c 0.5349,-0.0000 0.8180,-0.2674 1.0383 -1.1327l 0.3933,0.0629 l -0.3146,1.9822 h -4.8611 c 0.0000,-0.8810 0.1416,-1.5574 1.6046 -3.0519l 1.1012,-1.0855 c 0.8810,-0.8967 1.2428,-1.6676 1.2428 -2.6272c 0.0000,-1.4316 -0.9754,-1.8406 -1.5102 -1.8406c -1.0855,-0.0000 -1.3844,0.5663 -1.3844 0.9439c 0.0000,0.1259 0.0315,0.2517 0.0629 0.3618c 0.0315,0.1101 0.0629,0.2202 0.0629 0.3461c 0.0000,0.4090 -0.3146,0.5663 -0.5663 0.5663c -0.3461,-0.0000 -0.5978,-0.2674 -0.5978 -0.5821ZM 289.9770,252.7567 ZM 291.6131,251.2622 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 293.4222,252.7567 ZM 296.8674,244.2144 c -0.6765,-0.0000 -1.6676,0.6607 -1.6676 4.3262c 0.0000,1.2900 0.2360,3.8857 1.6204 3.8857c 0.2674,-0.0000 1.0226,-0.1730 1.3529 -1.4001c 0.2045,-0.7551 0.3146,-1.6990 0.3146 -3.0677c 0.0000,-1.9979 -0.5034,-3.1149 -0.9596 -3.5082c -0.1730,-0.1573 -0.4090,-0.2360 -0.6607 -0.2360ZM 296.8674,244.2144 ZM 296.8045,252.9455 c -1.6833,-0.0000 -2.8160,-2.1552 -2.8160 -4.5622c 0.0000,-2.9418 1.4001,-4.7195 2.8789 -4.7195c 0.6765,-0.0000 1.3529,0.4248 1.8091 1.0383c 0.6607,0.8810 1.0068,2.0608 1.0068 3.5396c 0.0000,3.4924 -1.7305,4.7038 -2.8789 4.7038Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 293.2806,261.6175 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 188.2249,94.6539 ZM 191.1824,87.1500 c -0.2989,-0.0000 -0.9911,0.2832 -1.3372 0.4405l -0.1888,-0.4877 c 1.3844,-0.6450 1.9193,-0.9754 2.7058 -1.5417h 0.2989 v 7.9130 c 0.0000,0.5663 0.0787,0.7237 0.5978 0.7237h 0.8180 c 0.0472,-0.0000 0.1259,0.0315 0.1259 0.1259v 0.3461 l -2.1552,-0.0315 l -2.1867,0.0315 v -0.3461 c 0.0157,-0.0472 0.0315,-0.1259 0.1259 -0.1259h 0.9439 c 0.5978,-0.0000 0.5978,-0.2674 0.5978 -0.7237v -5.4117 c 0.0000,-0.5349 0.0000,-0.9124 -0.3461 -0.9124ZM 195.1153,94.6539 ZM 196.7514,93.1594 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 198.5606,94.6539 ZM 203.4216,91.9953 c 0.0000,-1.6204 -0.8810,-2.4227 -1.8563 -2.4227c -0.7237,-0.0000 -1.2743,0.1101 -1.8878 0.3618l 0.5034,-4.2947 c 0.5191,0.0472 1.0540,0.0629 1.6046 0.0629c 0.7866,-0.0000 1.6046,-0.0472 2.4541 -0.1416l 0.0944,0.0472 l -0.2360,1.0226 c -0.6135,0.0629 -1.1169,0.0787 -1.5574 0.0787c -0.7079,-0.0000 -1.2428,-0.0629 -1.7934 -0.1259l -0.2989,2.4856 c 0.3304,-0.1259 0.8967,-0.2360 1.5102 -0.2360c 1.6676,-0.0000 2.5957,1.4473 2.5957 2.8946c 0.0000,1.7619 -1.2271,3.1149 -3.0047 3.1149c -0.8967,-0.0000 -2.2024,-0.5034 -2.2024 -1.1169c 0.0000,-0.2989 0.2517,-0.5034 0.5349 -0.5034c 0.3146,-0.0000 0.5191,0.2360 0.7079 0.4877c 0.2360,0.2832 0.4877,0.5978 0.9911 0.5978c 1.0068,-0.0000 1.8406,-0.9439 1.8406 -2.3125Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 198.4190,103.5148 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 188.2249,126.2745 ZM 191.1824,118.7705 c -0.2989,-0.0000 -0.9911,0.2832 -1.3372 0.4405l -0.1888,-0.4877 c 1.3844,-0.6450 1.9193,-0.9754 2.7058 -1.5417h 0.2989 v 7.9130 c 0.0000,0.5663 0.0787,0.7237 0.5978 0.7237h 0.8180 c 0.0472,-0.0000 0.1259,0.0315 0.1259 0.1259v 0.3461 l -2.1552,-0.0315 l -2.1867,0.0315 v -0.3461 c 0.0157,-0.0472 0.0315,-0.1259 0.1259 -0.1259h 0.9439 c 0.5978,-0.0000 0.5978,-0.2674 0.5978 -0.7237v -5.4117 c 0.0000,-0.5349 0.0000,-0.9124 -0.3461 -0.9124ZM 195.1153,126.2745 ZM 196.7514,124.7800 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 198.5606,126.2745 ZM 202.6193,120.6898 c 0.0000,-0.1101 0.0157,-0.2360 0.1573 -0.3146c 0.1730,-0.1259 0.4562,-0.2674 0.6922 -0.2674c 0.2045,-0.0000 0.2202,0.1730 0.2202 0.4877v 2.5328 h 1.2743 l -0.0944,0.7394 h -1.1799 v 1.3057 c 0.0000,0.4405 0.0629,0.6607 0.5191 0.6607h 0.4248 c 0.0944,-0.0000 0.1101,0.0787 0.1101 0.1101v 0.3461 c 0.0000,-0.0000 -1.0068,-0.0315 -1.6676 -0.0315c -0.5978,-0.0000 -1.5260,0.0315 -1.5260 0.0315v -0.3461 c 0.0000,-0.0315 0.0157,-0.1101 0.1101 -0.1101h 0.4248 c 0.4877,-0.0000 0.5349,-0.2045 0.5349 -0.6607v -1.3057 h -3.0834 c -0.0629,-0.0000 -0.0944,-0.0315 -0.1416 -0.0944l -0.1259,-0.1730 l -0.1888,-0.3304 c -0.0157,-0.0000 -0.0157,-0.0157 -0.0157 -0.0315c 0.0000,-0.0157 0.0157,-0.0315 0.0315 -0.0472c 1.0226,-1.1327 2.8317,-4.6408 3.3980 -5.9308c 0.0157,-0.0629 0.0472,-0.0787 0.1101 -0.0787c 0.0157,-0.0000 0.3618,0.1416 0.5506 0.1730c -0.7079,1.9035 -1.8721,3.9486 -3.0205 5.7735h 2.4856 v -2.4384 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 198.4190,135.1353 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 188.2249,157.8950 ZM 191.1824,150.3911 c -0.2989,-0.0000 -0.9911,0.2832 -1.3372 0.4405l -0.1888,-0.4877 c 1.3844,-0.6450 1.9193,-0.9754 2.7058 -1.5417h 0.2989 v 7.9130 c 0.0000,0.5663 0.0787,0.7237 0.5978 0.7237h 0.8180 c 0.0472,-0.0000 0.1259,0.0315 0.1259 0.1259v 0.3461 l -2.1552,-0.0315 l -2.1867,0.0315 v -0.3461 c 0.0157,-0.0472 0.0315,-0.1259 0.1259 -0.1259h 0.9439 c 0.5978,-0.0000 0.5978,-0.2674 0.5978 -0.7237v -5.4117 c 0.0000,-0.5349 0.0000,-0.9124 -0.3461 -0.9124ZM 195.1153,157.8950 ZM 196.7514,156.4005 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 198.5606,157.8950 ZM 201.9586,149.2898 c -0.3933,-0.0000 -1.5417,0.2202 -1.5417 1.1799c 0.0000,0.2832 -0.1101,0.7708 -0.5349 0.7708c -0.4090,-0.0000 -0.4405,-0.4562 -0.4405 -0.5034c 0.0000,-0.4877 0.6450,-1.9350 2.8317 -1.9350c 1.5260,-0.0000 1.9822,0.9596 1.9822 1.5889c 0.0000,0.3933 -0.1259,1.1799 -1.5417 2.0766c 0.8810,0.1416 2.0451,0.7866 2.0451 2.4227c 0.0000,2.0766 -1.5732,3.1935 -3.3508 3.1935c -0.8967,-0.0000 -2.1552,-0.3933 -2.1552 -0.9911c 0.0000,-0.2360 0.2360,-0.5034 0.5506 -0.5034c 0.2989,-0.0000 0.4405,0.1573 0.5821 0.3618c 0.1730,0.2674 0.4562,0.6450 1.2113 0.6450c 0.5191,-0.0000 1.9979,-0.5191 1.9979 -2.5013c 0.0000,-1.6833 -1.1799,-1.9507 -2.0294 -1.9507c -0.1416,-0.0000 -0.3146,0.0315 -0.4877 0.0629l -0.0629,-0.4719 c 1.2113,-0.2045 2.2182,-1.3844 2.2182 -2.1080c 0.0000,-0.8967 -0.6293,-1.3372 -1.2743 -1.3372Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 198.4190,166.7559 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 188.2249,189.5156 ZM 191.1824,182.0116 c -0.2989,-0.0000 -0.9911,0.2832 -1.3372 0.4405l -0.1888,-0.4877 c 1.3844,-0.6450 1.9193,-0.9754 2.7058 -1.5417h 0.2989 v 7.9130 c 0.0000,0.5663 0.0787,0.7237 0.5978 0.7237h 0.8180 c 0.0472,-0.0000 0.1259,0.0315 0.1259 0.1259v 0.3461 l -2.1552,-0.0315 l -2.1867,0.0315 v -0.3461 c 0.0157,-0.0472 0.0315,-0.1259 0.1259 -0.1259h 0.9439 c 0.5978,-0.0000 0.5978,-0.2674 0.5978 -0.7237v -5.4117 c 0.0000,-0.5349 0.0000,-0.9124 -0.3461 -0.9124ZM 195.1153,189.5156 ZM 196.7514,188.0211 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 198.5606,189.5156 ZM 199.4730,182.5465 c 0.0000,-0.8967 0.8652,-2.1238 2.5171 -2.1238c 1.2113,-0.0000 2.6272,0.4562 2.6272 2.2654c 0.0000,1.1956 -0.6135,1.7934 -1.4630 2.6114l -1.4945,1.4473 c -0.0787,0.0787 -1.1327,1.1169 -1.1327 1.8563h 2.6744 c 0.5349,-0.0000 0.8180,-0.2674 1.0383 -1.1327l 0.3933,0.0629 l -0.3146,1.9822 h -4.8611 c 0.0000,-0.8810 0.1416,-1.5574 1.6046 -3.0519l 1.1012,-1.0855 c 0.8810,-0.8967 1.2428,-1.6676 1.2428 -2.6272c 0.0000,-1.4316 -0.9754,-1.8406 -1.5102 -1.8406c -1.0855,-0.0000 -1.3844,0.5663 -1.3844 0.9439c 0.0000,0.1259 0.0315,0.2517 0.0629 0.3618c 0.0315,0.1101 0.0629,0.2202 0.0629 0.3461c 0.0000,0.4090 -0.3146,0.5663 -0.5663 0.5663c -0.3461,-0.0000 -0.5978,-0.2674 -0.5978 -0.5821Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 198.4190,198.3764 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 188.2249,221.1362 ZM 191.1824,213.6322 c -0.2989,-0.0000 -0.9911,0.2832 -1.3372 0.4405l -0.1888,-0.4877 c 1.3844,-0.6450 1.9193,-0.9754 2.7058 -1.5417h 0.2989 v 7.9130 c 0.0000,0.5663 0.0787,0.7237 0.5978 0.7237h 0.8180 c 0.0472,-0.0000 0.1259,0.0315 0.1259 0.1259v 0.3461 l -2.1552,-0.0315 l -2.1867,0.0315 v -0.3461 c 0.0157,-0.0472 0.0315,-0.1259 0.1259 -0.1259h 0.9439 c 0.5978,-0.0000 0.5978,-0.2674 0.5978 -0.7237v -5.4117 c 0.0000,-0.5349 0.0000,-0.9124 -0.3461 -0.9124ZM 195.1153,221.1362 ZM 196.7514,219.6416 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 198.5606,221.1362 ZM 201.5181,213.6322 c -0.2989,-0.0000 -0.9911,0.2832 -1.3372 0.4405l -0.1888,-0.4877 c 1.3844,-0.6450 1.9193,-0.9754 2.7058 -1.5417h 0.2989 v 7.9130 c 0.0000,0.5663 0.0787,0.7237 0.5978 0.7237h 0.8180 c 0.0472,-0.0000 0.1259,0.0315 0.1259 0.1259v 0.3461 l -2.1552,-0.0315 l -2.1867,0.0315 v -0.3461 c 0.0157,-0.0472 0.0315,-0.1259 0.1259 -0.1259h 0.9439 c 0.5978,-0.0000 0.5978,-0.2674 0.5978 -0.7237v -5.4117 c 0.0000,-0.5349 0.0000,-0.9124 -0.3461 -0.9124Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 198.4190,229.9970 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 188.2249,252.7567 ZM 191.1824,245.2527 c -0.2989,-0.0000 -0.9911,0.2832 -1.3372 0.4405l -0.1888,-0.4877 c 1.3844,-0.6450 1.9193,-0.9754 2.7058 -1.5417h 0.2989 v 7.9130 c 0.0000,0.5663 0.0787,0.7237 0.5978 0.7237h 0.8180 c 0.0472,-0.0000 0.1259,0.0315 0.1259 0.1259v 0.3461 l -2.1552,-0.0315 l -2.1867,0.0315 v -0.3461 c 0.0157,-0.0472 0.0315,-0.1259 0.1259 -0.1259h 0.9439 c 0.5978,-0.0000 0.5978,-0.2674 0.5978 -0.7237v -5.4117 c 0.0000,-0.5349 0.0000,-0.9124 -0.3461 -0.9124ZM 195.1153,252.7567 ZM 196.7514,251.2622 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 198.5606,252.7567 ZM 202.0058,244.2144 c -0.6765,-0.0000 -1.6676,0.6607 -1.6676 4.3262c 0.0000,1.2900 0.2360,3.8857 1.6204 3.8857c 0.2674,-0.0000 1.0226,-0.1730 1.3529 -1.4001c 0.2045,-0.7551 0.3146,-1.6990 0.3146 -3.0677c 0.0000,-1.9979 -0.5034,-3.1149 -0.9596 -3.5082c -0.1730,-0.1573 -0.4090,-0.2360 -0.6607 -0.2360ZM 202.0058,244.2144 ZM 201.9429,252.9455 c -1.6833,-0.0000 -2.8160,-2.1552 -2.8160 -4.5622c 0.0000,-2.9418 1.4001,-4.7195 2.8789 -4.7195c 0.6765,-0.0000 1.3529,0.4248 1.8091 1.0383c 0.6607,0.8810 1.0068,2.0608 1.0068 3.5396c 0.0000,3.4924 -1.7305,4.7038 -2.8789 4.7038Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 198.4190,261.6175 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 93.3632,94.6539 ZM 96.8084,86.1117 c -0.6765,-0.0000 -1.6676,0.6607 -1.6676 4.3262c 0.0000,1.2900 0.2360,3.8857 1.6204 3.8857c 0.2674,-0.0000 1.0226,-0.1730 1.3529 -1.4001c 0.2045,-0.7551 0.3146,-1.6990 0.3146 -3.0677c 0.0000,-1.9979 -0.5034,-3.1149 -0.9596 -3.5082c -0.1730,-0.1573 -0.4090,-0.2360 -0.6607 -0.2360ZM 96.8084,86.1117 ZM 96.7455,94.8427 c -1.6833,-0.0000 -2.8160,-2.1552 -2.8160 -4.5622c 0.0000,-2.9418 1.4001,-4.7195 2.8789 -4.7195c 0.6765,-0.0000 1.3529,0.4248 1.8091 1.0383c 0.6607,0.8810 1.0068,2.0608 1.0068 3.5396c 0.0000,3.4924 -1.7305,4.7038 -2.8789 4.7038ZM 100.2537,94.6539 ZM 101.8898,93.1594 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 103.6989,94.6539 ZM 108.5600,91.9953 c 0.0000,-1.6204 -0.8810,-2.4227 -1.8563 -2.4227c -0.7237,-0.0000 -1.2743,0.1101 -1.8878 0.3618l 0.5034,-4.2947 c 0.5191,0.0472 1.0540,0.0629 1.6046 0.0629c 0.7866,-0.0000 1.6046,-0.0472 2.4541 -0.1416l 0.0944,0.0472 l -0.2360,1.0226 c -0.6135,0.0629 -1.1169,0.0787 -1.5574 0.0787c -0.7079,-0.0000 -1.2428,-0.0629 -1.7934 -0.1259l -0.2989,2.4856 c 0.3304,-0.1259 0.8967,-0.2360 1.5102 -0.2360c 1.6676,-0.0000 2.5957,1.4473 2.5957 2.8946c 0.0000,1.7619 -1.2271,3.1149 -3.0047 3.1149c -0.8967,-0.0000 -2.2024,-0.5034 -2.2024 -1.1169c 0.0000,-0.2989 0.2517,-0.5034 0.5349 -0.5034c 0.3146,-0.0000 0.5191,0.2360 0.7079 0.4877c 0.2360,0.2832 0.4877,0.5978 0.9911 0.5978c 1.0068,-0.0000 1.8406,-0.9439 1.8406 -2.3125Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 103.5573,103.5148 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 93.3632,126.2745 ZM 96.8084,117.7322 c -0.6765,-0.0000 -1.6676,0.6607 -1.6676 4.3262c 0.0000,1.2900 0.2360,3.8857 1.6204 3.8857c 0.2674,-0.0000 1.0226,-0.1730 1.3529 -1.4001c 0.2045,-0.7551 0.3146,-1.6990 0.3146 -3.0677c 0.0000,-1.9979 -0.5034,-3.1149 -0.9596 -3.5082c -0.1730,-0.1573 -0.4090,-0.2360 -0.6607 -0.2360ZM 96.8084,117.7322 ZM 96.7455,126.4633 c -1.6833,-0.0000 -2.8160,-2.1552 -2.8160 -4.5622c 0.0000,-2.9418 1.4001,-4.7195 2.8789 -4.7195c 0.6765,-0.0000 1.3529,0.4248 1.8091 1.0383c 0.6607,0.8810 1.0068,2.0608 1.0068 3.5396c 0.0000,3.4924 -1.7305,4.7038 -2.8789 4.7038ZM 100.2537,126.2745 ZM 101.8898,124.7800 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 103.6989,126.2745 ZM 107.7577,120.6898 c 0.0000,-0.1101 0.0157,-0.2360 0.1573 -0.3146c 0.1730,-0.1259 0.4562,-0.2674 0.6922 -0.2674c 0.2045,-0.0000 0.2202,0.1730 0.2202 0.4877v 2.5328 h 1.2743 l -0.0944,0.7394 h -1.1799 v 1.3057 c 0.0000,0.4405 0.0629,0.6607 0.5191 0.6607h 0.4248 c 0.0944,-0.0000 0.1101,0.0787 0.1101 0.1101v 0.3461 c 0.0000,-0.0000 -1.0068,-0.0315 -1.6676 -0.0315c -0.5978,-0.0000 -1.5260,0.0315 -1.5260 0.0315v -0.3461 c 0.0000,-0.0315 0.0157,-0.1101 0.1101 -0.1101h 0.4248 c 0.4877,-0.0000 0.5349,-0.2045 0.5349 -0.6607v -1.3057 h -3.0834 c -0.0629,-0.0000 -0.0944,-0.0315 -0.1416 -0.0944l -0.1259,-0.1730 l -0.1888,-0.3304 c -0.0157,-0.0000 -0.0157,-0.0157 -0.0157 -0.0315c 0.0000,-0.0157 0.0157,-0.0315 0.0315 -0.0472c 1.0226,-1.1327 2.8317,-4.6408 3.3980 -5.9308c 0.0157,-0.0629 0.0472,-0.0787 0.1101 -0.0787c 0.0157,-0.0000 0.3618,0.1416 0.5506 0.1730c -0.7079,1.9035 -1.8721,3.9486 -3.0205 5.7735h 2.4856 v -2.4384 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 103.5573,135.1353 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 93.3632,157.8950 ZM 96.8084,149.3528 c -0.6765,-0.0000 -1.6676,0.6607 -1.6676 4.3262c 0.0000,1.2900 0.2360,3.8857 1.6204 3.8857c 0.2674,-0.0000 1.0226,-0.1730 1.3529 -1.4001c 0.2045,-0.7551 0.3146,-1.6990 0.3146 -3.0677c 0.0000,-1.9979 -0.5034,-3.1149 -0.9596 -3.5082c -0.1730,-0.1573 -0.4090,-0.2360 -0.6607 -0.2360ZM 96.8084,149.3528 ZM 96.7455,158.0838 c -1.6833,-0.0000 -2.8160,-2.1552 -2.8160 -4.5622c 0.0000,-2.9418 1.4001,-4.7195 2.8789 -4.7195c 0.6765,-0.0000 1.3529,0.4248 1.8091 1.0383c 0.6607,0.8810 1.0068,2.0608 1.0068 3.5396c 0.0000,3.4924 -1.7305,4.7038 -2.8789 4.7038ZM 100.2537,157.8950 ZM 101.8898,156.4005 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 103.6989,157.8950 ZM 107.0969,149.2898 c -0.3933,-0.0000 -1.5417,0.2202 -1.5417 1.1799c 0.0000,0.2832 -0.1101,0.7708 -0.5349 0.7708c -0.4090,-0.0000 -0.4405,-0.4562 -0.4405 -0.5034c 0.0000,-0.4877 0.6450,-1.9350 2.8317 -1.9350c 1.5260,-0.0000 1.9822,0.9596 1.9822 1.5889c 0.0000,0.3933 -0.1259,1.1799 -1.5417 2.0766c 0.8810,0.1416 2.0451,0.7866 2.0451 2.4227c 0.0000,2.0766 -1.5732,3.1935 -3.3508 3.1935c -0.8967,-0.0000 -2.1552,-0.3933 -2.1552 -0.9911c 0.0000,-0.2360 0.2360,-0.5034 0.5506 -0.5034c 0.2989,-0.0000 0.4405,0.1573 0.5821 0.3618c 0.1730,0.2674 0.4562,0.6450 1.2113 0.6450c 0.5191,-0.0000 1.9979,-0.5191 1.9979 -2.5013c 0.0000,-1.6833 -1.1799,-1.9507 -2.0294 -1.9507c -0.1416,-0.0000 -0.3146,0.0315 -0.4877 0.0629l -0.0629,-0.4719 c 1.2113,-0.2045 2.2182,-1.3844 2.2182 -2.1080c 0.0000,-0.8967 -0.6293,-1.3372 -1.2743 -1.3372Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 103.5573,166.7559 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 93.3632,189.5156 ZM 96.8084,180.9733 c -0.6765,-0.0000 -1.6676,0.6607 -1.6676 4.3262c 0.0000,1.2900 0.2360,3.8857 1.6204 3.8857c 0.2674,-0.0000 1.0226,-0.1730 1.3529 -1.4001c 0.2045,-0.7551 0.3146,-1.6990 0.3146 -3.0677c 0.0000,-1.9979 -0.5034,-3.1149 -0.9596 -3.5082c -0.1730,-0.1573 -0.4090,-0.2360 -0.6607 -0.2360ZM 96.8084,180.9733 ZM 96.7455,189.7044 c -1.6833,-0.0000 -2.8160,-2.1552 -2.8160 -4.5622c 0.0000,-2.9418 1.4001,-4.7195 2.8789 -4.7195c 0.6765,-0.0000 1.3529,0.4248 1.8091 1.0383c 0.6607,0.8810 1.0068,2.0608 1.0068 3.5396c 0.0000,3.4924 -1.7305,4.7038 -2.8789 4.7038ZM 100.2537,189.5156 ZM 101.8898,188.0211 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 103.6989,189.5156 ZM 104.6113,182.5465 c 0.0000,-0.8967 0.8652,-2.1238 2.5171 -2.1238c 1.2113,-0.0000 2.6272,0.4562 2.6272 2.2654c 0.0000,1.1956 -0.6135,1.7934 -1.4630 2.6114l -1.4945,1.4473 c -0.0787,0.0787 -1.1327,1.1169 -1.1327 1.8563h 2.6744 c 0.5349,-0.0000 0.8180,-0.2674 1.0383 -1.1327l 0.3933,0.0629 l -0.3146,1.9822 h -4.8611 c 0.0000,-0.8810 0.1416,-1.5574 1.6046 -3.0519l 1.1012,-1.0855 c 0.8810,-0.8967 1.2428,-1.6676 1.2428 -2.6272c 0.0000,-1.4316 -0.9754,-1.8406 -1.5102 -1.8406c -1.0855,-0.0000 -1.3844,0.5663 -1.3844 0.9439c 0.0000,0.1259 0.0315,0.2517 0.0629 0.3618c 0.0315,0.1101 0.0629,0.2202 0.0629 0.3461c 0.0000,0.4090 -0.3146,0.5663 -0.5663 0.5663c -0.3461,-0.0000 -0.5978,-0.2674 -0.5978 -0.5821Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 103.5573,198.3764 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 93.3632,221.1362 ZM 96.8084,212.5939 c -0.6765,-0.0000 -1.6676,0.6607 -1.6676 4.3262c 0.0000,1.2900 0.2360,3.8857 1.6204 3.8857c 0.2674,-0.0000 1.0226,-0.1730 1.3529 -1.4001c 0.2045,-0.7551 0.3146,-1.6990 0.3146 -3.0677c 0.0000,-1.9979 -0.5034,-3.1149 -0.9596 -3.5082c -0.1730,-0.1573 -0.4090,-0.2360 -0.6607 -0.2360ZM 96.8084,212.5939 ZM 96.7455,221.3249 c -1.6833,-0.0000 -2.8160,-2.1552 -2.8160 -4.5622c 0.0000,-2.9418 1.4001,-4.7195 2.8789 -4.7195c 0.6765,-0.0000 1.3529,0.4248 1.8091 1.0383c 0.6607,0.8810 1.0068,2.0608 1.0068 3.5396c 0.0000,3.4924 -1.7305,4.7038 -2.8789 4.7038ZM 100.2537,221.1362 ZM 101.8898,219.6416 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 103.6989,221.1362 ZM 106.6564,213.6322 c -0.2989,-0.0000 -0.9911,0.2832 -1.3372 0.4405l -0.1888,-0.4877 c 1.3844,-0.6450 1.9193,-0.9754 2.7058 -1.5417h 0.2989 v 7.9130 c 0.0000,0.5663 0.0787,0.7237 0.5978 0.7237h 0.8180 c 0.0472,-0.0000 0.1259,0.0315 0.1259 0.1259v 0.3461 l -2.1552,-0.0315 l -2.1867,0.0315 v -0.3461 c 0.0157,-0.0472 0.0315,-0.1259 0.1259 -0.1259h 0.9439 c 0.5978,-0.0000 0.5978,-0.2674 0.5978 -0.7237v -5.4117 c 0.0000,-0.5349 0.0000,-0.9124 -0.3461 -0.9124Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 103.5573,229.9970 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 93.3632,252.7567 ZM 96.8084,244.2144 c -0.6765,-0.0000 -1.6676,0.6607 -1.6676 4.3262c 0.0000,1.2900 0.2360,3.8857 1.6204 3.8857c 0.2674,-0.0000 1.0226,-0.1730 1.3529 -1.4001c 0.2045,-0.7551 0.3146,-1.6990 0.3146 -3.0677c 0.0000,-1.9979 -0.5034,-3.1149 -0.9596 -3.5082c -0.1730,-0.1573 -0.4090,-0.2360 -0.6607 -0.2360ZM 96.8084,244.2144 ZM 96.7455,252.9455 c -1.6833,-0.0000 -2.8160,-2.1552 -2.8160 -4.5622c 0.0000,-2.9418 1.4001,-4.7195 2.8789 -4.7195c 0.6765,-0.0000 1.3529,0.4248 1.8091 1.0383c 0.6607,0.8810 1.0068,2.0608 1.0068 3.5396c 0.0000,3.4924 -1.7305,4.7038 -2.8789 4.7038ZM 100.2537,252.7567 ZM 101.8898,251.2622 c 0.6293,-0.0000 1.0383,0.6135 1.0383 1.5574c 0.0000,1.1012 -0.7866,1.6204 -1.7305 1.7934l -0.0787,-0.3933 c 0.8180,-0.2045 1.1956,-0.6765 1.1956 -1.0068c 0.0000,-0.3618 -0.2674,-0.4248 -0.5663 -0.4562c -0.2832,-0.0472 -0.6922,-0.1730 -0.6922 -0.6922c 0.0000,-0.4405 0.3461,-0.8023 0.8338 -0.8023ZM 103.6989,252.7567 ZM 107.1441,244.2144 c -0.6765,-0.0000 -1.6676,0.6607 -1.6676 4.3262c 0.0000,1.2900 0.2360,3.8857 1.6204 3.8857c 0.2674,-0.0000 1.0226,-0.1730 1.3529 -1.4001c 0.2045,-0.7551 0.3146,-1.6990 0.3146 -3.0677c 0.0000,-1.9979 -0.5034,-3.1149 -0.9596 -3.5082c -0.1730,-0.1573 -0.4090,-0.2360 -0.6607 -0.2360ZM 107.1441,244.2144 ZM 107.0812,252.9455 c -1.6833,-0.0000 -2.8160,-2.1552 -2.8160 -4.5622c 0.0000,-2.9418 1.4001,-4.7195 2.8789 -4.7195c 0.6765,-0.0000 1.3529,0.4248 1.8091 1.0383c 0.6607,0.8810 1.0068,2.0608 1.0068 3.5396c 0.0000,3.4924 -1.7305,4.7038 -2.8789 4.7038Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 103.5573,261.6175 c 0.0000,-0.8732 -0.7079,-1.5810 -1.5810 -1.5810c -0.8732,-0.0000 -1.5810,0.7079 -1.5810 1.5810c -0.0000,0.8732 0.7079,1.5810 1.5810 1.5810c 0.8732,0.0000 1.5810,-0.7079 1.5810 -1.5810Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(31,119,180)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 293.6398,309.6462 ZM 300.5224,297.5695 c 2.2391,-0.0000 2.8999,0.8259 4.0011 0.8259c 0.1285,1.3215 0.2386,2.0556 0.4038 2.8264l -0.5506,0.1101 c -0.4772,-1.5784 -1.4499,-3.0834 -4.1112 -3.0834c -2.4777,-0.0000 -4.4416,2.1841 -4.4416 5.3959c 0.0000,2.4227 1.7619,5.5611 5.0289 5.5611c 0.9911,-0.0000 2.0740,-0.3304 2.6980 -0.9177v -2.8081 c 0.0000,-0.5690 -0.2753,-0.8076 -1.0094 -0.8076h -0.4772 c -0.0734,-0.0000 -0.1468,-0.0551 -0.1468 -0.1468v -0.4772 l 0.0367,-0.0367 c 0.0000,-0.0000 1.5968,0.0367 2.3125 0.0367c 0.6424,-0.0000 1.7069,-0.0367 1.7069 -0.0367l 0.0367,0.0367 v 0.4772 c 0.0000,0.0918 -0.0551,0.1468 -0.1468 0.1468h -0.0184 c -0.6424,-0.0000 -0.8076,0.2937 -0.8076 0.8076v 2.1290 c 0.0000,0.2019 0.0918,0.3487 0.2937 0.5139c -1.2480,1.0645 -2.7347,1.7436 -4.9004 1.7436c -3.6891,-0.0000 -6.2035,-2.6796 -6.2035 -5.8548c 0.0000,-4.0378 3.1385,-6.4421 6.2953 -6.4421ZM 306.3589,309.6462 ZM 308.1024,308.3247 v -9.1951 c 0.0000,-1.0462 -0.1835,-1.3398 -0.5506 -1.3398l -0.5873,0.0734 c -0.0551,-0.0000 -0.1101,-0.0367 -0.1101 -0.0918l -0.0367,-0.4588 c 0.2937,-0.0000 0.9727,-0.1101 1.2847 -0.1652c 0.3304,-0.0734 0.5873,-0.1468 0.9544 -0.3120h 0.4038 v 11.4893 c 0.0000,0.5323 0.2019,0.8076 0.7892 0.8076h 0.4405 c 0.0734,-0.0000 0.1468,0.0551 0.1468 0.1468v 0.3487 l -0.0367,0.0367 c 0.0000,-0.0000 -1.3398,-0.0367 -2.0556 -0.0367c -0.6424,-0.0000 -1.9822,0.0367 -1.9822 0.0367l -0.0184,-0.0367 v -0.3487 c 0.0000,-0.0918 0.0367,-0.1468 0.1285 -0.1468h 0.4405 c 0.6057,-0.0000 0.7892,-0.2753 0.7892 -0.8076ZM 311.1308,309.6462 ZM 314.9483,302.1212 c 0.0000,0.0918 -0.1101,0.1468 -0.2019 0.1468c -0.5506,-0.0000 -0.7892,0.1101 -0.7892 0.4038c 0.0000,0.1101 0.0367,0.2569 0.1101 0.4221l 2.0189,4.7352 l 2.0372,-4.6618 c 0.0918,-0.1652 0.1285,-0.3120 0.1285 -0.4221c 0.0000,-0.3854 -0.3671,-0.4772 -0.7708 -0.4772h -0.0734 c -0.0918,-0.0000 -0.1835,-0.0734 -0.1835 -0.1285v -0.3487 l 0.0367,-0.0551 c 0.0000,-0.0000 1.0829,0.0367 1.7252 0.0367c 0.5139,-0.0000 1.2664,-0.0367 1.2664 -0.0367l 0.0551,0.0367 v 0.3487 c 0.0000,0.0918 -0.0734,0.1468 -0.2019 0.1468c -0.6974,-0.0000 -1.0462,0.7158 -1.3031 1.2480c -0.9727,2.0556 -1.7803,3.9460 -3.2486 7.4883c -0.5506,1.3215 -1.2113,2.8632 -2.5144 2.8632c -0.3487,-0.0000 -1.0645,-0.2019 -1.0645 -0.8626c 0.0000,-0.5506 0.4038,-0.7158 0.6974 -0.7158c 0.2753,-0.0000 0.4588,0.1101 0.5690 0.2569c 0.1835,0.1835 0.3120,0.3120 0.4955 0.3120c 0.2753,-0.0000 0.9177,-1.5784 1.3765 -2.6980c 0.1101,-0.2202 0.1468,-0.4038 0.1468 -0.5690c 0.0000,-0.1835 -0.1652,-0.6791 -0.3120 -1.0462l -2.3125,-5.3776 c -0.2937,-0.6974 -0.4955,-0.8993 -1.1196 -0.8993c -0.1101,-0.0000 -0.1835,-0.0551 -0.1835 -0.1285v -0.3671 l 0.0367,-0.0367 c 0.0000,-0.0000 0.8076,0.0367 1.3582 0.0367c 0.8626,-0.0000 2.1841,-0.0367 2.1841 -0.0367l 0.0367,0.0551 v 0.3304 ZM 320.4727,309.6462 ZM 323.2074,303.8832 v 4.5700 c 0.6424,0.7525 1.2480,0.7892 1.5417 0.7892c 1.9638,-0.0000 2.4043,-1.8354 2.4043 -3.4138c 0.0000,-2.2208 -0.8993,-3.4505 -2.0189 -3.4505c -0.6240,-0.0000 -1.5233,0.5323 -1.9271 1.5050ZM 323.2074,303.8832 ZM 321.8493,312.5460 v -9.0850 c 0.0000,-0.6974 -0.1652,-0.8259 -0.4221 -0.8259c -0.2386,-0.0000 -0.4588,0.0184 -0.7708 0.0918l -0.0918,-0.5139 c 1.1746,-0.2019 1.3949,-0.2753 1.9088 -0.5323c 0.2019,-0.0918 0.3304,-0.1468 0.4588 -0.1468h 0.2753 l -0.0551,1.4683 h 0.0551 c 0.8443,-1.2847 1.8354,-1.4683 2.4227 -1.4683c 1.7803,-0.0000 2.9549,1.8537 2.9549 3.7992c 0.0000,1.4866 -0.4588,2.6246 -1.2847 3.4688c -0.7158,0.7158 -1.4683,1.0645 -2.4410 1.0645c -0.6607,-0.0000 -1.1746,-0.1468 -1.6518 -0.4038v 3.0834 c 0.0000,0.5323 0.2019,0.8076 0.7892 0.8076h 0.3487 c 0.0918,-0.0000 0.1652,0.0551 0.1652 0.1468v 0.3487 l -0.0367,0.0367 c 0.0000,-0.0000 -1.2664,-0.0367 -1.9822 -0.0367c -0.6424,-0.0000 -1.8904,0.0367 -1.8904 0.0367l -0.0367,-0.0367 v -0.3487 c 0.0000,-0.0918 0.0551,-0.1468 0.1468 -0.1468h 0.3487 c 0.6057,-0.0000 0.7892,-0.2753 0.7892 -0.8076ZM 329.2641,309.6462 ZM 332.2557,296.8354 v 6.2219 c 1.2297,-1.2297 2.3125,-1.5233 3.0283 -1.5233c 1.3215,-0.0000 1.9822,1.0094 1.9822 2.8999v 3.8910 c 0.0000,0.5323 0.1835,0.8076 0.7892 0.8076h 0.3487 c 0.0734,-0.0000 0.1468,0.0551 0.1468 0.1468v 0.3487 l -0.0367,0.0367 c 0.0000,-0.0000 -1.2480,-0.0367 -1.9822 -0.0367c -0.6424,-0.0000 -1.8904,0.0367 -1.8904 0.0367l -0.0367,-0.0367 v -0.3487 c 0.0000,-0.0918 0.0551,-0.1468 0.1468 -0.1468h 0.3487 c 0.6240,-0.0000 0.7892,-0.2753 0.7892 -0.8076v -4.0928 c 0.0000,-1.4866 -0.4038,-1.8354 -1.4316 -1.8354c -0.5323,-0.0000 -1.3215,0.4772 -2.2024 1.3398v 4.5884 c 0.0000,0.5323 0.1835,0.8076 0.7892 0.8076h 0.3487 c 0.0734,-0.0000 0.1468,0.0551 0.1468 0.1468v 0.3487 l -0.0367,0.0367 c 0.0000,-0.0000 -1.2480,-0.0367 -1.9638 -0.0367c -0.6607,-0.0000 -1.8904,0.0367 -1.8904 0.0367l -0.0367,-0.0367 v -0.3487 c 0.0000,-0.0918 0.0367,-0.1468 0.1285 -0.1468h 0.3487 c 0.6240,-0.0000 0.7892,-0.2753 0.7892 -0.8076v -9.1951 c 0.0000,-1.0462 -0.1652,-1.3398 -0.5323 -1.3398l -0.6057,0.0734 c -0.0551,-0.0000 -0.0918,-0.0367 -0.0918 -0.0918l -0.0367,-0.4588 c 0.2937,-0.0000 0.9544,-0.1101 1.2664 -0.1652c 0.3304,-0.0734 0.6057,-0.1468 0.9727 -0.3120h 0.4038 ZM 338.7712,309.6462 ZM 339.5604,307.0767 l 0.4955,-0.0184 c 0.0551,0.4588 0.2569,1.3398 0.6607 1.7619c 0.1835,0.2019 0.6791,0.5323 1.3582 0.5323c 0.6424,-0.0000 1.5968,-0.5139 1.5968 -1.4132c 0.0000,-0.7892 -0.4405,-1.3215 -1.8904 -1.9455c -1.3398,-0.5873 -2.0372,-0.9727 -2.0372 -2.3493c 0.0000,-1.2297 1.0829,-2.1107 2.5328 -2.1107c 0.9177,-0.0000 1.5968,0.1652 2.1657 0.4588c 0.1101,0.5873 0.1652,1.2113 0.2019 1.8721l -0.4955,0.0184 c -0.3854,-1.5050 -1.4866,-1.7986 -1.8721 -1.7986c -0.6974,-0.0000 -1.4132,0.2753 -1.4132 1.2847c 0.0000,0.7341 0.3487,1.1012 1.3582 1.4683c 1.4866,0.5506 2.6796,1.2113 2.6796 2.6796c 0.0000,1.8170 -1.9271,2.3493 -2.7897 2.3493c -0.6424,-0.0000 -1.1746,-0.0734 -1.6518 -0.2019c -0.1285,-0.0184 -0.2202,-0.0367 -0.3487 -0.0367c -0.0918,-0.0000 -0.2386,0.0184 -0.4221 0.0551c 0.0000,-0.7708 -0.0551,-1.7069 -0.1285 -2.6062ZM 350.1688,309.6462 ZM 353.8762,302.1212 c 0.0000,0.0918 -0.0734,0.1468 -0.1652 0.1468h -0.2753 c -0.4038,-0.0000 -0.5323,0.1101 -0.5323 0.2937c 0.0000,0.1285 0.0734,0.2937 0.1652 0.5506l 1.9271,4.8453 l 1.5968,-3.9827 l -0.3304,-0.8259 c -0.2386,-0.6240 -0.6240,-0.8810 -1.1746 -0.8810c -0.0918,-0.0000 -0.1835,-0.0367 -0.1835 -0.1285v -0.3671 l 0.0367,-0.0367 c 0.0000,-0.0000 1.0278,0.0367 1.6702 0.0367l 1.8354,-0.0367 l 0.0551,0.0367 v 0.3487 c 0.0000,0.0918 -0.0918,0.1468 -0.1835 0.1468h -0.3304 c -0.3671,-0.0000 -0.5323,0.0734 -0.5323 0.2569c 0.0000,0.1468 0.0734,0.3304 0.1835 0.5873l 1.9088,4.8453 l 1.9088,-4.7536 c 0.0551,-0.1101 0.0918,-0.2569 0.0918 -0.4038c 0.0000,-0.3120 -0.2019,-0.5323 -0.8259 -0.5323h -0.2753 c -0.0918,-0.0000 -0.1652,-0.0734 -0.1652 -0.1285v -0.3671 l 0.0551,-0.0367 c 0.0000,-0.0000 1.2113,0.0367 1.8904 0.0367c 0.6240,-0.0000 1.3582,-0.0367 1.3582 -0.0367l 0.0184,0.0367 v 0.3487 c 0.0000,0.1101 -0.1101,0.1468 -0.2202 0.1468c -0.4588,-0.0000 -0.9360,0.2019 -1.2664 1.0094l -2.4961,6.2035 c -0.1101,0.2753 -0.2569,0.3854 -0.4221 0.3854c -0.1835,-0.0000 -0.3304,-0.1101 -0.4405 -0.3671l -1.8354,-4.5884 l -1.8354,4.5517 c -0.1285,0.2937 -0.2753,0.4038 -0.4405 0.4038c -0.1835,-0.0000 -0.3304,-0.1101 -0.4405 -0.3671l -2.5144,-6.3503 c -0.2753,-0.7158 -0.6057,-0.8810 -1.1563 -0.8810c -0.0918,-0.0000 -0.2202,-0.0367 -0.2202 -0.1285v -0.3671 l 0.0367,-0.0367 c 0.0000,-0.0000 0.8626,0.0367 1.6702 0.0367c 0.8443,-0.0000 1.8170,-0.0367 1.8170 -0.0367l 0.0367,0.0551 v 0.3304 ZM 363.8238,309.6462 ZM 365.2554,299.1663 c 0.0000,-0.4772 0.3854,-0.8810 0.8626 -0.8810c 0.4955,-0.0000 0.8810,0.4038 0.8810 0.8810c 0.0000,0.4955 -0.3854,0.8810 -0.8810 0.8810c -0.4772,-0.0000 -0.8626,-0.3854 -0.8626 -0.8810ZM 365.2554,299.1663 ZM 366.9990,308.3247 c 0.0000,0.5323 0.2019,0.8076 0.7892 0.8076h 0.3487 c 0.0918,-0.0000 0.1652,0.0551 0.1652 0.1468v 0.3487 l -0.0367,0.0367 c 0.0000,-0.0000 -1.2664,-0.0367 -1.9822 -0.0367c -0.6424,-0.0000 -1.8904,0.0367 -1.8904 0.0367l -0.0367,-0.0367 v -0.3487 c 0.0000,-0.0918 0.0551,-0.1468 0.1468 -0.1468h 0.3487 c 0.6057,-0.0000 0.7892,-0.2753 0.7892 -0.8076v -4.5700 c 0.0000,-0.9727 -0.1652,-1.1196 -0.4221 -1.1196c -0.2386,-0.0000 -0.4588,0.0184 -0.7708 0.0918l -0.0918,-0.5139 c 1.1746,-0.2019 1.3765,-0.2753 1.9088 -0.5323c 0.2019,-0.0734 0.3304,-0.1468 0.4588 -0.1468h 0.2753 v 6.7908 ZM 368.6692,309.6462 ZM 371.6792,302.4699 v 4.6985 c 0.0000,1.1379 0.1101,1.6885 0.6057 1.6885c 0.4772,-0.0000 0.8443,-0.1468 1.3215 -0.5139l 0.3304,0.3120 c -0.7158,0.8076 -1.4499,1.2113 -2.2942 1.2113c -0.8443,-0.0000 -1.3398,-0.5139 -1.3398 -1.8170v -5.5795 h -1.1930 c -0.0551,-0.0000 -0.0734,-0.0184 -0.0734 -0.0734v -0.5690 c 0.0000,-0.0551 0.0184,-0.0734 0.0551 -0.0734c 1.2297,-0.0000 1.5233,-0.7158 1.5233 -2.1107v -0.3487 l 1.0645,-0.3671 v 2.8264 h 2.0189 c 0.0918,-0.0000 0.1468,0.0367 0.1468 0.1101v 0.3671 c 0.0000,0.1652 -0.2569,0.2386 -0.4405 0.2386h -1.7252 ZM 374.2119,309.6462 ZM 377.2036,296.8354 v 6.2219 c 1.2297,-1.2297 2.3125,-1.5233 3.0283 -1.5233c 1.3215,-0.0000 1.9822,1.0094 1.9822 2.8999v 3.8910 c 0.0000,0.5323 0.1835,0.8076 0.7892 0.8076h 0.3487 c 0.0734,-0.0000 0.1468,0.0551 0.1468 0.1468v 0.3487 l -0.0367,0.0367 c 0.0000,-0.0000 -1.2480,-0.0367 -1.9822 -0.0367c -0.6424,-0.0000 -1.8904,0.0367 -1.8904 0.0367l -0.0367,-0.0367 v -0.3487 c 0.0000,-0.0918 0.0551,-0.1468 0.1468 -0.1468h 0.3487 c 0.6240,-0.0000 0.7892,-0.2753 0.7892 -0.8076v -4.0928 c 0.0000,-1.4866 -0.4038,-1.8354 -1.4316 -1.8354c -0.5323,-0.0000 -1.3215,0.4772 -2.2024 1.3398v 4.5884 c 0.0000,0.5323 0.1835,0.8076 0.7892 0.8076h 0.3487 c 0.0734,-0.0000 0.1468,0.0551 0.1468 0.1468v 0.3487 l -0.0367,0.0367 c 0.0000,-0.0000 -1.2480,-0.0367 -1.9638 -0.0367c -0.6607,-0.0000 -1.8904,0.0367 -1.8904 0.0367l -0.0367,-0.0367 v -0.3487 c 0.0000,-0.0918 0.0367,-0.1468 0.1285 -0.1468h 0.3487 c 0.6240,-0.0000 0.7892,-0.2753 0.7892 -0.8076v -9.1951 c 0.0000,-1.0462 -0.1652,-1.3398 -0.5323 -1.3398l -0.6057,0.0734 c -0.0551,-0.0000 -0.0918,-0.0367 -0.0918 -0.0918l -0.0367,-0.4588 c 0.2937,-0.0000 0.9544,-0.1101 1.2664 -0.1652c 0.3304,-0.0734 0.6057,-0.1468 0.9727 -0.3120h 0.4038 ZM 388.3075,309.6462 ZM 391.3175,302.4699 v 4.6985 c 0.0000,1.1379 0.1101,1.6885 0.6057 1.6885c 0.4772,-0.0000 0.8443,-0.1468 1.3215 -0.5139l 0.3304,0.3120 c -0.7158,0.8076 -1.4499,1.2113 -2.2942 1.2113c -0.8443,-0.0000 -1.3398,-0.5139 -1.3398 -1.8170v -5.5795 h -1.1930 c -0.0551,-0.0000 -0.0734,-0.0184 -0.0734 -0.0734v -0.5690 c 0.0000,-0.0551 0.0184,-0.0734 0.0551 -0.0734c 1.2297,-0.0000 1.5233,-0.7158 1.5233 -2.1107v -0.3487 l 1.0645,-0.3671 v 2.8264 h 2.0189 c 0.0918,-0.0000 0.1468,0.0367 0.1468 0.1101v 0.3671 c 0.0000,0.1652 -0.2569,0.2386 -0.4405 0.2386h -1.7252 ZM 393.8502,309.6462 ZM 395.9426,304.5622 h 3.3771 c 0.1835,-0.0000 0.2569,-0.0918 0.2569 -0.2569c 0.0000,-1.7069 -0.8626,-2.1474 -1.5233 -2.1474c -0.4221,-0.0000 -1.7986,0.1652 -2.1107 2.4043ZM 395.9426,304.5622 ZM 400.7879,307.9393 l 0.3671,0.2937 c -0.6974,0.9544 -1.7803,1.6335 -3.1018 1.6335c -2.5144,-0.0000 -3.5789,-1.8721 -3.5789 -3.8726c 0.0000,-2.7897 1.8354,-4.4599 3.5789 -4.4599c 2.4227,-0.0000 2.9916,1.8904 2.9916 3.4321c 0.0000,0.2019 -0.1285,0.3120 -0.3304 0.3120h -4.8270 c -0.0184,0.1101 -0.0184,0.2202 -0.0184 0.3671c 0.0000,1.8721 1.3031,3.3220 2.6246 3.3220c 1.0094,-0.0000 1.6518,-0.3304 2.2942 -1.0278ZM 401.7056,309.6462 ZM 405.3212,302.2680 c -0.3671,-0.0000 -0.4405,0.0918 -0.4405 0.2202c 0.0000,0.0918 0.0734,0.2569 0.2753 0.5873l 1.1196,1.6518 c 0.0551,0.1101 0.1101,0.1652 0.1835 0.1652c 0.0551,-0.0000 0.0918,-0.0367 0.1652 -0.1285l 1.1930,-1.6702 c 0.2019,-0.2569 0.3120,-0.4588 0.3120 -0.6057c 0.0000,-0.1468 -0.1285,-0.2202 -0.3854 -0.2202h -0.2937 c -0.0551,-0.0000 -0.1101,-0.0367 -0.1101 -0.1285v -0.3487 l 0.0551,-0.0551 c 0.0000,-0.0000 0.8626,0.0367 1.4316 0.0367c 0.5873,-0.0000 1.4866,-0.0367 1.4866 -0.0367l 0.0184,0.0367 v 0.3487 c 0.0000,0.1285 -0.1101,0.1468 -0.2202 0.1468c -0.6791,-0.0000 -0.9544,0.2202 -1.6335 1.0829l -1.5417,1.9638 c -0.0367,0.0551 -0.0551,0.0918 -0.0551 0.1285c 0.0000,0.0367 0.0184,0.0918 0.0551 0.1468l 1.6518,2.3309 c 0.8443,1.1930 1.0829,1.2113 1.6702 1.2113c 0.1835,-0.0000 0.2569,0.0367 0.2569 0.1468v 0.3487 l -0.0184,0.0367 c 0.0000,-0.0000 -0.9911,-0.0367 -1.6151 -0.0367c -0.7525,-0.0000 -1.9088,0.0367 -1.9088 0.0367l -0.0367,-0.0367 v -0.3487 c 0.0000,-0.0918 0.0367,-0.1468 0.1285 -0.1468h 0.2202 c 0.2937,-0.0000 0.4221,-0.0551 0.4221 -0.2019c 0.0000,-0.1652 -0.2019,-0.4405 -0.4955 -0.8259l -1.0645,-1.4683 c -0.0734,-0.0918 -0.1101,-0.1285 -0.1652 -0.1285c -0.0367,-0.0000 -0.0918,0.0551 -0.1652 0.1652l -1.1563,1.6702 c -0.2753,0.3671 -0.3304,0.4588 -0.3304 0.5873c 0.0000,0.1285 0.1101,0.2019 0.3854 0.2019h 0.2569 c 0.0918,-0.0000 0.1285,0.0551 0.1285 0.1468v 0.3487 l -0.0367,0.0367 c 0.0000,-0.0000 -0.9544,-0.0367 -1.5417 -0.0367c -0.5323,-0.0000 -1.3765,0.0367 -1.3765 0.0367l -0.0367,-0.0367 v -0.3120 c 0.0000,-0.1101 0.0734,-0.1835 0.2386 -0.1835c 0.4405,-0.0000 0.8626,-0.0918 1.6335 -1.0829l 1.5417,-1.9822 c 0.0184,-0.0367 0.0367,-0.0734 0.0367 -0.1285c 0.0000,-0.0551 -0.0184,-0.0918 -0.0551 -0.1468l -1.5968,-2.3309 c -0.5139,-0.7525 -0.8443,-1.1930 -1.4866 -1.1930c -0.1285,-0.0000 -0.2569,-0.0551 -0.2569 -0.1285v -0.3487 l 0.0367,-0.0551 l 1.4499,0.0367 l 2.0372,-0.0367 l 0.0551,0.0551 v 0.3304 c 0.0000,0.0918 -0.0734,0.1468 -0.1468 0.1468h -0.2753 ZM 410.8273,309.6462 ZM 413.8373,302.4699 v 4.6985 c 0.0000,1.1379 0.1101,1.6885 0.6057 1.6885c 0.4772,-0.0000 0.8443,-0.1468 1.3215 -0.5139l 0.3304,0.3120 c -0.7158,0.8076 -1.4499,1.2113 -2.2942 1.2113c -0.8443,-0.0000 -1.3398,-0.5139 -1.3398 -1.8170v -5.5795 h -1.1930 c -0.0551,-0.0000 -0.0734,-0.0184 -0.0734 -0.0734v -0.5690 c 0.0000,-0.0551 0.0184,-0.0734 0.0551 -0.0734c 1.2297,-0.0000 1.5233,-0.7158 1.5233 -2.1107v -0.3487 l 1.0645,-0.3671 v 2.8264 h 2.0189 c 0.0918,-0.0000 0.1468,0.0367 0.1468 0.1101v 0.3671 c 0.0000,0.1652 -0.2569,0.2386 -0.4405 0.2386h -1.7252 ZM 420.9584,309.6462 ZM 422.7020,308.3247 v -9.1951 c 0.0000,-1.0462 -0.1835,-1.3398 -0.5506 -1.3398l -0.5873,0.0734 c -0.0551,-0.0000 -0.1101,-0.0367 -0.1101 -0.0918l -0.0367,-0.4588 c 0.2937,-0.0000 0.9727,-0.1101 1.2847 -0.1652c 0.3304,-0.0734 0.5873,-0.1468 0.9544 -0.3120h 0.4038 v 11.4893 c 0.0000,0.5323 0.2019,0.8076 0.7892 0.8076h 0.4405 c 0.0734,-0.0000 0.1468,0.0551 0.1468 0.1468v 0.3487 l -0.0367,0.0367 c 0.0000,-0.0000 -1.3398,-0.0367 -2.0556 -0.0367c -0.6424,-0.0000 -1.9822,0.0367 -1.9822 0.0367l -0.0184,-0.0367 v -0.3487 c 0.0000,-0.0918 0.0367,-0.1468 0.1285 -0.1468h 0.4405 c 0.6057,-0.0000 0.7892,-0.2753 0.7892 -0.8076ZM 425.7304,309.6462 ZM 431.0713,305.1495 l -1.4499,0.3671 c -1.6151,0.4955 -1.8537,1.3398 -1.8537 2.1657c 0.0000,0.5690 0.2753,1.4316 1.4316 1.4316c 0.5506,-0.0000 1.3949,-0.5323 1.8721 -0.9360v -3.0283 ZM 431.0713,305.1495 ZM 432.2459,309.8664 c -0.6974,-0.0000 -1.0829,-0.6240 -1.1563 -1.0645l -0.4221,0.2937 c -0.8443,0.5873 -1.1563,0.7708 -2.0005 0.7708c -1.2847,-0.0000 -2.2208,-0.7341 -2.2208 -2.1107c 0.0000,-1.3949 1.1930,-2.3493 2.9366 -2.7897l 1.6885,-0.4221 c 0.0000,-2.0740 -0.9544,-2.4594 -1.5784 -2.4594c -0.6974,-0.0000 -1.5050,0.3120 -1.5050 0.8810c 0.0000,0.2019 0.0367,0.3120 0.0551 0.3671c 0.0367,0.0734 0.0551,0.2019 0.0551 0.3304c 0.0000,0.2386 -0.1835,0.6057 -0.7158 0.6057c -0.4405,-0.0000 -0.7341,-0.2937 -0.7341 -0.7341c 0.0000,-1.0645 1.7252,-2.0005 2.8999 -2.0005c 1.3398,-0.0000 2.8815,0.5506 2.8815 3.1568v 2.6980 c 0.0000,1.1196 0.0184,1.5968 0.4405 1.5968c 0.4038,-0.0000 0.5139,-0.5139 0.5323 -0.9177l 0.4588,0.0918 c -0.1101,1.3398 -0.6791,1.7069 -1.6151 1.7069ZM 434.0078,309.6462 ZM 436.7425,308.6367 c 0.3671,0.4405 0.7525,0.5873 1.3215 0.5873c 1.7436,-0.0000 2.6246,-1.6151 2.6246 -3.7074c 0.0000,-1.8721 -0.9544,-3.2119 -2.0740 -3.2119c -0.2019,-0.0000 -1.1563,0.0367 -1.8721 0.7892v 5.5428 ZM 436.7425,308.6367 ZM 435.3660,299.1296 c 0.0000,-1.0462 -0.1835,-1.3398 -0.5506 -1.3398l -0.5873,0.0734 c -0.0551,-0.0000 -0.0918,-0.0367 -0.0918 -0.0918l -0.0367,-0.4588 c 0.2937,-0.0000 0.9544,-0.1101 1.2664 -0.1652c 0.3304,-0.0734 0.6057,-0.1468 0.9727 -0.3120h 0.4038 v 5.6896 c 0.6240,-0.6791 1.3582,-1.0094 2.2391 -1.0094c 1.5968,-0.0000 3.1201,1.5233 3.1201 3.7625c 0.0000,2.9182 -2.0556,4.5700 -3.9277 4.5700c -0.7892,-0.0000 -1.3765,-0.2202 -1.9088 -0.6791c -0.1652,0.2202 -0.4038,0.4955 -0.5690 0.6791l -0.3854,-0.0918 c 0.0551,-0.4405 0.0551,-0.7341 0.0551 -1.4499v -9.1768 ZM 442.7808,309.6462 ZM 444.8731,304.5622 h 3.3771 c 0.1835,-0.0000 0.2569,-0.0918 0.2569 -0.2569c 0.0000,-1.7069 -0.8626,-2.1474 -1.5233 -2.1474c -0.4221,-0.0000 -1.7986,0.1652 -2.1107 2.4043ZM 444.8731,304.5622 ZM 449.7185,307.9393 l 0.3671,0.2937 c -0.6974,0.9544 -1.7803,1.6335 -3.1018 1.6335c -2.5144,-0.0000 -3.5789,-1.8721 -3.5789 -3.8726c 0.0000,-2.7897 1.8354,-4.4599 3.5789 -4.4599c 2.4227,-0.0000 2.9916,1.8904 2.9916 3.4321c 0.0000,0.2019 -0.1285,0.3120 -0.3304 0.3120h -4.8270 c -0.0184,0.1101 -0.0184,0.2202 -0.0184 0.3671c 0.0000,1.8721 1.3031,3.3220 2.6246 3.3220c 1.0094,-0.0000 1.6518,-0.3304 2.2942 -1.0278ZM 450.6361,309.6462 ZM 452.3797,308.3247 v -9.1951 c 0.0000,-1.0462 -0.1835,-1.3398 -0.5506 -1.3398l -0.5873,0.0734 c -0.0551,-0.0000 -0.1101,-0.0367 -0.1101 -0.0918l -0.0367,-0.4588 c 0.2937,-0.0000 0.9727,-0.1101 1.2847 -0.1652c 0.3304,-0.0734 0.5873,-0.1468 0.9544 -0.3120h 0.4038 v 11.4893 c 0.0000,0.5323 0.2019,0.8076 0.7892 0.8076h 0.4405 c 0.0734,-0.0000 0.1468,0.0551 0.1468 0.1468v 0.3487 l -0.0367,0.0367 c 0.0000,-0.0000 -1.3398,-0.0367 -2.0556 -0.0367c -0.6424,-0.0000 -1.9822,0.0367 -1.9822 0.0367l -0.0184,-0.0367 v -0.3487 c 0.0000,-0.0918 0.0367,-0.1468 0.1285 -0.1468h 0.4405 c 0.6057,-0.0000 0.7892,-0.2753 0.7892 -0.8076ZM 455.4081,309.6462 ZM 456.1973,307.0767 l 0.4955,-0.0184 c 0.0551,0.4588 0.2569,1.3398 0.6607 1.7619c 0.1835,0.2019 0.6791,0.5323 1.3582 0.5323c 0.6424,-0.0000 1.5968,-0.5139 1.5968 -1.4132c 0.0000,-0.7892 -0.4405,-1.3215 -1.8904 -1.9455c -1.3398,-0.5873 -2.0372,-0.9727 -2.0372 -2.3493c 0.0000,-1.2297 1.0829,-2.1107 2.5328 -2.1107c 0.9177,-0.0000 1.5968,0.1652 2.1657 0.4588c 0.1101,0.5873 0.1652,1.2113 0.2019 1.8721l -0.4955,0.0184 c -0.3854,-1.5050 -1.4866,-1.7986 -1.8721 -1.7986c -0.6974,-0.0000 -1.4132,0.2753 -1.4132 1.2847c 0.0000,0.7341 0.3487,1.1012 1.3582 1.4683c 1.4866,0.5506 2.6796,1.2113 2.6796 2.6796c 0.0000,1.8170 -1.9271,2.3493 -2.7897 2.3493c -0.6424,-0.0000 -1.1746,-0.0734 -1.6518 -0.2019c -0.1285,-0.0184 -0.2202,-0.0367 -0.3487 -0.0367c -0.0918,-0.0000 -0.2386,0.0184 -0.4221 0.0551c 0.0000,-0.7708 -0.0551,-1.7069 -0.1285 -2.6062ZM 466.8056,309.6462 ZM 472.1465,305.1495 l -1.4499,0.3671 c -1.6151,0.4955 -1.8537,1.3398 -1.8537 2.1657c 0.0000,0.5690 0.2753,1.4316 1.4316 1.4316c 0.5506,-0.0000 1.3949,-0.5323 1.8721 -0.9360v -3.0283 ZM 472.1465,305.1495 ZM 473.3211,309.8664 c -0.6974,-0.0000 -1.0829,-0.6240 -1.1563 -1.0645l -0.4221,0.2937 c -0.8443,0.5873 -1.1563,0.7708 -2.0005 0.7708c -1.2847,-0.0000 -2.2208,-0.7341 -2.2208 -2.1107c 0.0000,-1.3949 1.1930,-2.3493 2.9366 -2.7897l 1.6885,-0.4221 c 0.0000,-2.0740 -0.9544,-2.4594 -1.5784 -2.4594c -0.6974,-0.0000 -1.5050,0.3120 -1.5050 0.8810c 0.0000,0.2019 0.0367,0.3120 0.0551 0.3671c 0.0367,0.0734 0.0551,0.2019 0.0551 0.3304c 0.0000,0.2386 -0.1835,0.6057 -0.7158 0.6057c -0.4405,-0.0000 -0.7341,-0.2937 -0.7341 -0.7341c 0.0000,-1.0645 1.7252,-2.0005 2.8999 -2.0005c 1.3398,-0.0000 2.8815,0.5506 2.8815 3.1568v 2.6980 c 0.0000,1.1196 0.0184,1.5968 0.4405 1.5968c 0.4038,-0.0000 0.5139,-0.5139 0.5323 -0.9177l 0.4588,0.0918 c -0.1101,1.3398 -0.6791,1.7069 -1.6151 1.7069ZM 475.0831,309.6462 ZM 476.7165,308.3247 v -4.5700 c 0.0000,-0.9177 -0.1285,-1.1196 -0.4038 -1.1196c -0.2386,-0.0000 -0.4588,0.0184 -0.7708 0.0918l -0.0918,-0.5139 c 1.1563,-0.2019 1.3582,-0.2569 1.9088 -0.5323c 0.1835,-0.0918 0.3304,-0.1468 0.4588 -0.1468h 0.2753 l -0.0551,1.6518 h 0.0551 c 0.4772,-0.7158 1.2847,-1.6518 2.1474 -1.6518c 0.7525,-0.0000 1.0278,0.3671 1.0278 0.8443c 0.0000,0.4772 -0.3120,0.7708 -0.7892 0.7708c -0.3671,-0.0000 -0.5690,-0.1468 -0.7525 -0.3304c -0.1101,-0.1101 -0.2386,-0.1652 -0.3671 -0.1652c -0.2019,-0.0000 -0.6057,0.3304 -1.0462 0.9544c -0.1285,0.1652 -0.2202,0.4038 -0.2202 0.6424v 4.0745 c 0.0000,0.5323 0.1835,0.8076 0.7892 0.8076h 0.5323 c 0.0918,-0.0000 0.1652,0.0551 0.1652 0.1468v 0.3487 l -0.0367,0.0367 c 0.0000,-0.0000 -1.4499,-0.0367 -2.1657 -0.0367c -0.6607,-0.0000 -1.9088,0.0367 -1.9088 0.0367l -0.0184,-0.0367 v -0.3487 c 0.0000,-0.0918 0.0367,-0.1468 0.1285 -0.1468h 0.3487 c 0.6240,-0.0000 0.7892,-0.2753 0.7892 -0.8076ZM 481.4518,309.6462 ZM 483.5441,304.5622 h 3.3771 c 0.1835,-0.0000 0.2569,-0.0918 0.2569 -0.2569c 0.0000,-1.7069 -0.8626,-2.1474 -1.5233 -2.1474c -0.4221,-0.0000 -1.7986,0.1652 -2.1107 2.4043ZM 483.5441,304.5622 ZM 488.3894,307.9393 l 0.3671,0.2937 c -0.6974,0.9544 -1.7803,1.6335 -3.1018 1.6335c -2.5144,-0.0000 -3.5789,-1.8721 -3.5789 -3.8726c 0.0000,-2.7897 1.8354,-4.4599 3.5789 -4.4599c 2.4227,-0.0000 2.9916,1.8904 2.9916 3.4321c 0.0000,0.2019 -0.1285,0.3120 -0.3304 0.3120h -4.8270 c -0.0184,0.1101 -0.0184,0.2202 -0.0184 0.3671c 0.0000,1.8721 1.3031,3.3220 2.6246 3.3220c 1.0094,-0.0000 1.6518,-0.3304 2.2942 -1.0278ZM 493.8955,309.6462 ZM 499.9521,302.2680 h -0.0918 c -0.0918,-0.0000 -0.1468,-0.0734 -0.1468 -0.1285v -0.3671 l 0.0734,-0.0367 c 0.0000,-0.0000 1.0462,0.0367 1.7252 0.0367c 0.4772,-0.0000 1.2480,-0.0367 1.2480 -0.0367l 0.0367,0.0367 v 0.3304 c 0.0000,0.0918 -0.0918,0.1652 -0.2019 0.1652c -0.5323,-0.0000 -0.9544,0.2386 -1.2480 0.9544l -2.5328,6.2219 c -0.1285,0.3120 -0.2569,0.4221 -0.4405 0.4221c -0.2386,-0.0000 -0.3487,-0.1101 -0.4588 -0.3854l -2.4961,-6.3320 c -0.2569,-0.6607 -0.6424,-0.8810 -1.1746 -0.8810c -0.0918,-0.0000 -0.1835,-0.0367 -0.1835 -0.1285v -0.3671 l 0.0551,-0.0367 c 0.0000,-0.0000 0.9727,0.0367 1.5968 0.0367c 0.7158,-0.0000 1.8354,-0.0367 1.8354 -0.0367l 0.0734,0.0367 v 0.3487 c 0.0000,0.1285 -0.1101,0.1468 -0.1652 0.1468h -0.3120 c -0.3671,0.0184 -0.5323,0.1285 -0.5323 0.3120c 0.0000,0.1285 0.0734,0.2753 0.1835 0.5323l 1.5784,4.0011 l 0.3120,0.8443 l 0.3120,-0.7892 l 1.6335,-4.0194 c 0.0918,-0.2019 0.1468,-0.3671 0.1468 -0.4955c 0.0000,-0.2753 -0.2019,-0.3854 -0.8259 -0.3854ZM 503.0172,309.6462 ZM 505.1095,304.5622 h 3.3771 c 0.1835,-0.0000 0.2569,-0.0918 0.2569 -0.2569c 0.0000,-1.7069 -0.8626,-2.1474 -1.5233 -2.1474c -0.4221,-0.0000 -1.7986,0.1652 -2.1107 2.4043ZM 505.1095,304.5622 ZM 509.9548,307.9393 l 0.3671,0.2937 c -0.6974,0.9544 -1.7803,1.6335 -3.1018 1.6335c -2.5144,-0.0000 -3.5789,-1.8721 -3.5789 -3.8726c 0.0000,-2.7897 1.8354,-4.4599 3.5789 -4.4599c 2.4227,-0.0000 2.9916,1.8904 2.9916 3.4321c 0.0000,0.2019 -0.1285,0.3120 -0.3304 0.3120h -4.8270 c -0.0184,0.1101 -0.0184,0.2202 -0.0184 0.3671c 0.0000,1.8721 1.3031,3.3220 2.6246 3.3220c 1.0094,-0.0000 1.6518,-0.3304 2.2942 -1.0278ZM 510.8725,309.6462 ZM 512.5060,308.3247 v -4.5700 c 0.0000,-0.9177 -0.1285,-1.1196 -0.4038 -1.1196c -0.2386,-0.0000 -0.4588,0.0184 -0.7708 0.0918l -0.0918,-0.5139 c 1.1563,-0.2019 1.3582,-0.2569 1.9088 -0.5323c 0.1835,-0.0918 0.3304,-0.1468 0.4588 -0.1468h 0.2753 l -0.0551,1.6518 h 0.0551 c 0.4772,-0.7158 1.2847,-1.6518 2.1474 -1.6518c 0.7525,-0.0000 1.0278,0.3671 1.0278 0.8443c 0.0000,0.4772 -0.3120,0.7708 -0.7892 0.7708c -0.3671,-0.0000 -0.5690,-0.1468 -0.7525 -0.3304c -0.1101,-0.1101 -0.2386,-0.1652 -0.3671 -0.1652c -0.2019,-0.0000 -0.6057,0.3304 -1.0462 0.9544c -0.1285,0.1652 -0.2202,0.4038 -0.2202 0.6424v 4.0745 c 0.0000,0.5323 0.1835,0.8076 0.7892 0.8076h 0.5323 c 0.0918,-0.0000 0.1652,0.0551 0.1652 0.1468v 0.3487 l -0.0367,0.0367 c 0.0000,-0.0000 -1.4499,-0.0367 -2.1657 -0.0367c -0.6607,-0.0000 -1.9088,0.0367 -1.9088 0.0367l -0.0184,-0.0367 v -0.3487 c 0.0000,-0.0918 0.0367,-0.1468 0.1285 -0.1468h 0.3487 c 0.6240,-0.0000 0.7892,-0.2753 0.7892 -0.8076ZM 517.2412,309.6462 ZM 521.0587,302.1212 c 0.0000,0.0918 -0.1101,0.1468 -0.2019 0.1468c -0.5506,-0.0000 -0.7892,0.1101 -0.7892 0.4038c 0.0000,0.1101 0.0367,0.2569 0.1101 0.4221l 2.0189,4.7352 l 2.0372,-4.6618 c 0.0918,-0.1652 0.1285,-0.3120 0.1285 -0.4221c 0.0000,-0.3854 -0.3671,-0.4772 -0.7708 -0.4772h -0.0734 c -0.0918,-0.0000 -0.1835,-0.0734 -0.1835 -0.1285v -0.3487 l 0.0367,-0.0551 c 0.0000,-0.0000 1.0829,0.0367 1.7252 0.0367c 0.5139,-0.0000 1.2664,-0.0367 1.2664 -0.0367l 0.0551,0.0367 v 0.3487 c 0.0000,0.0918 -0.0734,0.1468 -0.2019 0.1468c -0.6974,-0.0000 -1.0462,0.7158 -1.3031 1.2480c -0.9727,2.0556 -1.7803,3.9460 -3.2486 7.4883c -0.5506,1.3215 -1.2113,2.8632 -2.5144 2.8632c -0.3487,-0.0000 -1.0645,-0.2019 -1.0645 -0.8626c 0.0000,-0.5506 0.4038,-0.7158 0.6974 -0.7158c 0.2753,-0.0000 0.4588,0.1101 0.5690 0.2569c 0.1835,0.1835 0.3120,0.3120 0.4955 0.3120c 0.2753,-0.0000 0.9177,-1.5784 1.3765 -2.6980c 0.1101,-0.2202 0.1468,-0.4038 0.1468 -0.5690c 0.0000,-0.1835 -0.1652,-0.6791 -0.3120 -1.0462l -2.3125,-5.3776 c -0.2937,-0.6974 -0.4955,-0.8993 -1.1196 -0.8993c -0.1101,-0.0000 -0.1835,-0.0551 -0.1835 -0.1285v -0.3671 l 0.0367,-0.0367 c 0.0000,-0.0000 0.8076,0.0367 1.3582 0.0367c 0.8626,-0.0000 2.1841,-0.0367 2.1841 -0.0367l 0.0367,0.0551 v 0.3304 ZM 531.1715,309.6462 ZM 539.0452,307.5172 c 0.0000,0.9177 0.0918,1.2113 0.4588 1.2113c 0.2202,-0.0000 0.6240,-0.0367 0.9360 -0.0918l 0.0734,0.5139 c -1.1196,0.2019 -2.0189,0.3854 -2.4410 0.7158h -0.4038 l 0.0551,-1.3582 h -0.0551 c -1.0094,1.1012 -1.8354,1.3582 -2.5879 1.3582c -1.8170,-0.0000 -2.2942,-1.2297 -2.2942 -2.4961v -4.1846 c 0.0000,-0.6057 -0.1285,-0.9177 -0.8076 -0.9177c -0.0734,-0.0000 -0.2019,0.0184 -0.3120 0.0184l -0.0551,-0.0184 v -0.4772 l 0.0551,-0.0551 c 0.0000,-0.0000 1.2480,0.0367 1.8354 0.0367c 0.2569,-0.0000 0.6791,-0.0367 0.6791 -0.0367l -0.0184,1.4683 v 3.9093 c 0.0000,1.6335 0.8443,1.9271 1.3949 1.9271c 0.4221,-0.0000 0.8076,-0.1652 1.1930 -0.4405c 0.4405,-0.3304 0.7341,-0.5873 0.9177 -0.8259v -4.5333 c 0.0000,-0.6607 -0.0918,-0.9727 -0.7708 -0.9727c -0.1101,-0.0000 -0.3120,0.0184 -0.3671 0.0184l -0.0367,-0.0367 v -0.4588 l 0.0367,-0.0551 c 0.0000,-0.0000 1.3031,0.0367 1.8170 0.0367c 0.4221,-0.0000 0.7158,-0.0367 0.7158 -0.0367l -0.0184,1.4499 v 4.3314 ZM 540.6603,309.6462 ZM 541.4495,307.0767 l 0.4955,-0.0184 c 0.0551,0.4588 0.2569,1.3398 0.6607 1.7619c 0.1835,0.2019 0.6791,0.5323 1.3582 0.5323c 0.6424,-0.0000 1.5968,-0.5139 1.5968 -1.4132c 0.0000,-0.7892 -0.4405,-1.3215 -1.8904 -1.9455c -1.3398,-0.5873 -2.0372,-0.9727 -2.0372 -2.3493c 0.0000,-1.2297 1.0829,-2.1107 2.5328 -2.1107c 0.9177,-0.0000 1.5968,0.1652 2.1657 0.4588c 0.1101,0.5873 0.1652,1.2113 0.2019 1.8721l -0.4955,0.0184 c -0.3854,-1.5050 -1.4866,-1.7986 -1.8721 -1.7986c -0.6974,-0.0000 -1.4132,0.2753 -1.4132 1.2847c 0.0000,0.7341 0.3487,1.1012 1.3582 1.4683c 1.4866,0.5506 2.6796,1.2113 2.6796 2.6796c 0.0000,1.8170 -1.9271,2.3493 -2.7897 2.3493c -0.6424,-0.0000 -1.1746,-0.0734 -1.6518 -0.2019c -0.1285,-0.0184 -0.2202,-0.0367 -0.3487 -0.0367c -0.0918,-0.0000 -0.2386,0.0184 -0.4221 0.0551c 0.0000,-0.7708 -0.0551,-1.7069 -0.1285 -2.6062ZM 547.4695,309.6462 ZM 549.5618,304.5622 h 3.3771 c 0.1835,-0.0000 0.2569,-0.0918 0.2569 -0.2569c 0.0000,-1.7069 -0.8626,-2.1474 -1.5233 -2.1474c -0.4221,-0.0000 -1.7986,0.1652 -2.1107 2.4043ZM 549.5618,304.5622 ZM 554.4071,307.9393 l 0.3671,0.2937 c -0.6974,0.9544 -1.7803,1.6335 -3.1018 1.6335c -2.5144,-0.0000 -3.5789,-1.8721 -3.5789 -3.8726c 0.0000,-2.7897 1.8354,-4.4599 3.5789 -4.4599c 2.4227,-0.0000 2.9916,1.8904 2.9916 3.4321c 0.0000,0.2019 -0.1285,0.3120 -0.3304 0.3120h -4.8270 c -0.0184,0.1101 -0.0184,0.2202 -0.0184 0.3671c 0.0000,1.8721 1.3031,3.3220 2.6246 3.3220c 1.0094,-0.0000 1.6518,-0.3304 2.2942 -1.0278ZM 555.3248,309.6462 ZM 557.0134,308.3247 v -5.8548 h -1.2664 c -0.0734,-0.0000 -0.0918,-0.0184 -0.0918 -0.0918v -0.2569 c 0.0000,-0.1468 0.0918,-0.3671 0.4221 -0.3671h 0.9360 v -0.7158 c 0.0000,-2.8632 1.4866,-4.2030 3.0283 -4.2030c 0.6974,-0.0000 1.1746,0.1835 1.6335 0.4955c 0.3671,0.2753 0.5323,0.5873 0.5323 0.8810c 0.0000,0.3854 -0.2753,0.6607 -0.6240 0.6607c -0.3671,-0.0000 -0.6057,-0.2019 -0.7525 -0.5139c -0.2386,-0.6057 -0.5873,-0.8993 -1.1379 -0.8993c -0.6057,-0.0000 -1.3031,0.4405 -1.3031 3.2669v 1.0278 h 2.0189 c 0.0918,-0.0000 0.1468,0.0367 0.1468 0.1101v 0.3671 c 0.0000,0.1652 -0.2569,0.2386 -0.4221 0.2386h -1.7436 v 5.8548 c 0.0000,0.5323 0.1835,0.8076 0.7892 0.8076h 0.6057 c 0.0734,-0.0000 0.1468,0.0551 0.1468 0.1468v 0.3487 l -0.0367,0.0367 c 0.0000,-0.0000 -1.5050,-0.0367 -2.2208 -0.0367c -0.6607,-0.0000 -1.9088,0.0367 -1.9088 0.0367l -0.0367,-0.0367 v -0.3487 c 0.0000,-0.0918 0.0551,-0.1468 0.1468 -0.1468h 0.3487 c 0.6240,-0.0000 0.7892,-0.2753 0.7892 -0.8076ZM 562.0239,309.6462 ZM 569.8975,307.5172 c 0.0000,0.9177 0.0918,1.2113 0.4588 1.2113c 0.2202,-0.0000 0.6240,-0.0367 0.9360 -0.0918l 0.0734,0.5139 c -1.1196,0.2019 -2.0189,0.3854 -2.4410 0.7158h -0.4038 l 0.0551,-1.3582 h -0.0551 c -1.0094,1.1012 -1.8354,1.3582 -2.5879 1.3582c -1.8170,-0.0000 -2.2942,-1.2297 -2.2942 -2.4961v -4.1846 c 0.0000,-0.6057 -0.1285,-0.9177 -0.8076 -0.9177c -0.0734,-0.0000 -0.2019,0.0184 -0.3120 0.0184l -0.0551,-0.0184 v -0.4772 l 0.0551,-0.0551 c 0.0000,-0.0000 1.2480,0.0367 1.8354 0.0367c 0.2569,-0.0000 0.6791,-0.0367 0.6791 -0.0367l -0.0184,1.4683 v 3.9093 c 0.0000,1.6335 0.8443,1.9271 1.3949 1.9271c 0.4221,-0.0000 0.8076,-0.1652 1.1930 -0.4405c 0.4405,-0.3304 0.7341,-0.5873 0.9177 -0.8259v -4.5333 c 0.0000,-0.6607 -0.0918,-0.9727 -0.7708 -0.9727c -0.1101,-0.0000 -0.3120,0.0184 -0.3671 0.0184l -0.0367,-0.0367 v -0.4588 l 0.0367,-0.0551 c 0.0000,-0.0000 1.3031,0.0367 1.8170 0.0367c 0.4221,-0.0000 0.7158,-0.0367 0.7158 -0.0367l -0.0184,1.4499 v 4.3314 ZM 571.5127,309.6462 ZM 573.2562,308.3247 v -9.1951 c 0.0000,-1.0462 -0.1835,-1.3398 -0.5506 -1.3398l -0.5873,0.0734 c -0.0551,-0.0000 -0.1101,-0.0367 -0.1101 -0.0918l -0.0367,-0.4588 c 0.2937,-0.0000 0.9727,-0.1101 1.2847 -0.1652c 0.3304,-0.0734 0.5873,-0.1468 0.9544 -0.3120h 0.4038 v 11.4893 c 0.0000,0.5323 0.2019,0.8076 0.7892 0.8076h 0.4405 c 0.0734,-0.0000 0.1468,0.0551 0.1468 0.1468v 0.3487 l -0.0367,0.0367 c 0.0000,-0.0000 -1.3398,-0.0367 -2.0556 -0.0367c -0.6424,-0.0000 -1.9822,0.0367 -1.9822 0.0367l -0.0184,-0.0367 v -0.3487 c 0.0000,-0.0918 0.0367,-0.1468 0.1285 -0.1468h 0.4405 c 0.6057,-0.0000 0.7892,-0.2753 0.7892 -0.8076Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(31,119,180)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.1302,261.6175 ZM 58.8520,250.1793 c 0.0000,-2.4908 -1.9337,-3.4741 -4.2934 -4.1295l 0.1639,-0.9832 c 1.7043,0.3605 3.5724,0.7210 5.4077 0.8521l -0.0000,8.3574 l -0.0328,2.5564 c -0.0000,0.3933 0.0655,4.1623 0.0655 4.1623l -0.0655,0.0655 l -0.6227,-0.0000 c -0.1639,-0.0000 -0.2622,-0.1311 -0.2622 -0.2622l 0.0000,-0.9832 c 0.0000,-1.3765 -0.2950,-1.6715 -1.4421 -1.6715l -16.4527,-0.0000 c -0.9832,-0.0000 -1.4421,0.4916 -1.4421 1.7698l -0.0000,0.8849 c -0.0000,0.1311 -0.0983,0.2622 -0.2622 0.2622l -0.6227,-0.0000 l -0.0328,-0.0655 c 0.0000,-0.0000 0.0328,-2.8514 0.0328 -4.1295c 0.0000,-1.1799 -0.0328,-4.2279 -0.0328 -4.2279l 0.0328,-0.0655 l 0.6227,0.0000 c 0.1639,0.0000 0.2622,0.0983 0.2622 0.2622l -0.0000,0.8521 c -0.0000,1.3437 0.5244,1.8026 1.4421 1.8026l 15.8955,0.0000 c 1.0160,0.0000 1.6387,-0.5899 1.6387 -1.5404l 0.0000,-3.7690 ZM 60.1302,244.3783 ZM 38.5648,232.0880 c 0.0000,-3.9985 1.4748,-5.1783 1.4748 -7.1448c 2.3597,-0.2294 3.6707,-0.4261 5.0472 -0.7210l 0.1966,0.9832 c -2.8186,0.8521 -5.5061,2.5892 -5.5061 7.3414c -0.0000,4.4245 3.9001,7.9314 9.6356 7.9314c 4.3262,0.0000 9.9306,-3.1463 9.9306 -8.9801c 0.0000,-1.7698 -0.5899,-3.7035 -1.6387 -4.8178l -5.0145,-0.0000 c -1.0160,-0.0000 -1.4421,0.4916 -1.4421 1.8026l -0.0000,0.8521 c -0.0000,0.1311 -0.0983,0.2622 -0.2622 0.2622l -0.8521,-0.0000 l -0.0655,-0.0655 c 0.0000,-0.0000 0.0655,-2.8514 0.0655 -4.1295c 0.0000,-1.1471 -0.0655,-3.0480 -0.0655 -3.0480l 0.0655,-0.0655 l 0.8521,0.0000 c 0.1639,0.0000 0.2622,0.0983 0.2622 0.2622l -0.0000,0.0328 c -0.0000,1.1471 0.5244,1.4421 1.4421 1.4421l 3.8018,0.0000 c 0.3605,0.0000 0.6227,-0.1639 0.9177 -0.5244c 1.9009,2.2286 3.1135,4.8834 3.1135 8.7507c -0.0000,6.5876 -4.7850,11.0777 -10.4550 11.0777c -7.2103,-0.0000 -11.5037,-5.6044 -11.5037 -11.2416ZM 60.1302,221.6658 ZM 57.7704,218.5522 l -16.4199,-0.0000 c -1.8681,-0.0000 -2.3925,0.3277 -2.3925 0.9832l 0.1311,1.0488 c -0.0000,0.0983 -0.0655,0.1966 -0.1639 0.1966l -0.8194,0.0655 c 0.0000,-0.5244 -0.1966,-1.7370 -0.2950 -2.2942c -0.1311,-0.5899 -0.2622,-1.0488 -0.5572 -1.7043l 0.0000,-0.7210 l 20.5167,0.0000 c 0.9505,0.0000 1.4421,-0.3605 1.4421 -1.4093l 0.0000,-0.7866 c 0.0000,-0.1311 0.0983,-0.2622 0.2622 -0.2622l 0.6227,0.0000 l 0.0655,0.0655 c 0.0000,-0.0000 -0.0655,2.3925 -0.0655 3.6707c -0.0000,1.1471 0.0655,3.5396 0.0655 3.5396l -0.0655,0.0328 l -0.6227,-0.0000 c -0.1639,-0.0000 -0.2622,-0.0655 -0.2622 -0.2294l 0.0000,-0.7866 c 0.0000,-1.0815 -0.4916,-1.4093 -1.4421 -1.4093ZM 60.1302,213.1445 ZM 46.6928,206.3275 c 0.1639,0.0000 0.2622,0.1966 0.2622 0.3605c -0.0000,0.9832 0.1966,1.4093 0.7210 1.4093c 0.1966,0.0000 0.4588,-0.0655 0.7538 -0.1966l 8.4557,-3.6052 l -8.3246,-3.6379 c -0.2950,-0.1639 -0.5572,-0.2294 -0.7538 -0.2294c -0.6883,-0.0000 -0.8521,0.6555 -0.8521 1.3765l -0.0000,0.1311 c -0.0000,0.1639 -0.1311,0.3277 -0.2294 0.3277l -0.6227,-0.0000 l -0.0983,-0.0655 c 0.0000,-0.0000 0.0655,-1.9337 0.0655 -3.0808c 0.0000,-0.9177 -0.0655,-2.2614 -0.0655 -2.2614l 0.0655,-0.0983 l 0.6227,0.0000 c 0.1639,0.0000 0.2622,0.1311 0.2622 0.3605c -0.0000,1.2454 1.2782,1.8681 2.2286 2.3270c 3.6707,1.7370 7.0465,3.1791 13.3719 5.8010c 2.3597,0.9832 5.1128,2.1631 5.1128 4.4901c -0.0000,0.6227 -0.3605,1.9009 -1.5404 1.9009c -0.9832,-0.0000 -1.2782,-0.7210 -1.2782 -1.2454c 0.0000,-0.4916 0.1966,-0.8194 0.4588 -1.0160c 0.3277,-0.3277 0.5572,-0.5572 0.5572 -0.8849c 0.0000,-0.4916 -2.8186,-1.6387 -4.8178 -2.4581c -0.3933,-0.1966 -0.7210,-0.2622 -1.0160 -0.2622c -0.3277,-0.0000 -1.2126,0.2950 -1.8681 0.5572l -9.6028,4.1295 c -1.2454,0.5244 -1.6059,0.8849 -1.6059 1.9992c -0.0000,0.1966 -0.0983,0.3277 -0.2294 0.3277l -0.6555,-0.0000 l -0.0655,-0.0655 c 0.0000,-0.0000 0.0655,-1.4421 0.0655 -2.4253c 0.0000,-1.5404 -0.0655,-3.9001 -0.0655 -3.9001l 0.0983,-0.0655 l 0.5899,0.0000 ZM 60.1302,196.4624 ZM 49.8391,191.5791 l 8.1608,0.0000 c 1.3437,-1.1471 1.4093,-2.2286 1.4093 -2.7530c 0.0000,-3.5068 -3.2774,-4.2934 -6.0960 -4.2934c -3.9657,-0.0000 -6.1616,1.6059 -6.1616 3.6052c -0.0000,1.1143 0.9505,2.7203 2.6875 3.4413ZM 49.8391,191.5791 ZM 65.3085,194.0044 l -16.2232,-0.0000 c -1.2454,-0.0000 -1.4748,0.2950 -1.4748 0.7538c -0.0000,0.4261 0.0328,0.8194 0.1639 1.3765l -0.9177,0.1639 c -0.3605,-2.0975 -0.4916,-2.4908 -0.9505 -3.4085c -0.1639,-0.3605 -0.2622,-0.5899 -0.2622 -0.8194l 0.0000,-0.4916 l 2.6219,0.0983 l 0.0000,-0.0983 c -2.2942,-1.5076 -2.6219,-3.2774 -2.6219 -4.3262c 0.0000,-3.1791 3.3102,-5.2766 6.7843 -5.2766c 2.6547,0.0000 4.6867,0.8194 6.1943 2.2942c 1.2782,1.2782 1.9009,2.6219 1.9009 4.3590c -0.0000,1.1799 -0.2622,2.0975 -0.7210 2.9497l 5.5061,0.0000 c 0.9505,0.0000 1.4421,-0.3605 1.4421 -1.4093l 0.0000,-0.6227 c 0.0000,-0.1639 0.0983,-0.2950 0.2622 -0.2950l 0.6227,0.0000 l 0.0655,0.0655 c 0.0000,-0.0000 -0.0655,2.2614 -0.0655 3.5396c -0.0000,1.1471 0.0655,3.3757 0.0655 3.3757l -0.0655,0.0655 l -0.6227,-0.0000 c -0.1639,-0.0000 -0.2622,-0.0983 -0.2622 -0.2622l 0.0000,-0.6227 c 0.0000,-1.0815 -0.4916,-1.4093 -1.4421 -1.4093ZM 60.1302,180.7636 ZM 37.2538,175.4214 l 11.1105,0.0000 c -2.1959,-2.1959 -2.7203,-4.1295 -2.7203 -5.4077c 0.0000,-2.3597 1.8026,-3.5396 5.1783 -3.5396l 6.9481,0.0000 c 0.9505,0.0000 1.4421,-0.3277 1.4421 -1.4093l 0.0000,-0.6227 c 0.0000,-0.1311 0.0983,-0.2622 0.2622 -0.2622l 0.6227,0.0000 l 0.0655,0.0655 c 0.0000,-0.0000 -0.0655,2.2286 -0.0655 3.5396c -0.0000,1.1471 0.0655,3.3757 0.0655 3.3757l -0.0655,0.0655 l -0.6227,-0.0000 c -0.1639,-0.0000 -0.2622,-0.0983 -0.2622 -0.2622l 0.0000,-0.6227 c 0.0000,-1.1143 -0.4916,-1.4093 -1.4421 -1.4093l -7.3086,-0.0000 c -2.6547,-0.0000 -3.2774,0.7210 -3.2774 2.5564c -0.0000,0.9505 0.8521,2.3597 2.3925 3.9329l 8.1936,0.0000 c 0.9505,0.0000 1.4421,-0.3277 1.4421 -1.4093l 0.0000,-0.6227 c 0.0000,-0.1311 0.0983,-0.2622 0.2622 -0.2622l 0.6227,0.0000 l 0.0655,0.0655 c 0.0000,-0.0000 -0.0655,2.2286 -0.0655 3.5068c -0.0000,1.1799 0.0655,3.3757 0.0655 3.3757l -0.0655,0.0655 l -0.6227,-0.0000 c -0.1639,-0.0000 -0.2622,-0.0655 -0.2622 -0.2294l 0.0000,-0.6227 c 0.0000,-1.1143 -0.4916,-1.4093 -1.4421 -1.4093l -16.4199,-0.0000 c -1.8681,-0.0000 -2.3925,0.2950 -2.3925 0.9505l 0.1311,1.0815 c -0.0000,0.0983 -0.0655,0.1639 -0.1639 0.1639l -0.8194,0.0655 c 0.0000,-0.5244 -0.1966,-1.7043 -0.2950 -2.2614c -0.1311,-0.5899 -0.2622,-1.0815 -0.5572 -1.7370l 0.0000,-0.7210 ZM 60.1302,155.5930 ZM 60.5235,143.9581 c -0.0000,7.0465 -5.4405,10.4222 -10.7172 10.4222c -6.4565,-0.0000 -11.2416,-5.0145 -11.2416 -10.4550c 0.0000,-4.0312 1.3765,-5.3094 1.4748 -7.1776c 1.8026,-0.0983 3.3757,-0.3933 5.0800 -0.7210l 0.1311,0.9832 c -2.8186,0.8521 -5.4733,2.7530 -5.4733 7.2759c -0.0000,2.5892 2.7530,7.2431 9.4062 7.2431c 4.7850,0.0000 9.9961,-2.4581 9.9961 -7.5381c 0.0000,-3.0480 -1.0815,-5.2766 -3.6379 -7.6036l 0.4916,-0.7538 c 2.9169,2.2286 4.4901,5.1456 4.4901 8.3246ZM 60.1302,134.4864 ZM 37.2538,129.1442 l 11.1105,0.0000 c -2.1959,-2.1959 -2.7203,-4.1295 -2.7203 -5.4077c 0.0000,-2.3597 1.8026,-3.5396 5.1783 -3.5396l 6.9481,0.0000 c 0.9505,0.0000 1.4421,-0.3277 1.4421 -1.4093l 0.0000,-0.6227 c 0.0000,-0.1311 0.0983,-0.2622 0.2622 -0.2622l 0.6227,0.0000 l 0.0655,0.0655 c 0.0000,-0.0000 -0.0655,2.2286 -0.0655 3.5396c -0.0000,1.1471 0.0655,3.3757 0.0655 3.3757l -0.0655,0.0655 l -0.6227,-0.0000 c -0.1639,-0.0000 -0.2622,-0.0983 -0.2622 -0.2622l 0.0000,-0.6227 c 0.0000,-1.1143 -0.4916,-1.4093 -1.4421 -1.4093l -7.3086,-0.0000 c -2.6547,-0.0000 -3.2774,0.7210 -3.2774 2.5564c -0.0000,0.9505 0.8521,2.3597 2.3925 3.9329l 8.1936,0.0000 c 0.9505,0.0000 1.4421,-0.3277 1.4421 -1.4093l 0.0000,-0.6227 c 0.0000,-0.1311 0.0983,-0.2622 0.2622 -0.2622l 0.6227,0.0000 l 0.0655,0.0655 c 0.0000,-0.0000 -0.0655,2.2286 -0.0655 3.5068c -0.0000,1.1799 0.0655,3.3757 0.0655 3.3757l -0.0655,0.0655 l -0.6227,-0.0000 c -0.1639,-0.0000 -0.2622,-0.0655 -0.2622 -0.2294l 0.0000,-0.6227 c 0.0000,-1.1143 -0.4916,-1.4093 -1.4421 -1.4093l -16.4199,-0.0000 c -1.8681,-0.0000 -2.3925,0.2950 -2.3925 0.9505l 0.1311,1.0815 c -0.0000,0.0983 -0.0655,0.1639 -0.1639 0.1639l -0.8194,0.0655 c 0.0000,-0.5244 -0.1966,-1.7043 -0.2950 -2.2614c -0.1311,-0.5899 -0.2622,-1.0815 -0.5572 -1.7370l 0.0000,-0.7210 ZM 60.1302,117.5094 ZM 52.1005,107.9721 l 0.6555,2.5892 c 0.8849,2.8841 2.3925,3.3102 3.8674 3.3102c 1.0160,0.0000 2.5564,-0.4916 2.5564 -2.5564c 0.0000,-0.9832 -0.9505,-2.4908 -1.6715 -3.3430l -5.4077,-0.0000 ZM 52.1005,107.9721 ZM 60.5235,105.8745 c -0.0000,1.2454 -1.1143,1.9337 -1.9009 2.0648l 0.5244,0.7538 c 1.0488,1.5076 1.3765,2.0648 1.3765 3.5724c -0.0000,2.2942 -1.3110,3.9657 -3.7690 3.9657c -2.4908,-0.0000 -4.1951,-2.1303 -4.9817 -5.2439l -0.7538,-3.0152 c -3.7035,-0.0000 -4.3917,1.7043 -4.3917 2.8186c -0.0000,1.2454 0.5572,2.6875 1.5732 2.6875c 0.3605,0.0000 0.5572,-0.0655 0.6555 -0.0983c 0.1311,-0.0655 0.3605,-0.0983 0.5899 -0.0983c 0.4261,0.0000 1.0815,0.3277 1.0815 1.2782c -0.0000,0.7866 -0.5244,1.3110 -1.3110 1.3110c -1.9009,-0.0000 -3.5724,-3.0808 -3.5724 -5.1783c 0.0000,-2.3925 0.9832,-5.1456 5.6372 -5.1456l 4.8178,0.0000 c 1.9992,0.0000 2.8514,-0.0328 2.8514 -0.7866c 0.0000,-0.7210 -0.9177,-0.9177 -1.6387 -0.9505l 0.1639,-0.8194 c 2.3925,0.1966 3.0480,1.2126 3.0480 2.8841ZM 60.1302,102.7282 ZM 57.7704,99.8113 l -8.1608,-0.0000 c -1.6387,-0.0000 -1.9992,0.2294 -1.9992 0.7210c -0.0000,0.4261 0.0328,0.8194 0.1639 1.3765l -0.9177,0.1639 c -0.3605,-2.0648 -0.4588,-2.4253 -0.9505 -3.4085c -0.1639,-0.3277 -0.2622,-0.5899 -0.2622 -0.8194l 0.0000,-0.4916 l 2.9497,0.0983 l 0.0000,-0.0983 c -1.2782,-0.8521 -2.9497,-2.2942 -2.9497 -3.8346c 0.0000,-1.3437 0.6555,-1.8354 1.5076 -1.8354c 0.8521,0.0000 1.3765,0.5572 1.3765 1.4093c -0.0000,0.6555 -0.2622,1.0160 -0.5899 1.3437c -0.1966,0.1966 -0.2950,0.4261 -0.2950 0.6555c -0.0000,0.3605 0.5899,1.0815 1.7043 1.8681c 0.2950,0.2294 0.7210,0.3933 1.1471 0.3933l 7.2759,0.0000 c 0.9505,0.0000 1.4421,-0.3277 1.4421 -1.4093l 0.0000,-0.9505 c 0.0000,-0.1639 0.0983,-0.2950 0.2622 -0.2950l 0.6227,0.0000 l 0.0655,0.0655 c 0.0000,-0.0000 -0.0655,2.5892 -0.0655 3.8674c -0.0000,1.1799 0.0655,3.4085 0.0655 3.4085l -0.0655,0.0328 l -0.6227,-0.0000 c -0.1639,-0.0000 -0.2622,-0.0655 -0.2622 -0.2294l 0.0000,-0.6227 c 0.0000,-1.1143 -0.4916,-1.4093 -1.4421 -1.4093ZM 60.1302,91.3555 ZM 47.3155,85.9806 l 8.3902,0.0000 c 2.0320,0.0000 3.0152,-0.1966 3.0152 -1.0815c 0.0000,-0.8521 -0.2622,-1.5076 -0.9177 -2.3597l 0.5572,-0.5899 c 1.4421,1.2782 2.1631,2.5892 2.1631 4.0968c -0.0000,1.5076 -0.9177,2.3925 -3.2446 2.3925l -9.9634,-0.0000 l -0.0000,2.1303 c -0.0000,0.0983 -0.0328,0.1311 -0.1311 0.1311l -1.0160,-0.0000 c -0.0983,-0.0000 -0.1311,-0.0328 -0.1311 -0.0983c 0.0000,-2.1959 -1.2782,-2.7203 -3.7690 -2.7203l -0.6227,-0.0000 l -0.6555,-1.9009 l 5.0472,0.0000 l 0.0000,-3.6052 c 0.0000,-0.1639 0.0655,-0.2622 0.1966 -0.2622l 0.6555,0.0000 c 0.2950,0.0000 0.4261,0.4588 0.4261 0.7866l -0.0000,3.0808 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 576.2846,261.6175 l -0.0000,-158.1028 h -474.3083 l -0.0000,158.1028 Z"/></g></svg>
diff --git a/other/lglyphsExample.svg b/other/lglyphsExample.svg
--- a/other/lglyphsExample.svg
+++ b/other/lglyphsExample.svg
@@ -1,3 +1,3 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="100.0000" stroke-opacity="1" viewBox="0 0 400 100" font-size="1" width="400.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 322.3780,55.2562 ZM 325.6187,47.0339 c -0.3275,-0.0000 -1.0860,0.3103 -1.4652 0.4827l -0.2069,-0.5344 c 1.5169,-0.7067 2.1030,-1.0687 2.9649 -1.6893h 0.3275 v 8.6705 c 0.0000,0.6206 0.0862,0.7929 0.6550 0.7929h 0.8964 c 0.0517,-0.0000 0.1379,0.0345 0.1379 0.1379v 0.3792 l -2.3615,-0.0345 l -2.3960,0.0345 v -0.3792 c 0.0172,-0.0517 0.0345,-0.1379 0.1379 -0.1379h 1.0343 c 0.6550,-0.0000 0.6550,-0.2930 0.6550 -0.7929v -5.9297 c 0.0000,-0.5861 0.0000,-0.9998 -0.3792 -0.9998ZM 329.9281,55.2562 ZM 333.7031,45.8962 c -0.7412,-0.0000 -1.8272,0.7240 -1.8272 4.7403c 0.0000,1.4135 0.2586,4.2577 1.7755 4.2577c 0.2930,-0.0000 1.1204,-0.1896 1.4824 -1.5341c 0.2241,-0.8274 0.3448,-1.8617 0.3448 -3.3613c 0.0000,-2.1892 -0.5516,-3.4130 -1.0515 -3.8440c -0.1896,-0.1724 -0.4482,-0.2586 -0.7240 -0.2586ZM 333.7031,45.8962 ZM 333.6342,55.4630 c -1.8444,-0.0000 -3.0855,-2.3615 -3.0855 -4.9989c 0.0000,-3.2234 1.5341,-5.1713 3.1545 -5.1713c 0.7412,-0.0000 1.4824,0.4654 1.9823 1.1377c 0.7240,0.9653 1.1032,2.2581 1.1032 3.8785c 0.0000,3.8267 -1.8961,5.1540 -3.1545 5.1540Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="2.489491900092669" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 337.7238,81.4228 c 0.0000,-4.3054 -3.4902,-7.7957 -7.7957 -7.7957c -4.3054,-0.0000 -7.7957,3.4902 -7.7957 7.7957c -0.0000,4.3054 3.4902,7.7957 7.7957 7.7957c 4.3054,0.0000 7.7957,-3.4902 7.7957 -7.7957Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.1674,30.4103 ZM 305.6662,25.1701 c 0.0000,-0.1724 0.0172,-0.4309 0.0172 -0.6033c 0.0000,-2.8959 -1.2928,-3.6199 -2.1719 -3.6199c -0.7929,-0.0000 -1.6203,0.7412 -1.6203 2.5339c 0.0000,0.8274 0.4137,2.4650 2.0513 2.4650c 0.3620,-0.0000 1.0170,-0.0345 1.7238 -0.7757ZM 305.6662,25.1701 ZM 301.1328,30.1690 c 1.1377,-0.1034 2.0857,-0.3965 2.9304 -1.2066c 0.7757,-0.7757 1.3445,-1.9306 1.5514 -3.3096c -0.3965,0.4827 -1.3618,0.8446 -1.9996 0.8446c -2.5512,-0.0000 -2.8959,-2.1030 -2.8959 -2.8959c 0.0000,-1.1722 0.5861,-3.1545 2.9649 -3.1545c 1.2756,-0.0000 3.1889,0.7412 3.1889 4.1715c 0.0000,1.5859 -0.5516,3.1372 -1.7238 4.3266c -1.1032,1.1204 -2.2754,1.5859 -3.9646 1.6720Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="2.489491900092669" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 311.7382,56.5769 c 0.0000,-4.3054 -3.4902,-7.7957 -7.7957 -7.7957c -4.3054,-0.0000 -7.7957,3.4902 -7.7957 7.7957c -0.0000,4.3054 3.4902,7.7957 7.7957 7.7957c 4.3054,0.0000 7.7957,-3.4902 7.7957 -7.7957Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.1818,15.4104 ZM 278.0086,5.8608 c -0.9825,-0.0000 -1.6203,0.7757 -1.6203 1.5341c 0.0000,0.4999 0.2069,1.1032 1.2411 1.7755l 0.4999,0.3103 c 0.4482,-0.3275 1.4997,-1.1204 1.4997 -1.9996c 0.0000,-0.7585 -0.5516,-1.6203 -1.6203 -1.6203ZM 278.0086,5.8608 ZM 280.6459,7.4983 c 0.0000,1.0515 -1.1894,1.8789 -1.9134 2.3615l 0.9998,0.6550 c 0.8446,0.5516 1.2756,1.3101 1.2756 2.2581c 0.0000,1.2411 -1.0170,2.8442 -3.1545 2.8442c -1.7238,-0.0000 -2.9131,-0.9136 -2.9131 -2.5856c 0.0000,-0.6378 0.2758,-1.3790 0.9481 -1.9651c 0.4137,-0.3620 0.7757,-0.6723 1.1894 -0.9825l -0.2930,-0.1724 c -0.9998,-0.6206 -1.4997,-1.2928 -1.4997 -2.2064c 0.0000,-1.2583 1.1377,-2.2581 2.8097 -2.2581c 1.6031,-0.0000 2.5512,0.8791 2.5512 2.0513ZM 280.6459,7.4983 ZM 277.8879,15.1346 c 0.7412,-0.0000 2.0340,-0.3965 2.0340 -2.0340c 0.0000,-0.7757 -0.4827,-1.5514 -1.4997 -2.1719l -0.7585,-0.4654 c -1.3962,0.9308 -1.7065,2.0857 -1.7065 2.5684c 0.0000,1.4652 1.1894,2.1030 1.9306 2.1030Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="2.489491900092669" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.7525,41.5770 c 0.0000,-4.3054 -3.4902,-7.7957 -7.7957 -7.7957c -4.3054,-0.0000 -7.7957,3.4902 -7.7957 7.7957c -0.0000,4.3054 3.4902,7.7957 7.7957 7.7957c 4.3054,0.0000 7.7957,-3.4902 7.7957 -7.7957Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 248.1962,24.0473 ZM 250.7818,15.2906 c -0.7585,-0.0000 -1.0170,0.3103 -1.3445 1.1894l -0.4482,-0.0690 c 0.2069,-0.7067 0.3792,-1.3618 0.4309 -2.3271h 0.3620 c 0.0690,0.1034 0.1207,0.1896 0.5171 0.1896h 3.2751 c 0.6206,-0.0000 0.9825,-0.0172 1.2583 -0.1034l 0.2586,0.1207 c -1.8272,4.4473 -2.7925,7.1363 -3.7233 9.9116l -1.1204,0.0517 l -0.0517,-0.1034 c 1.1032,-2.4822 2.4133,-5.6884 3.6888 -8.8601h -3.1028 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="2.489491900092669" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 259.7669,50.2139 c 0.0000,-4.3054 -3.4902,-7.7957 -7.7957 -7.7957c -4.3054,-0.0000 -7.7957,3.4902 -7.7957 7.7957c -0.0000,4.3054 3.4902,7.7957 7.7957 7.7957c 4.3054,0.0000 7.7957,-3.4902 7.7957 -7.7957Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 222.2106,48.3802 ZM 224.2101,43.8640 c -0.0172,0.1724 -0.0172,0.4309 -0.0172 0.6033c 0.0000,2.8959 1.2928,3.6199 2.1547 3.6199c 0.7929,-0.0000 1.6376,-0.7412 1.6376 -2.5339c 0.0000,-0.8102 -0.4137,-2.4650 -2.0685 -2.4650c -0.3620,-0.0000 -1.0170,0.0345 -1.7065 0.7757ZM 224.2101,43.8640 ZM 228.7264,38.8651 c -1.1204,0.1034 -2.0857,0.3965 -2.9131 1.2066c -0.7929,0.7757 -1.3618,1.9306 -1.5514 3.3096c 0.3965,-0.4827 1.3445,-0.8446 1.9996 -0.8446c 2.5512,-0.0000 2.8787,2.1030 2.8787 2.8959c 0.0000,1.1722 -0.5861,3.1545 -2.9649 3.1545c -1.2583,-0.0000 -3.1717,-0.7412 -3.1717 -4.1715c 0.0000,-1.5859 0.5344,-3.1372 1.7238 -4.3266c 1.1032,-1.1204 2.2581,-1.5859 3.9474 -1.6720Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="2.489491900092669" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 233.7813,74.5469 c 0.0000,-4.3054 -3.4902,-7.7957 -7.7957 -7.7957c -4.3054,-0.0000 -7.7957,3.4902 -7.7957 7.7957c -0.0000,4.3054 3.4902,7.7957 7.7957 7.7957c 4.3054,0.0000 7.7957,-3.4902 7.7957 -7.7957Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 196.2250,66.0377 ZM 201.5514,63.1246 c 0.0000,-1.7755 -0.9653,-2.6546 -2.0340 -2.6546c -0.7929,-0.0000 -1.3962,0.1207 -2.0685 0.3965l 0.5516,-4.7059 c 0.5688,0.0517 1.1549,0.0690 1.7582 0.0690c 0.8619,-0.0000 1.7582,-0.0517 2.6891 -0.1551l 0.1034,0.0517 l -0.2586,1.1204 c -0.6723,0.0690 -1.2239,0.0862 -1.7065 0.0862c -0.7757,-0.0000 -1.3618,-0.0690 -1.9651 -0.1379l -0.3275,2.7235 c 0.3620,-0.1379 0.9825,-0.2586 1.6548 -0.2586c 1.8272,-0.0000 2.8442,1.5859 2.8442 3.1717c 0.0000,1.9306 -1.3445,3.4130 -3.2924 3.4130c -0.9825,-0.0000 -2.4133,-0.5516 -2.4133 -1.2239c 0.0000,-0.3275 0.2758,-0.5516 0.5861 -0.5516c 0.3448,-0.0000 0.5688,0.2586 0.7757 0.5344c 0.2586,0.3103 0.5344,0.6550 1.0860 0.6550c 1.1032,-0.0000 2.0168,-1.0343 2.0168 -2.5339Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="2.489491900092669" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 207.7957,92.2043 c 0.0000,-4.3054 -3.4902,-7.7957 -7.7957 -7.7957c -4.3054,-0.0000 -7.7957,3.4902 -7.7957 7.7957c -0.0000,4.3054 3.4902,7.7957 7.7957 7.7957c 4.3054,0.0000 7.7957,-3.4902 7.7957 -7.7957Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 170.2394,60.7854 ZM 174.6866,54.6661 c 0.0000,-0.1207 0.0172,-0.2586 0.1724 -0.3448c 0.1896,-0.1379 0.4999,-0.2930 0.7585 -0.2930c 0.2241,-0.0000 0.2413,0.1896 0.2413 0.5344v 2.7752 h 1.3962 l -0.1034,0.8102 h -1.2928 v 1.4307 c 0.0000,0.4827 0.0690,0.7240 0.5688 0.7240h 0.4654 c 0.1034,-0.0000 0.1207,0.0862 0.1207 0.1207v 0.3792 c 0.0000,-0.0000 -1.1032,-0.0345 -1.8272 -0.0345c -0.6550,-0.0000 -1.6720,0.0345 -1.6720 0.0345v -0.3792 c 0.0000,-0.0345 0.0172,-0.1207 0.1207 -0.1207h 0.4654 c 0.5344,-0.0000 0.5861,-0.2241 0.5861 -0.7240v -1.4307 h -3.3786 c -0.0690,-0.0000 -0.1034,-0.0345 -0.1551 -0.1034l -0.1379,-0.1896 l -0.2069,-0.3620 c -0.0172,-0.0000 -0.0172,-0.0172 -0.0172 -0.0345c 0.0000,-0.0172 0.0172,-0.0345 0.0345 -0.0517c 1.1204,-1.2411 3.1028,-5.0851 3.7233 -6.4986c 0.0172,-0.0690 0.0517,-0.0862 0.1207 -0.0862c 0.0172,-0.0000 0.3965,0.1551 0.6033 0.1896c -0.7757,2.0857 -2.0513,4.3266 -3.3096 6.3262h 2.7235 v -2.6718 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="2.489491900092669" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 181.8101,86.9521 c 0.0000,-4.3054 -3.4902,-7.7957 -7.7957 -7.7957c -4.3054,-0.0000 -7.7957,3.4902 -7.7957 7.7957c -0.0000,4.3054 3.4902,7.7957 7.7957 7.7957c 4.3054,0.0000 7.7957,-3.4902 7.7957 -7.7957Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 144.2537,37.4524 ZM 147.9771,28.0234 c -0.4309,-0.0000 -1.6893,0.2413 -1.6893 1.2928c 0.0000,0.3103 -0.1207,0.8446 -0.5861 0.8446c -0.4482,-0.0000 -0.4827,-0.4999 -0.4827 -0.5516c 0.0000,-0.5344 0.7067,-2.1202 3.1028 -2.1202c 1.6720,-0.0000 2.1719,1.0515 2.1719 1.7410c 0.0000,0.4309 -0.1379,1.2928 -1.6893 2.2754c 0.9653,0.1551 2.2409,0.8619 2.2409 2.6546c 0.0000,2.2754 -1.7238,3.4992 -3.6716 3.4992c -0.9825,-0.0000 -2.3615,-0.4309 -2.3615 -1.0860c 0.0000,-0.2586 0.2586,-0.5516 0.6033 -0.5516c 0.3275,-0.0000 0.4827,0.1724 0.6378 0.3965c 0.1896,0.2930 0.4999,0.7067 1.3273 0.7067c 0.5688,-0.0000 2.1892,-0.5688 2.1892 -2.7408c 0.0000,-1.8444 -1.2928,-2.1375 -2.2236 -2.1375c -0.1551,-0.0000 -0.3448,0.0345 -0.5344 0.0690l -0.0690,-0.5171 c 1.3273,-0.2241 2.4305,-1.5169 2.4305 -2.3098c 0.0000,-0.9825 -0.6895,-1.4652 -1.3962 -1.4652Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="2.489491900092669" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 155.8244,63.6190 c 0.0000,-4.3054 -3.4902,-7.7957 -7.7957 -7.7957c -4.3054,-0.0000 -7.7957,3.4902 -7.7957 7.7957c -0.0000,4.3054 3.4902,7.7957 7.7957 7.7957c 4.3054,0.0000 7.7957,-3.4902 7.7957 -7.7957Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 118.2681,17.4908 ZM 119.2679,9.8546 c 0.0000,-0.9825 0.9481,-2.3271 2.7580 -2.3271c 1.3273,-0.0000 2.8787,0.4999 2.8787 2.4822c 0.0000,1.3101 -0.6723,1.9651 -1.6031 2.8614l -1.6376,1.5859 c -0.0862,0.0862 -1.2411,1.2239 -1.2411 2.0340h 2.9304 c 0.5861,-0.0000 0.8964,-0.2930 1.1377 -1.2411l 0.4309,0.0690 l -0.3448,2.1719 h -5.3264 c 0.0000,-0.9653 0.1551,-1.7065 1.7582 -3.3441l 1.2066,-1.1894 c 0.9653,-0.9825 1.3618,-1.8272 1.3618 -2.8787c 0.0000,-1.5686 -1.0687,-2.0168 -1.6548 -2.0168c -1.1894,-0.0000 -1.5169,0.6206 -1.5169 1.0343c 0.0000,0.1379 0.0345,0.2758 0.0690 0.3965c 0.0345,0.1207 0.0690,0.2413 0.0690 0.3792c 0.0000,0.4482 -0.3448,0.6206 -0.6206 0.6206c -0.3792,-0.0000 -0.6550,-0.2930 -0.6550 -0.6378Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="2.489491900092669" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 129.8388,43.6574 c 0.0000,-4.3054 -3.4902,-7.7957 -7.7957 -7.7957c -4.3054,-0.0000 -7.7957,3.4902 -7.7957 7.7957c -0.0000,4.3054 3.4902,7.7957 7.7957 7.7957c 4.3054,0.0000 7.7957,-3.4902 7.7957 -7.7957Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 92.2825,19.2533 ZM 95.5232,11.0310 c -0.3275,-0.0000 -1.0860,0.3103 -1.4652 0.4827l -0.2069,-0.5344 c 1.5169,-0.7067 2.1030,-1.0687 2.9649 -1.6893h 0.3275 v 8.6705 c 0.0000,0.6206 0.0862,0.7929 0.6550 0.7929h 0.8964 c 0.0517,-0.0000 0.1379,0.0345 0.1379 0.1379v 0.3792 l -2.3615,-0.0345 l -2.3960,0.0345 v -0.3792 c 0.0172,-0.0517 0.0345,-0.1379 0.1379 -0.1379h 1.0343 c 0.6550,-0.0000 0.6550,-0.2930 0.6550 -0.7929v -5.9297 c 0.0000,-0.5861 0.0000,-0.9998 -0.3792 -0.9998Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="2.489491900092669" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 103.8532,45.4199 c 0.0000,-4.3054 -3.4902,-7.7957 -7.7957 -7.7957c -4.3054,-0.0000 -7.7957,3.4902 -7.7957 7.7957c -0.0000,4.3054 3.4902,7.7957 7.7957 7.7957c 4.3054,0.0000 7.7957,-3.4902 7.7957 -7.7957Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 66.2969,41.1195 ZM 70.0719,31.7595 c -0.7412,-0.0000 -1.8272,0.7240 -1.8272 4.7403c 0.0000,1.4135 0.2586,4.2577 1.7755 4.2577c 0.2930,-0.0000 1.1204,-0.1896 1.4824 -1.5341c 0.2241,-0.8274 0.3448,-1.8617 0.3448 -3.3613c 0.0000,-2.1892 -0.5516,-3.4130 -1.0515 -3.8440c -0.1896,-0.1724 -0.4482,-0.2586 -0.7240 -0.2586ZM 70.0719,31.7595 ZM 70.0030,41.3263 c -1.8444,-0.0000 -3.0855,-2.3615 -3.0855 -4.9989c 0.0000,-3.2234 1.5341,-5.1713 3.1545 -5.1713c 0.7412,-0.0000 1.4824,0.4654 1.9823 1.1377c 0.7240,0.9653 1.1032,2.2581 1.1032 3.8785c 0.0000,3.8267 -1.8961,5.1540 -3.1545 5.1540Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="2.489491900092669" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 77.8676,67.2861 c 0.0000,-4.3054 -3.4902,-7.7957 -7.7957 -7.7957c -4.3054,-0.0000 -7.7957,3.4902 -7.7957 7.7957c -0.0000,4.3054 3.4902,7.7957 7.7957 7.7957c 4.3054,0.0000 7.7957,-3.4902 7.7957 -7.7957Z"/></g></svg>
+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="100.0000" stroke-opacity="1" viewBox="0 0 400 100" font-size="1" width="400.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 322.3780,55.2562 ZM 325.6187,47.0339 c -0.3275,-0.0000 -1.0860,0.3103 -1.4652 0.4827l -0.2069,-0.5344 c 1.5169,-0.7067 2.1030,-1.0687 2.9649 -1.6893h 0.3275 v 8.6705 c 0.0000,0.6206 0.0862,0.7929 0.6550 0.7929h 0.8964 c 0.0517,-0.0000 0.1379,0.0345 0.1379 0.1379v 0.3792 l -2.3615,-0.0345 l -2.3960,0.0345 v -0.3792 c 0.0172,-0.0517 0.0345,-0.1379 0.1379 -0.1379h 1.0343 c 0.6550,-0.0000 0.6550,-0.2930 0.6550 -0.7929v -5.9297 c 0.0000,-0.5861 0.0000,-0.9998 -0.3792 -0.9998ZM 329.9281,55.2562 ZM 333.7031,45.8962 c -0.7412,-0.0000 -1.8272,0.7240 -1.8272 4.7403c 0.0000,1.4135 0.2586,4.2577 1.7755 4.2577c 0.2930,-0.0000 1.1204,-0.1896 1.4824 -1.5341c 0.2241,-0.8274 0.3448,-1.8617 0.3448 -3.3613c 0.0000,-2.1892 -0.5516,-3.4130 -1.0515 -3.8440c -0.1896,-0.1724 -0.4482,-0.2586 -0.7240 -0.2586ZM 333.7031,45.8962 ZM 333.6342,55.4630 c -1.8444,-0.0000 -3.0855,-2.3615 -3.0855 -4.9989c 0.0000,-3.2234 1.5341,-5.1713 3.1545 -5.1713c 0.7412,-0.0000 1.4824,0.4654 1.9823 1.1377c 0.7240,0.9653 1.1032,2.2581 1.1032 3.8785c 0.0000,3.8267 -1.8961,5.1540 -3.1545 5.1540Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="2.489491900092669" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 337.7238,81.4228 c 0.0000,-4.3054 -3.4902,-7.7957 -7.7957 -7.7957c -4.3054,-0.0000 -7.7957,3.4902 -7.7957 7.7957c -0.0000,4.3054 3.4902,7.7957 7.7957 7.7957c 4.3054,0.0000 7.7957,-3.4902 7.7957 -7.7957Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.1674,30.4103 ZM 305.6662,25.1701 c 0.0000,-0.1724 0.0172,-0.4309 0.0172 -0.6033c 0.0000,-2.8959 -1.2928,-3.6199 -2.1719 -3.6199c -0.7929,-0.0000 -1.6203,0.7412 -1.6203 2.5339c 0.0000,0.8274 0.4137,2.4650 2.0513 2.4650c 0.3620,-0.0000 1.0170,-0.0345 1.7238 -0.7757ZM 305.6662,25.1701 ZM 301.1328,30.1690 c 1.1377,-0.1034 2.0857,-0.3965 2.9304 -1.2066c 0.7757,-0.7757 1.3445,-1.9306 1.5514 -3.3096c -0.3965,0.4827 -1.3618,0.8446 -1.9996 0.8446c -2.5512,-0.0000 -2.8959,-2.1030 -2.8959 -2.8959c 0.0000,-1.1722 0.5861,-3.1545 2.9649 -3.1545c 1.2756,-0.0000 3.1889,0.7412 3.1889 4.1715c 0.0000,1.5859 -0.5516,3.1372 -1.7238 4.3266c -1.1032,1.1204 -2.2754,1.5859 -3.9646 1.6720Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="2.489491900092669" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 311.7382,56.5769 c 0.0000,-4.3054 -3.4902,-7.7957 -7.7957 -7.7957c -4.3054,-0.0000 -7.7957,3.4902 -7.7957 7.7957c -0.0000,4.3054 3.4902,7.7957 7.7957 7.7957c 4.3054,0.0000 7.7957,-3.4902 7.7957 -7.7957Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.1818,15.4104 ZM 278.0086,5.8608 c -0.9825,-0.0000 -1.6203,0.7757 -1.6203 1.5341c 0.0000,0.4999 0.2069,1.1032 1.2411 1.7755l 0.4999,0.3103 c 0.4482,-0.3275 1.4997,-1.1204 1.4997 -1.9996c 0.0000,-0.7585 -0.5516,-1.6203 -1.6203 -1.6203ZM 278.0086,5.8608 ZM 280.6459,7.4983 c 0.0000,1.0515 -1.1894,1.8789 -1.9134 2.3615l 0.9998,0.6550 c 0.8446,0.5516 1.2756,1.3101 1.2756 2.2581c 0.0000,1.2411 -1.0170,2.8442 -3.1545 2.8442c -1.7238,-0.0000 -2.9131,-0.9136 -2.9131 -2.5856c 0.0000,-0.6378 0.2758,-1.3790 0.9481 -1.9651c 0.4137,-0.3620 0.7757,-0.6723 1.1894 -0.9825l -0.2930,-0.1724 c -0.9998,-0.6206 -1.4997,-1.2928 -1.4997 -2.2064c 0.0000,-1.2583 1.1377,-2.2581 2.8097 -2.2581c 1.6031,-0.0000 2.5512,0.8791 2.5512 2.0513ZM 280.6459,7.4983 ZM 277.8879,15.1346 c 0.7412,-0.0000 2.0340,-0.3965 2.0340 -2.0340c 0.0000,-0.7757 -0.4827,-1.5514 -1.4997 -2.1719l -0.7585,-0.4654 c -1.3962,0.9308 -1.7065,2.0857 -1.7065 2.5684c 0.0000,1.4652 1.1894,2.1030 1.9306 2.1030Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="2.489491900092669" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.7525,41.5770 c 0.0000,-4.3054 -3.4902,-7.7957 -7.7957 -7.7957c -4.3054,-0.0000 -7.7957,3.4902 -7.7957 7.7957c -0.0000,4.3054 3.4902,7.7957 7.7957 7.7957c 4.3054,0.0000 7.7957,-3.4902 7.7957 -7.7957Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 248.1962,24.0473 ZM 250.7818,15.2906 c -0.7585,-0.0000 -1.0170,0.3103 -1.3445 1.1894l -0.4482,-0.0690 c 0.2069,-0.7067 0.3792,-1.3618 0.4309 -2.3271h 0.3620 c 0.0690,0.1034 0.1207,0.1896 0.5171 0.1896h 3.2751 c 0.6206,-0.0000 0.9825,-0.0172 1.2583 -0.1034l 0.2586,0.1207 c -1.8272,4.4473 -2.7925,7.1363 -3.7233 9.9116l -1.1204,0.0517 l -0.0517,-0.1034 c 1.1032,-2.4822 2.4133,-5.6884 3.6888 -8.8601h -3.1028 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="2.489491900092669" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 259.7669,50.2139 c 0.0000,-4.3054 -3.4902,-7.7957 -7.7957 -7.7957c -4.3054,-0.0000 -7.7957,3.4902 -7.7957 7.7957c -0.0000,4.3054 3.4902,7.7957 7.7957 7.7957c 4.3054,0.0000 7.7957,-3.4902 7.7957 -7.7957Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 222.2106,48.3802 ZM 224.2101,43.8640 c -0.0172,0.1724 -0.0172,0.4309 -0.0172 0.6033c 0.0000,2.8959 1.2928,3.6199 2.1547 3.6199c 0.7929,-0.0000 1.6376,-0.7412 1.6376 -2.5339c 0.0000,-0.8102 -0.4137,-2.4650 -2.0685 -2.4650c -0.3620,-0.0000 -1.0170,0.0345 -1.7065 0.7757ZM 224.2101,43.8640 ZM 228.7264,38.8651 c -1.1204,0.1034 -2.0857,0.3965 -2.9131 1.2066c -0.7929,0.7757 -1.3618,1.9306 -1.5514 3.3096c 0.3965,-0.4827 1.3445,-0.8446 1.9996 -0.8446c 2.5512,-0.0000 2.8787,2.1030 2.8787 2.8959c 0.0000,1.1722 -0.5861,3.1545 -2.9649 3.1545c -1.2583,-0.0000 -3.1717,-0.7412 -3.1717 -4.1715c 0.0000,-1.5859 0.5344,-3.1372 1.7238 -4.3266c 1.1032,-1.1204 2.2581,-1.5859 3.9474 -1.6720Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="2.489491900092669" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 233.7813,74.5469 c 0.0000,-4.3054 -3.4902,-7.7957 -7.7957 -7.7957c -4.3054,-0.0000 -7.7957,3.4902 -7.7957 7.7957c -0.0000,4.3054 3.4902,7.7957 7.7957 7.7957c 4.3054,0.0000 7.7957,-3.4902 7.7957 -7.7957Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 196.2250,66.0377 ZM 201.5514,63.1246 c 0.0000,-1.7755 -0.9653,-2.6546 -2.0340 -2.6546c -0.7929,-0.0000 -1.3962,0.1207 -2.0685 0.3965l 0.5516,-4.7059 c 0.5688,0.0517 1.1549,0.0690 1.7582 0.0690c 0.8619,-0.0000 1.7582,-0.0517 2.6891 -0.1551l 0.1034,0.0517 l -0.2586,1.1204 c -0.6723,0.0690 -1.2239,0.0862 -1.7065 0.0862c -0.7757,-0.0000 -1.3618,-0.0690 -1.9651 -0.1379l -0.3275,2.7235 c 0.3620,-0.1379 0.9825,-0.2586 1.6548 -0.2586c 1.8272,-0.0000 2.8442,1.5859 2.8442 3.1717c 0.0000,1.9306 -1.3445,3.4130 -3.2924 3.4130c -0.9825,-0.0000 -2.4133,-0.5516 -2.4133 -1.2239c 0.0000,-0.3275 0.2758,-0.5516 0.5861 -0.5516c 0.3448,-0.0000 0.5688,0.2586 0.7757 0.5344c 0.2586,0.3103 0.5344,0.6550 1.0860 0.6550c 1.1032,-0.0000 2.0168,-1.0343 2.0168 -2.5339Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="2.489491900092669" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 207.7957,92.2043 c 0.0000,-4.3054 -3.4902,-7.7957 -7.7957 -7.7957c -4.3054,-0.0000 -7.7957,3.4902 -7.7957 7.7957c -0.0000,4.3054 3.4902,7.7957 7.7957 7.7957c 4.3054,0.0000 7.7957,-3.4902 7.7957 -7.7957Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 170.2394,60.7854 ZM 174.6866,54.6661 c 0.0000,-0.1207 0.0172,-0.2586 0.1724 -0.3448c 0.1896,-0.1379 0.4999,-0.2930 0.7585 -0.2930c 0.2241,-0.0000 0.2413,0.1896 0.2413 0.5344v 2.7752 h 1.3962 l -0.1034,0.8102 h -1.2928 v 1.4307 c 0.0000,0.4827 0.0690,0.7240 0.5688 0.7240h 0.4654 c 0.1034,-0.0000 0.1207,0.0862 0.1207 0.1207v 0.3792 c 0.0000,-0.0000 -1.1032,-0.0345 -1.8272 -0.0345c -0.6550,-0.0000 -1.6720,0.0345 -1.6720 0.0345v -0.3792 c 0.0000,-0.0345 0.0172,-0.1207 0.1207 -0.1207h 0.4654 c 0.5344,-0.0000 0.5861,-0.2241 0.5861 -0.7240v -1.4307 h -3.3786 c -0.0690,-0.0000 -0.1034,-0.0345 -0.1551 -0.1034l -0.1379,-0.1896 l -0.2069,-0.3620 c -0.0172,-0.0000 -0.0172,-0.0172 -0.0172 -0.0345c 0.0000,-0.0172 0.0172,-0.0345 0.0345 -0.0517c 1.1204,-1.2411 3.1028,-5.0851 3.7233 -6.4986c 0.0172,-0.0690 0.0517,-0.0862 0.1207 -0.0862c 0.0172,-0.0000 0.3965,0.1551 0.6033 0.1896c -0.7757,2.0857 -2.0513,4.3266 -3.3096 6.3262h 2.7235 v -2.6718 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="2.489491900092669" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 181.8101,86.9521 c 0.0000,-4.3054 -3.4902,-7.7957 -7.7957 -7.7957c -4.3054,-0.0000 -7.7957,3.4902 -7.7957 7.7957c -0.0000,4.3054 3.4902,7.7957 7.7957 7.7957c 4.3054,0.0000 7.7957,-3.4902 7.7957 -7.7957Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 144.2537,37.4524 ZM 147.9771,28.0234 c -0.4309,-0.0000 -1.6893,0.2413 -1.6893 1.2928c 0.0000,0.3103 -0.1207,0.8446 -0.5861 0.8446c -0.4482,-0.0000 -0.4827,-0.4999 -0.4827 -0.5516c 0.0000,-0.5344 0.7067,-2.1202 3.1028 -2.1202c 1.6720,-0.0000 2.1719,1.0515 2.1719 1.7410c 0.0000,0.4309 -0.1379,1.2928 -1.6893 2.2754c 0.9653,0.1551 2.2409,0.8619 2.2409 2.6546c 0.0000,2.2754 -1.7238,3.4992 -3.6716 3.4992c -0.9825,-0.0000 -2.3615,-0.4309 -2.3615 -1.0860c 0.0000,-0.2586 0.2586,-0.5516 0.6033 -0.5516c 0.3275,-0.0000 0.4827,0.1724 0.6378 0.3965c 0.1896,0.2930 0.4999,0.7067 1.3273 0.7067c 0.5688,-0.0000 2.1892,-0.5688 2.1892 -2.7408c 0.0000,-1.8444 -1.2928,-2.1375 -2.2236 -2.1375c -0.1551,-0.0000 -0.3448,0.0345 -0.5344 0.0690l -0.0690,-0.5171 c 1.3273,-0.2241 2.4305,-1.5169 2.4305 -2.3098c 0.0000,-0.9825 -0.6895,-1.4652 -1.3962 -1.4652Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="2.489491900092669" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 155.8244,63.6190 c 0.0000,-4.3054 -3.4902,-7.7957 -7.7957 -7.7957c -4.3054,-0.0000 -7.7957,3.4902 -7.7957 7.7957c -0.0000,4.3054 3.4902,7.7957 7.7957 7.7957c 4.3054,0.0000 7.7957,-3.4902 7.7957 -7.7957Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 118.2681,17.4908 ZM 119.2679,9.8546 c 0.0000,-0.9825 0.9481,-2.3271 2.7580 -2.3271c 1.3273,-0.0000 2.8787,0.4999 2.8787 2.4822c 0.0000,1.3101 -0.6723,1.9651 -1.6031 2.8614l -1.6376,1.5859 c -0.0862,0.0862 -1.2411,1.2239 -1.2411 2.0340h 2.9304 c 0.5861,-0.0000 0.8964,-0.2930 1.1377 -1.2411l 0.4309,0.0690 l -0.3448,2.1719 h -5.3264 c 0.0000,-0.9653 0.1551,-1.7065 1.7582 -3.3441l 1.2066,-1.1894 c 0.9653,-0.9825 1.3618,-1.8272 1.3618 -2.8787c 0.0000,-1.5686 -1.0687,-2.0168 -1.6548 -2.0168c -1.1894,-0.0000 -1.5169,0.6206 -1.5169 1.0343c 0.0000,0.1379 0.0345,0.2758 0.0690 0.3965c 0.0345,0.1207 0.0690,0.2413 0.0690 0.3792c 0.0000,0.4482 -0.3448,0.6206 -0.6206 0.6206c -0.3792,-0.0000 -0.6550,-0.2930 -0.6550 -0.6378Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="2.489491900092669" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 129.8388,43.6574 c 0.0000,-4.3054 -3.4902,-7.7957 -7.7957 -7.7957c -4.3054,-0.0000 -7.7957,3.4902 -7.7957 7.7957c -0.0000,4.3054 3.4902,7.7957 7.7957 7.7957c 4.3054,0.0000 7.7957,-3.4902 7.7957 -7.7957Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 92.2825,19.2533 ZM 95.5232,11.0310 c -0.3275,-0.0000 -1.0860,0.3103 -1.4652 0.4827l -0.2069,-0.5344 c 1.5169,-0.7067 2.1030,-1.0687 2.9649 -1.6893h 0.3275 v 8.6705 c 0.0000,0.6206 0.0862,0.7929 0.6550 0.7929h 0.8964 c 0.0517,-0.0000 0.1379,0.0345 0.1379 0.1379v 0.3792 l -2.3615,-0.0345 l -2.3960,0.0345 v -0.3792 c 0.0172,-0.0517 0.0345,-0.1379 0.1379 -0.1379h 1.0343 c 0.6550,-0.0000 0.6550,-0.2930 0.6550 -0.7929v -5.9297 c 0.0000,-0.5861 0.0000,-0.9998 -0.3792 -0.9998Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="2.489491900092669" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 103.8532,45.4199 c 0.0000,-4.3054 -3.4902,-7.7957 -7.7957 -7.7957c -4.3054,-0.0000 -7.7957,3.4902 -7.7957 7.7957c -0.0000,4.3054 3.4902,7.7957 7.7957 7.7957c 4.3054,0.0000 7.7957,-3.4902 7.7957 -7.7957Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 66.2969,41.1195 ZM 70.0719,31.7595 c -0.7412,-0.0000 -1.8272,0.7240 -1.8272 4.7403c 0.0000,1.4135 0.2586,4.2577 1.7755 4.2577c 0.2930,-0.0000 1.1204,-0.1896 1.4824 -1.5341c 0.2241,-0.8274 0.3448,-1.8617 0.3448 -3.3613c 0.0000,-2.1892 -0.5516,-3.4130 -1.0515 -3.8440c -0.1896,-0.1724 -0.4482,-0.2586 -0.7240 -0.2586ZM 70.0719,31.7595 ZM 70.0030,41.3263 c -1.8444,-0.0000 -3.0855,-2.3615 -3.0855 -4.9989c 0.0000,-3.2234 1.5341,-5.1713 3.1545 -5.1713c 0.7412,-0.0000 1.4824,0.4654 1.9823 1.1377c 0.7240,0.9653 1.1032,2.2581 1.1032 3.8785c 0.0000,3.8267 -1.8961,5.1540 -3.1545 5.1540Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="2.489491900092669" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 77.8676,67.2861 c 0.0000,-4.3054 -3.4902,-7.7957 -7.7957 -7.7957c -4.3054,-0.0000 -7.7957,3.4902 -7.7957 7.7957c -0.0000,4.3054 3.4902,7.7957 7.7957 7.7957c 4.3054,0.0000 7.7957,-3.4902 7.7957 -7.7957Z"/></g></svg>
diff --git a/other/mainExample.svg b/other/mainExample.svg
--- a/other/mainExample.svg
+++ b/other/mainExample.svg
@@ -1,3 +1,3 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="400.0000" stroke-opacity="1" viewBox="0 0 600 400" font-size="1" width="600.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 223.8771,360.1625 ZM 225.8356,359.4396 c 0.2629,0.3155 0.5389,0.4206 0.9464 0.4206c 1.2487,-0.0000 1.8796,-1.1567 1.8796 -2.6551c 0.0000,-1.3407 -0.6835,-2.3002 -1.4853 -2.3002c -0.1446,-0.0000 -0.8281,0.0263 -1.3407 0.5652v 3.9695 ZM 225.8356,359.4396 ZM 224.8498,352.6310 c 0.0000,-0.7492 -0.1314,-0.9595 -0.3943 -0.9595l -0.4206,0.0526 c -0.0394,-0.0000 -0.0657,-0.0263 -0.0657 -0.0657l -0.0263,-0.3286 c 0.2103,-0.0000 0.6835,-0.0789 0.9069 -0.1183c 0.2366,-0.0526 0.4338,-0.1052 0.6966 -0.2234h 0.2892 v 4.0747 c 0.4469,-0.4863 0.9727,-0.7229 1.6036 -0.7229c 1.1435,-0.0000 2.2345,1.0910 2.2345 2.6945c 0.0000,2.0899 -1.4721,3.2729 -2.8128 3.2729c -0.5652,-0.0000 -0.9858,-0.1577 -1.3670 -0.4863c -0.1183,0.1577 -0.2892,0.3549 -0.4075 0.4863l -0.2760,-0.0657 c 0.0394,-0.3155 0.0394,-0.5258 0.0394 -1.0384v -6.5720 ZM 230.1600,360.1625 ZM 230.6069,357.4680 c 0.0000,-1.8007 0.9727,-3.1151 2.7208 -3.1151c 1.9453,-0.0000 2.6945,1.6299 2.6945 2.9968c 0.0000,1.3144 -0.8544,2.9706 -2.7208 2.9706c -1.7613,-0.0000 -2.6945,-1.5116 -2.6945 -2.8523ZM 230.6069,357.4680 ZM 233.1831,354.7866 c -1.0515,-0.0000 -1.5379,1.2355 -1.5379 2.3791c 0.0000,1.0121 0.5783,2.6945 1.8796 2.6945c 0.5915,-0.0000 1.4590,-0.3549 1.4590 -2.0899c 0.0000,-1.9322 -0.7229,-2.9837 -1.8007 -2.9837ZM 236.4560,360.1625 ZM 240.4255,355.0232 h -1.8139 v 3.3517 c 0.0000,0.8149 0.0789,1.1961 0.4338 1.1961c 0.3812,-0.0000 0.7361,-0.1972 0.9464 -0.3549l 0.1972,0.1840 c -0.3417,0.5258 -0.8938,0.9069 -1.5379 0.9069c -0.6178,-0.0000 -1.0252,-0.3680 -1.0252 -1.3144v -3.9695 h -0.9069 v -0.5126 c 1.0121,-0.0000 1.1304,-0.4732 1.1304 -1.5116v -0.2497 l 0.7624,-0.2629 v 2.0242 h 1.8139 c 1.0252,-0.0000 1.1435,-0.4732 1.1435 -1.5116v -0.2497 l 0.7492,-0.2629 v 2.0242 h 1.4590 c 0.0657,-0.0000 0.0920,0.0263 0.0920 0.0789v 0.2629 c 0.0000,0.1183 -0.1709,0.1709 -0.3023 0.1709h -1.2487 v 3.3517 c 0.0000,0.8149 0.0920,1.1961 0.4338 1.1961c 0.3812,-0.0000 0.7492,-0.1972 0.9464 -0.3549l 0.1972,0.1840 c -0.3286,0.5258 -0.8807,0.9069 -1.5379 0.9069c -0.6178,-0.0000 -1.0121,-0.3680 -1.0121 -1.3144v -3.9695 h -0.9201 ZM 244.1058,360.1625 ZM 244.5527,357.4680 c 0.0000,-1.8007 0.9727,-3.1151 2.7208 -3.1151c 1.9453,-0.0000 2.6945,1.6299 2.6945 2.9968c 0.0000,1.3144 -0.8544,2.9706 -2.7208 2.9706c -1.7613,-0.0000 -2.6945,-1.5116 -2.6945 -2.8523ZM 244.5527,357.4680 ZM 247.1289,354.7866 c -1.0515,-0.0000 -1.5379,1.2355 -1.5379 2.3791c 0.0000,1.0121 0.5783,2.6945 1.8796 2.6945c 0.5915,-0.0000 1.4590,-0.3549 1.4590 -2.0899c 0.0000,-1.9322 -0.7229,-2.9837 -1.8007 -2.9837ZM 250.4018,360.1625 ZM 258.3276,359.2161 v -3.0231 c 0.0000,-0.8807 -0.3417,-1.2093 -0.8412 -1.2093c -0.5126,-0.0000 -0.9201,0.2629 -1.5510 0.9595c 0.0263,0.1577 0.0263,0.3417 0.0263 0.5258v 2.7471 c 0.0000,0.3812 0.1314,0.5783 0.5652 0.5783h 0.2234 c 0.0657,-0.0000 0.1183,0.0394 0.1183 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.8807,-0.0263 -1.3933 -0.0263c -0.4732,-0.0000 -1.3801,0.0263 -1.3801 0.0263l -0.0263,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0394,-0.1052 0.1052 -0.1052h 0.2629 c 0.4469,-0.0000 0.5652,-0.1972 0.5652 -0.5783v -2.9968 c 0.0000,-0.8807 -0.3549,-1.2355 -0.8544 -1.2355c -0.4600,-0.0000 -0.8938,0.3286 -1.5116 0.9727v 3.2597 c 0.0000,0.3812 0.1314,0.5783 0.5652 0.5783h 0.2497 c 0.0526,-0.0000 0.1052,0.0394 0.1052 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.8938,-0.0263 -1.4064 -0.0263c -0.4732,-0.0000 -1.3670,0.0263 -1.3670 0.0263l -0.0263,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0394,-0.1052 0.1052 -0.1052h 0.2497 c 0.4469,-0.0000 0.5652,-0.1972 0.5652 -0.5783v -3.2729 c 0.0000,-0.7492 -0.1183,-0.8018 -0.2892 -0.8018c -0.1709,-0.0000 -0.3286,0.0131 -0.5520 0.0657l -0.0657,-0.3680 c 0.8281,-0.1446 1.0121,-0.1972 1.3670 -0.3812c 0.1314,-0.0657 0.2366,-0.1052 0.3286 -0.1052h 0.1972 l -0.0394,1.1435 h 0.0394 c 0.6178,-0.6572 1.1698,-1.1435 1.9848 -1.1435c 0.7361,-0.0000 1.1961,0.5389 1.2750 1.1304c 0.7624,-0.7886 1.3801,-1.1304 2.0899 -1.1304c 1.1567,-0.0000 1.3538,0.9595 1.3538 2.1293v 2.7340 c 0.0000,0.3812 0.1314,0.5783 0.5652 0.5783h 0.2497 c 0.0526,-0.0000 0.1052,0.0394 0.1052 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.8938,-0.0263 -1.4064 -0.0263c -0.4732,-0.0000 -1.3670,0.0263 -1.3670 0.0263l -0.0263,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0394,-0.1052 0.1052 -0.1052h 0.2497 c 0.4338,-0.0000 0.5652,-0.1972 0.5652 -0.5783ZM 263.6773,360.1625 ZM 264.8471,359.2161 v -3.2729 c 0.0000,-0.6572 -0.0920,-0.8018 -0.2892 -0.8018c -0.1709,-0.0000 -0.3286,0.0131 -0.5520 0.0657l -0.0657,-0.3680 c 0.8281,-0.1446 0.9727,-0.1840 1.3670 -0.3812c 0.1314,-0.0657 0.2366,-0.1052 0.3286 -0.1052h 0.1972 l -0.0394,1.1830 h 0.0394 c 0.3417,-0.5126 0.9201,-1.1830 1.5379 -1.1830c 0.5389,-0.0000 0.7361,0.2629 0.7361 0.6046c 0.0000,0.3417 -0.2234,0.5520 -0.5652 0.5520c -0.2629,-0.0000 -0.4075,-0.1052 -0.5389 -0.2366c -0.0789,-0.0789 -0.1709,-0.1183 -0.2629 -0.1183c -0.1446,-0.0000 -0.4338,0.2366 -0.7492 0.6835c -0.0920,0.1183 -0.1577,0.2892 -0.1577 0.4600v 2.9180 c 0.0000,0.3812 0.1314,0.5783 0.5652 0.5783h 0.3812 c 0.0657,-0.0000 0.1183,0.0394 0.1183 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -1.0384,-0.0263 -1.5510 -0.0263c -0.4732,-0.0000 -1.3670,0.0263 -1.3670 0.0263l -0.0131,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0263,-0.1052 0.0920 -0.1052h 0.2497 c 0.4469,-0.0000 0.5652,-0.1972 0.5652 -0.5783ZM 268.2383,360.1625 ZM 269.2635,352.6572 c 0.0000,-0.3417 0.2760,-0.6309 0.6178 -0.6309c 0.3549,-0.0000 0.6309,0.2892 0.6309 0.6309c 0.0000,0.3549 -0.2760,0.6309 -0.6309 0.6309c -0.3417,-0.0000 -0.6178,-0.2760 -0.6178 -0.6309ZM 269.2635,352.6572 ZM 270.5122,359.2161 c 0.0000,0.3812 0.1446,0.5783 0.5652 0.5783h 0.2497 c 0.0657,-0.0000 0.1183,0.0394 0.1183 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.9069,-0.0263 -1.4196 -0.0263c -0.4600,-0.0000 -1.3538,0.0263 -1.3538 0.0263l -0.0263,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0394,-0.1052 0.1052 -0.1052h 0.2497 c 0.4338,-0.0000 0.5652,-0.1972 0.5652 -0.5783v -3.2729 c 0.0000,-0.6966 -0.1183,-0.8018 -0.3023 -0.8018c -0.1709,-0.0000 -0.3286,0.0131 -0.5520 0.0657l -0.0657,-0.3680 c 0.8412,-0.1446 0.9858,-0.1972 1.3670 -0.3812c 0.1446,-0.0526 0.2366,-0.1052 0.3286 -0.1052h 0.1972 v 4.8633 ZM 271.7083,360.1625 ZM 275.8618,356.4427 c 0.0000,-1.0910 -0.5126,-1.7219 -1.3013 -1.7219c -0.6835,-0.0000 -1.1435,0.4732 -1.1435 1.4984c 0.0000,0.6835 0.2629,1.7613 1.3144 1.7613c 0.4600,-0.0000 1.1304,-0.2234 1.1304 -1.5379ZM 275.8618,356.4427 ZM 273.4039,360.2545 c -0.4075,0.3812 -0.4995,0.7886 -0.4995 1.2355c 0.0000,0.9858 1.1830,1.2750 1.6299 1.2750c 1.1304,-0.0000 2.5631,-0.3943 2.5631 -1.3407c 0.0000,-0.3417 -0.1840,-0.5652 -0.6966 -0.8149c -0.3680,-0.1840 -0.9069,-0.3286 -1.5379 -0.3286c -0.1052,-0.0000 -0.2497,0.0131 -0.4338 0.0263c -0.1840,0.0131 -0.3812,0.0131 -0.5258 0.0131c -0.2103,-0.0000 -0.3155,-0.0263 -0.4995 -0.0657ZM 273.4039,360.2545 ZM 277.3997,355.0626 c -0.2103,-0.0000 -0.3417,-0.1183 -0.3943 -0.2234c -0.0789,-0.1183 -0.1314,-0.1577 -0.2234 -0.1577c -0.1577,-0.0000 -0.4075,0.1840 -0.4995 0.3155c 0.3680,0.3943 0.5389,0.7755 0.5389 1.3933c 0.0000,1.2881 -1.0515,1.9848 -2.1556 1.9848c -0.4863,-0.0000 -0.8807,-0.0920 -1.1830 -0.2760c -0.1446,0.2234 -0.2234,0.4995 -0.2234 0.7624c 0.0000,0.5652 0.4338,0.7098 0.8018 0.7098c 0.0657,-0.0000 0.2234,-0.0131 0.4075 -0.0263c 0.3023,-0.0394 0.6309,-0.0657 0.8544 -0.0657c 0.4600,-0.0000 1.3275,0.0920 1.8533 0.5389c 0.3549,0.3286 0.5520,0.6441 0.5520 1.0647c 0.0000,1.4196 -1.8665,2.1688 -3.5620 2.1688c -0.9595,-0.0000 -2.0242,-0.3549 -2.0242 -1.4984c 0.0000,-0.5652 0.3549,-1.1698 1.0252 -1.5904c -0.3286,-0.1709 -0.5652,-0.4995 -0.5652 -0.9727c 0.0000,-0.4469 0.1972,-1.0121 0.5520 -1.3275c -0.3549,-0.3549 -0.6572,-0.8018 -0.6572 -1.5247c 0.0000,-1.2093 1.0647,-1.9848 2.1819 -1.9848c 0.7361,-0.0000 1.1961,0.3023 1.3407 0.4075c 0.3286,-0.4469 0.9201,-0.6703 1.2487 -0.6703c 0.3417,-0.0000 0.5783,0.2234 0.5783 0.4995c 0.0000,0.2892 -0.1840,0.4732 -0.4469 0.4732ZM 278.0043,360.1625 ZM 280.1468,350.9879 v 4.4558 c 0.8807,-0.8807 1.6561,-1.0910 2.1688 -1.0910c 0.9464,-0.0000 1.4196,0.7229 1.4196 2.0768v 2.7865 c 0.0000,0.3812 0.1314,0.5783 0.5652 0.5783h 0.2497 c 0.0526,-0.0000 0.1052,0.0394 0.1052 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.8938,-0.0263 -1.4196 -0.0263c -0.4600,-0.0000 -1.3538,0.0263 -1.3538 0.0263l -0.0263,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0394,-0.1052 0.1052 -0.1052h 0.2497 c 0.4469,-0.0000 0.5652,-0.1972 0.5652 -0.5783v -2.9311 c 0.0000,-1.0647 -0.2892,-1.3144 -1.0252 -1.3144c -0.3812,-0.0000 -0.9464,0.3417 -1.5773 0.9595v 3.2860 c 0.0000,0.3812 0.1314,0.5783 0.5652 0.5783h 0.2497 c 0.0526,-0.0000 0.1052,0.0394 0.1052 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.8938,-0.0263 -1.4064 -0.0263c -0.4732,-0.0000 -1.3538,0.0263 -1.3538 0.0263l -0.0263,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0263,-0.1052 0.0920 -0.1052h 0.2497 c 0.4469,-0.0000 0.5652,-0.1972 0.5652 -0.5783v -6.5852 c 0.0000,-0.7492 -0.1183,-0.9595 -0.3812 -0.9595l -0.4338,0.0526 c -0.0394,-0.0000 -0.0657,-0.0263 -0.0657 -0.0657l -0.0263,-0.3286 c 0.2103,-0.0000 0.6835,-0.0789 0.9069 -0.1183c 0.2366,-0.0526 0.4338,-0.1052 0.6966 -0.2234h 0.2892 ZM 284.8129,360.1625 ZM 286.9685,355.0232 v 3.3649 c 0.0000,0.8149 0.0789,1.2093 0.4338 1.2093c 0.3417,-0.0000 0.6046,-0.1052 0.9464 -0.3680l 0.2366,0.2234 c -0.5126,0.5783 -1.0384,0.8675 -1.6430 0.8675c -0.6046,-0.0000 -0.9595,-0.3680 -0.9595 -1.3013v -3.9958 h -0.8544 c -0.0394,-0.0000 -0.0526,-0.0131 -0.0526 -0.0526v -0.4075 c 0.0000,-0.0394 0.0131,-0.0526 0.0394 -0.0526c 0.8807,-0.0000 1.0910,-0.5126 1.0910 -1.5116v -0.2497 l 0.7624,-0.2629 v 2.0242 h 1.4458 c 0.0657,-0.0000 0.1052,0.0263 0.1052 0.0789v 0.2629 c 0.0000,0.1183 -0.1840,0.1709 -0.3155 0.1709h -1.2355 ZM 288.7824,360.1625 ZM 290.1494,358.9138 c 0.5258,-0.0000 0.8675,0.5126 0.8675 1.3013c 0.0000,0.9201 -0.6572,1.3538 -1.4458 1.4984l -0.0657,-0.3286 c 0.6835,-0.1709 0.9989,-0.5652 0.9989 -0.8412c 0.0000,-0.3023 -0.2234,-0.3549 -0.4732 -0.3812c -0.2366,-0.0394 -0.5783,-0.1446 -0.5783 -0.5783c 0.0000,-0.3680 0.2892,-0.6703 0.6966 -0.6703ZM 294.9470,360.1625 ZM 299.7314,359.2161 v -2.8785 c 0.0000,-0.9201 -0.1577,-1.3538 -0.8544 -1.3538c -0.5783,-0.0000 -1.0778,0.2234 -1.7482 1.0121v 3.2203 c 0.0000,0.3812 0.1314,0.5783 0.5652 0.5783h 0.1840 c 0.0657,-0.0000 0.1052,0.0394 0.1052 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.8281,-0.0263 -1.3407 -0.0263c -0.4732,-0.0000 -1.3670,0.0263 -1.3670 0.0263l -0.0263,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0394,-0.1052 0.1052 -0.1052h 0.2497 c 0.4469,-0.0000 0.5652,-0.1972 0.5652 -0.5783v -3.2729 c 0.0000,-0.7098 -0.1052,-0.8018 -0.2892 -0.8018c -0.1709,-0.0000 -0.3286,0.0131 -0.5520 0.0657l -0.0657,-0.3680 c 0.5520,-0.0920 0.9464,-0.1577 1.3538 -0.3812c 0.1446,-0.0657 0.2497,-0.1052 0.3417 -0.1052h 0.1972 l -0.0394,1.1698 h 0.0394 c 0.8412,-0.9858 1.4721,-1.1698 2.1425 -1.1698c 1.1830,-0.0000 1.4327,0.9069 1.4327 2.0768v 2.7865 c 0.0000,0.3812 0.1446,0.5783 0.5652 0.5783h 0.2497 c 0.0657,-0.0000 0.1183,0.0394 0.1183 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.9069,-0.0263 -1.4196 -0.0263c -0.4600,-0.0000 -1.2881,0.0263 -1.2881 0.0263l -0.0263,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0394,-0.1052 0.1052 -0.1052h 0.1840 c 0.4338,-0.0000 0.5652,-0.1972 0.5652 -0.5783ZM 301.7819,360.1625 ZM 302.2288,357.4680 c 0.0000,-1.8007 0.9727,-3.1151 2.7208 -3.1151c 1.9453,-0.0000 2.6945,1.6299 2.6945 2.9968c 0.0000,1.3144 -0.8544,2.9706 -2.7208 2.9706c -1.7613,-0.0000 -2.6945,-1.5116 -2.6945 -2.8523ZM 302.2288,357.4680 ZM 304.8050,354.7866 c -1.0515,-0.0000 -1.5379,1.2355 -1.5379 2.3791c 0.0000,1.0121 0.5783,2.6945 1.8796 2.6945c 0.5915,-0.0000 1.4590,-0.3549 1.4590 -2.0899c 0.0000,-1.9322 -0.7229,-2.9837 -1.8007 -2.9837ZM 308.0779,360.1625 ZM 312.8623,359.2161 v -2.8785 c 0.0000,-0.9201 -0.1577,-1.3538 -0.8544 -1.3538c -0.5783,-0.0000 -1.0778,0.2234 -1.7482 1.0121v 3.2203 c 0.0000,0.3812 0.1314,0.5783 0.5652 0.5783h 0.1840 c 0.0657,-0.0000 0.1052,0.0394 0.1052 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.8281,-0.0263 -1.3407 -0.0263c -0.4732,-0.0000 -1.3670,0.0263 -1.3670 0.0263l -0.0263,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0394,-0.1052 0.1052 -0.1052h 0.2497 c 0.4469,-0.0000 0.5652,-0.1972 0.5652 -0.5783v -3.2729 c 0.0000,-0.7098 -0.1052,-0.8018 -0.2892 -0.8018c -0.1709,-0.0000 -0.3286,0.0131 -0.5520 0.0657l -0.0657,-0.3680 c 0.5520,-0.0920 0.9464,-0.1577 1.3538 -0.3812c 0.1446,-0.0657 0.2497,-0.1052 0.3417 -0.1052h 0.1972 l -0.0394,1.1698 h 0.0394 c 0.8412,-0.9858 1.4721,-1.1698 2.1425 -1.1698c 1.1830,-0.0000 1.4327,0.9069 1.4327 2.0768v 2.7865 c 0.0000,0.3812 0.1446,0.5783 0.5652 0.5783h 0.2497 c 0.0657,-0.0000 0.1183,0.0394 0.1183 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.9069,-0.0263 -1.4196 -0.0263c -0.4600,-0.0000 -1.2881,0.0263 -1.2881 0.0263l -0.0263,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0394,-0.1052 0.1052 -0.1052h 0.1840 c 0.4338,-0.0000 0.5652,-0.1972 0.5652 -0.5783ZM 314.9128,360.1625 ZM 318.5142,357.0605 h -2.9706 c -0.1183,-0.0000 -0.1972,-0.1052 -0.1972 -0.2234c 0.0000,-0.2103 0.1709,-0.4863 0.3286 -0.4863h 3.0100 c 0.1314,-0.0000 0.1840,0.1183 0.1840 0.2366c 0.0000,0.1446 -0.1840,0.4732 -0.3549 0.4732ZM 319.2897,360.1625 ZM 320.7881,356.5216 h 2.4185 c 0.1314,-0.0000 0.1840,-0.0657 0.1840 -0.1840c 0.0000,-1.2224 -0.6178,-1.5379 -1.0910 -1.5379c -0.3023,-0.0000 -1.2881,0.1183 -1.5116 1.7219ZM 320.7881,356.5216 ZM 324.2582,358.9401 l 0.2629,0.2103 c -0.4995,0.6835 -1.2750,1.1698 -2.2213 1.1698c -1.8007,-0.0000 -2.5631,-1.3407 -2.5631 -2.7734c 0.0000,-1.9979 1.3144,-3.1940 2.5631 -3.1940c 1.7350,-0.0000 2.1425,1.3538 2.1425 2.4579c 0.0000,0.1446 -0.0920,0.2234 -0.2366 0.2234h -3.4569 c -0.0131,0.0789 -0.0131,0.1577 -0.0131 0.2629c 0.0000,1.3407 0.9332,2.3791 1.8796 2.3791c 0.7229,-0.0000 1.1830,-0.2366 1.6430 -0.7361ZM 324.9154,360.1625 ZM 329.7655,358.3223 l 0.3549,-0.0131 c 0.0394,0.3286 0.1972,0.9464 0.4732 1.2618c 0.1314,0.1446 0.3549,0.3812 0.8412 0.3812c 0.4338,-0.0000 1.0252,-0.4075 1.0252 -1.0121c 0.0000,-0.5652 -0.2629,-0.9332 -1.3013 -1.3801c -0.9595,-0.4206 -1.3933,-0.7098 -1.3933 -1.6956c 0.0000,-0.8281 0.7229,-1.5116 1.7482 -1.5116c 0.6572,-0.0000 1.0778,0.1183 1.4984 0.3286c 0.0789,0.4206 0.1183,0.8675 0.1314 1.3407l -0.3417,0.0131 c -0.2760,-1.0778 -0.9989,-1.2881 -1.2750 -1.2881c -0.4995,-0.0000 -0.9464,0.2760 -0.9464 0.9201c 0.0000,0.5258 0.1840,0.7755 0.8938 1.0384c 1.0647,0.3943 1.8665,0.8807 1.8665 1.9322c 0.0000,1.2487 -1.2881,1.6824 -1.8665 1.6824c -0.4600,-0.0000 -0.7229,-0.0526 -1.0647 -0.1446c -0.0789,-0.0131 -0.1577,-0.0263 -0.2497 -0.0263c -0.0657,-0.0000 -0.1709,0.0131 -0.3023 0.0394c 0.0000,-0.5520 -0.0394,-1.2224 -0.0920 -1.8665ZM 329.7655,358.3223 ZM 325.5463,358.3223 l 0.3549,-0.0131 c 0.0394,0.3286 0.1709,0.9595 0.4732 1.2618c 0.1314,0.1446 0.4206,0.3812 0.9069 0.3812c 0.4600,-0.0000 1.0121,-0.3943 1.0121 -1.0121c 0.0000,-0.5652 -0.1840,-0.9332 -1.2224 -1.3801c -0.9595,-0.4206 -1.3933,-0.7098 -1.3933 -1.6956c 0.0000,-0.8281 0.7755,-1.5116 1.7482 -1.5116c 0.6572,-0.0000 1.0121,0.1183 1.4196 0.3286c 0.0789,0.4206 0.1314,0.8675 0.1446 1.3407l -0.3549,0.0131 c -0.2629,-1.0778 -0.9332,-1.2881 -1.2093 -1.2881c -0.4995,-0.0000 -0.9464,0.2103 -0.9464 0.9201c 0.0000,0.5258 0.1840,0.7755 0.9069 1.0384c 1.0647,0.3943 1.8007,0.8807 1.8007 1.9322c 0.0000,1.2487 -1.2618,1.6824 -1.8796 1.6824c -0.4600,-0.0000 -0.7755,-0.0526 -1.1172 -0.1446c -0.0920,-0.0131 -0.1577,-0.0263 -0.2497 -0.0263c -0.0657,-0.0000 -0.1840,0.0131 -0.3023 0.0394c 0.0000,-0.5520 -0.0394,-1.2224 -0.0920 -1.8665ZM 333.9716,360.1625 ZM 335.4700,356.5216 h 2.4185 c 0.1314,-0.0000 0.1840,-0.0657 0.1840 -0.1840c 0.0000,-1.2224 -0.6178,-1.5379 -1.0910 -1.5379c -0.3023,-0.0000 -1.2881,0.1183 -1.5116 1.7219ZM 335.4700,356.5216 ZM 338.9401,358.9401 l 0.2629,0.2103 c -0.4995,0.6835 -1.2750,1.1698 -2.2213 1.1698c -1.8007,-0.0000 -2.5631,-1.3407 -2.5631 -2.7734c 0.0000,-1.9979 1.3144,-3.1940 2.5631 -3.1940c 1.7350,-0.0000 2.1425,1.3538 2.1425 2.4579c 0.0000,0.1446 -0.0920,0.2234 -0.2366 0.2234h -3.4569 c -0.0131,0.0789 -0.0131,0.1577 -0.0131 0.2629c 0.0000,1.3407 0.9332,2.3791 1.8796 2.3791c 0.7229,-0.0000 1.1830,-0.2366 1.6430 -0.7361ZM 339.5973,360.1625 ZM 344.3817,359.2161 v -2.8785 c 0.0000,-0.9201 -0.1577,-1.3538 -0.8544 -1.3538c -0.5783,-0.0000 -1.0778,0.2234 -1.7482 1.0121v 3.2203 c 0.0000,0.3812 0.1314,0.5783 0.5652 0.5783h 0.1840 c 0.0657,-0.0000 0.1052,0.0394 0.1052 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.8281,-0.0263 -1.3407 -0.0263c -0.4732,-0.0000 -1.3670,0.0263 -1.3670 0.0263l -0.0263,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0394,-0.1052 0.1052 -0.1052h 0.2497 c 0.4469,-0.0000 0.5652,-0.1972 0.5652 -0.5783v -3.2729 c 0.0000,-0.7098 -0.1052,-0.8018 -0.2892 -0.8018c -0.1709,-0.0000 -0.3286,0.0131 -0.5520 0.0657l -0.0657,-0.3680 c 0.5520,-0.0920 0.9464,-0.1577 1.3538 -0.3812c 0.1446,-0.0657 0.2497,-0.1052 0.3417 -0.1052h 0.1972 l -0.0394,1.1698 h 0.0394 c 0.8412,-0.9858 1.4721,-1.1698 2.1425 -1.1698c 1.1830,-0.0000 1.4327,0.9069 1.4327 2.0768v 2.7865 c 0.0000,0.3812 0.1446,0.5783 0.5652 0.5783h 0.2497 c 0.0657,-0.0000 0.1183,0.0394 0.1183 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.9069,-0.0263 -1.4196 -0.0263c -0.4600,-0.0000 -1.2881,0.0263 -1.2881 0.0263l -0.0263,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0394,-0.1052 0.1052 -0.1052h 0.1840 c 0.4338,-0.0000 0.5652,-0.1972 0.5652 -0.5783ZM 346.4322,360.1625 ZM 348.5878,355.0232 v 3.3649 c 0.0000,0.8149 0.0789,1.2093 0.4338 1.2093c 0.3417,-0.0000 0.6046,-0.1052 0.9464 -0.3680l 0.2366,0.2234 c -0.5126,0.5783 -1.0384,0.8675 -1.6430 0.8675c -0.6046,-0.0000 -0.9595,-0.3680 -0.9595 -1.3013v -3.9958 h -0.8544 c -0.0394,-0.0000 -0.0526,-0.0131 -0.0526 -0.0526v -0.4075 c 0.0000,-0.0394 0.0131,-0.0526 0.0394 -0.0526c 0.8807,-0.0000 1.0910,-0.5126 1.0910 -1.5116v -0.2497 l 0.7624,-0.2629 v 2.0242 h 1.4458 c 0.0657,-0.0000 0.1052,0.0263 0.1052 0.0789v 0.2629 c 0.0000,0.1183 -0.1840,0.1709 -0.3155 0.1709h -1.2355 ZM 350.4017,360.1625 ZM 351.4269,352.6572 c 0.0000,-0.3417 0.2760,-0.6309 0.6178 -0.6309c 0.3549,-0.0000 0.6309,0.2892 0.6309 0.6309c 0.0000,0.3549 -0.2760,0.6309 -0.6309 0.6309c -0.3417,-0.0000 -0.6178,-0.2760 -0.6178 -0.6309ZM 351.4269,352.6572 ZM 352.6756,359.2161 c 0.0000,0.3812 0.1446,0.5783 0.5652 0.5783h 0.2497 c 0.0657,-0.0000 0.1183,0.0394 0.1183 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.9069,-0.0263 -1.4196 -0.0263c -0.4600,-0.0000 -1.3538,0.0263 -1.3538 0.0263l -0.0263,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0394,-0.1052 0.1052 -0.1052h 0.2497 c 0.4338,-0.0000 0.5652,-0.1972 0.5652 -0.5783v -3.2729 c 0.0000,-0.6966 -0.1183,-0.8018 -0.3023 -0.8018c -0.1709,-0.0000 -0.3286,0.0131 -0.5520 0.0657l -0.0657,-0.3680 c 0.8412,-0.1446 0.9858,-0.1972 1.3670 -0.3812c 0.1446,-0.0526 0.2366,-0.1052 0.3286 -0.1052h 0.1972 v 4.8633 ZM 353.8717,360.1625 ZM 357.6966,356.9422 l -1.0384,0.2629 c -1.1567,0.3549 -1.3275,0.9595 -1.3275 1.5510c 0.0000,0.4075 0.1972,1.0252 1.0252 1.0252c 0.3943,-0.0000 0.9989,-0.3812 1.3407 -0.6703v -2.1688 ZM 357.6966,356.9422 ZM 358.5378,360.3202 c -0.4995,-0.0000 -0.7755,-0.4469 -0.8281 -0.7624l -0.3023,0.2103 c -0.6046,0.4206 -0.8281,0.5520 -1.4327 0.5520c -0.9201,-0.0000 -1.5904,-0.5258 -1.5904 -1.5116c 0.0000,-0.9989 0.8544,-1.6824 2.1030 -1.9979l 1.2093,-0.3023 c 0.0000,-1.4853 -0.6835,-1.7613 -1.1304 -1.7613c -0.4995,-0.0000 -1.0778,0.2234 -1.0778 0.6309c 0.0000,0.1446 0.0263,0.2234 0.0394 0.2629c 0.0263,0.0526 0.0394,0.1446 0.0394 0.2366c 0.0000,0.1709 -0.1314,0.4338 -0.5126 0.4338c -0.3155,-0.0000 -0.5258,-0.2103 -0.5258 -0.5258c 0.0000,-0.7624 1.2355,-1.4327 2.0768 -1.4327c 0.9595,-0.0000 2.0636,0.3943 2.0636 2.2608v 1.9322 c 0.0000,0.8018 0.0131,1.1435 0.3155 1.1435c 0.2892,-0.0000 0.3680,-0.3680 0.3812 -0.6572l 0.3286,0.0657 c -0.0789,0.9595 -0.4863,1.2224 -1.1567 1.2224ZM 359.7997,360.1625 ZM 361.0484,359.2161 v -6.5852 c 0.0000,-0.7492 -0.1314,-0.9595 -0.3943 -0.9595l -0.4206,0.0526 c -0.0394,-0.0000 -0.0789,-0.0263 -0.0789 -0.0657l -0.0263,-0.3286 c 0.2103,-0.0000 0.6966,-0.0789 0.9201 -0.1183c 0.2366,-0.0526 0.4206,-0.1052 0.6835 -0.2234h 0.2892 v 8.2282 c 0.0000,0.3812 0.1446,0.5783 0.5652 0.5783h 0.3155 c 0.0526,-0.0000 0.1052,0.0394 0.1052 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.9595,-0.0263 -1.4721 -0.0263c -0.4600,-0.0000 -1.4196,0.0263 -1.4196 0.0263l -0.0131,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0263,-0.1052 0.0920 -0.1052h 0.3155 c 0.4338,-0.0000 0.5652,-0.1972 0.5652 -0.5783ZM 366.5031,360.1625 ZM 371.2876,359.2161 v -2.8785 c 0.0000,-0.9201 -0.1577,-1.3538 -0.8544 -1.3538c -0.5783,-0.0000 -1.0778,0.2234 -1.7482 1.0121v 3.2203 c 0.0000,0.3812 0.1314,0.5783 0.5652 0.5783h 0.1840 c 0.0657,-0.0000 0.1052,0.0394 0.1052 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.8281,-0.0263 -1.3407 -0.0263c -0.4732,-0.0000 -1.3670,0.0263 -1.3670 0.0263l -0.0263,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0394,-0.1052 0.1052 -0.1052h 0.2497 c 0.4469,-0.0000 0.5652,-0.1972 0.5652 -0.5783v -3.2729 c 0.0000,-0.7098 -0.1052,-0.8018 -0.2892 -0.8018c -0.1709,-0.0000 -0.3286,0.0131 -0.5520 0.0657l -0.0657,-0.3680 c 0.5520,-0.0920 0.9464,-0.1577 1.3538 -0.3812c 0.1446,-0.0657 0.2497,-0.1052 0.3417 -0.1052h 0.1972 l -0.0394,1.1698 h 0.0394 c 0.8412,-0.9858 1.4721,-1.1698 2.1425 -1.1698c 1.1830,-0.0000 1.4327,0.9069 1.4327 2.0768v 2.7865 c 0.0000,0.3812 0.1446,0.5783 0.5652 0.5783h 0.2497 c 0.0657,-0.0000 0.1183,0.0394 0.1183 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.9069,-0.0263 -1.4196 -0.0263c -0.4600,-0.0000 -1.2881,0.0263 -1.2881 0.0263l -0.0263,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0394,-0.1052 0.1052 -0.1052h 0.1840 c 0.4338,-0.0000 0.5652,-0.1972 0.5652 -0.5783ZM 373.3380,360.1625 ZM 373.7849,357.4680 c 0.0000,-1.8007 0.9727,-3.1151 2.7208 -3.1151c 1.9453,-0.0000 2.6945,1.6299 2.6945 2.9968c 0.0000,1.3144 -0.8544,2.9706 -2.7208 2.9706c -1.7613,-0.0000 -2.6945,-1.5116 -2.6945 -2.8523ZM 373.7849,357.4680 ZM 376.3612,354.7866 c -1.0515,-0.0000 -1.5379,1.2355 -1.5379 2.3791c 0.0000,1.0121 0.5783,2.6945 1.8796 2.6945c 0.5915,-0.0000 1.4590,-0.3549 1.4590 -2.0899c 0.0000,-1.9322 -0.7229,-2.9837 -1.8007 -2.9837ZM 379.6340,360.1625 ZM 381.7897,355.0232 v 3.3649 c 0.0000,0.8149 0.0789,1.2093 0.4338 1.2093c 0.3417,-0.0000 0.6046,-0.1052 0.9464 -0.3680l 0.2366,0.2234 c -0.5126,0.5783 -1.0384,0.8675 -1.6430 0.8675c -0.6046,-0.0000 -0.9595,-0.3680 -0.9595 -1.3013v -3.9958 h -0.8544 c -0.0394,-0.0000 -0.0526,-0.0131 -0.0526 -0.0526v -0.4075 c 0.0000,-0.0394 0.0131,-0.0526 0.0394 -0.0526c 0.8807,-0.0000 1.0910,-0.5126 1.0910 -1.5116v -0.2497 l 0.7624,-0.2629 v 2.0242 h 1.4458 c 0.0657,-0.0000 0.1052,0.0263 0.1052 0.0789v 0.2629 c 0.0000,0.1183 -0.1840,0.1709 -0.3155 0.1709h -1.2355 ZM 383.6035,360.1625 ZM 385.1020,356.5216 h 2.4185 c 0.1314,-0.0000 0.1840,-0.0657 0.1840 -0.1840c 0.0000,-1.2224 -0.6178,-1.5379 -1.0910 -1.5379c -0.3023,-0.0000 -1.2881,0.1183 -1.5116 1.7219ZM 385.1020,356.5216 ZM 388.5720,358.9401 l 0.2629,0.2103 c -0.4995,0.6835 -1.2750,1.1698 -2.2213 1.1698c -1.8007,-0.0000 -2.5631,-1.3407 -2.5631 -2.7734c 0.0000,-1.9979 1.3144,-3.1940 2.5631 -3.1940c 1.7350,-0.0000 2.1425,1.3538 2.1425 2.4579c 0.0000,0.1446 -0.0920,0.2234 -0.2366 0.2234h -3.4569 c -0.0131,0.0789 -0.0131,0.1577 -0.0131 0.2629c 0.0000,1.3407 0.9332,2.3791 1.8796 2.3791c 0.7229,-0.0000 1.1830,-0.2366 1.6430 -0.7361Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 39.5006,208.7184 ZM 38.0811,206.8454 l -9.8777,-0.0000 c -1.1238,-0.0000 -1.4393,0.1972 -1.4393 0.5915l 0.0789,0.6309 c -0.0000,0.0591 -0.0394,0.1183 -0.0986 0.1183l -0.4929,0.0394 c 0.0000,-0.3155 -0.1183,-1.0450 -0.1774 -1.3801c -0.0789,-0.3549 -0.1577,-0.6309 -0.3352 -1.0252l 0.0000,-0.4338 l 12.3423,0.0000 c 0.5718,0.0000 0.8675,-0.2169 0.8675 -0.8478l 0.0000,-0.4732 c 0.0000,-0.0789 0.0591,-0.1577 0.1577 -0.1577l 0.3746,0.0000 l 0.0394,0.0394 c 0.0000,-0.0000 -0.0394,1.4393 -0.0394 2.2082c -0.0000,0.6901 0.0394,2.1293 0.0394 2.1293l -0.0394,0.0197 l -0.3746,-0.0000 c -0.0986,-0.0000 -0.1577,-0.0394 -0.1577 -0.1380l 0.0000,-0.4732 c 0.0000,-0.6506 -0.2957,-0.8478 -0.8675 -0.8478ZM 39.5006,203.5923 ZM 34.0393,201.3446 l 0.0000,-3.6278 c 0.0000,-0.1972 -0.0986,-0.2760 -0.2760 -0.2760c -1.8336,-0.0000 -2.3068,0.9267 -2.3068 1.6364c -0.0000,0.4535 0.1774,1.9322 2.5828 2.2673ZM 34.0393,201.3446 ZM 37.6671,196.1396 l 0.3155,-0.3943 c 1.0252,0.7492 1.7547,1.9125 1.7547 3.3320c -0.0000,2.7011 -2.0110,3.8446 -4.1601 3.8446c -2.9968,-0.0000 -4.7910,-1.9716 -4.7910 -3.8446c 0.0000,-2.6025 2.0308,-3.2137 3.6869 -3.2137c 0.2169,0.0000 0.3352,0.1380 0.3352 0.3549l -0.0000,5.1853 c 0.1183,0.0197 0.2366,0.0197 0.3943 0.0197c 2.0110,0.0000 3.5686,-1.3998 3.5686 -2.8194c 0.0000,-1.0844 -0.3549,-1.7744 -1.1041 -2.4645ZM 39.5006,195.1538 ZM 38.0811,193.3399 l -6.2894,-0.0000 l -0.0000,1.3604 c -0.0000,0.0789 -0.0197,0.0986 -0.0986 0.0986l -0.2760,-0.0000 c -0.1577,-0.0000 -0.3943,-0.0986 -0.3943 -0.4535l 0.0000,-1.0055 l -0.7689,-0.0000 c -3.0757,-0.0000 -4.5150,-1.5970 -4.5150 -3.2532c 0.0000,-0.7492 0.1972,-1.2618 0.5323 -1.7547c 0.2957,-0.3943 0.6309,-0.5718 0.9464 -0.5718c 0.4140,0.0000 0.7098,0.2957 0.7098 0.6703c -0.0000,0.3943 -0.2169,0.6506 -0.5520 0.8084c -0.6506,0.2563 -0.9661,0.6309 -0.9661 1.2224c -0.0000,0.6506 0.4732,1.3998 3.5095 1.3998l 1.1041,0.0000 l 0.0000,-2.5237 c 0.0000,-1.5379 -0.7098,-1.7153 -2.2673 -1.7153l -0.3746,-0.0000 l -0.3943,-1.1238 l 3.0363,0.0000 l 0.0000,-2.2082 l 0.7689,0.0000 l -0.0000,2.2082 l 5.0276,0.0000 c 1.2224,0.0000 1.7942,-0.1380 1.7942 -0.6703c 0.0000,-0.5520 -0.2957,-1.1041 -0.5323 -1.3998l 0.2760,-0.3155 c 0.7886,0.5126 1.3604,1.3407 1.3604 2.3265c -0.0000,0.9069 -0.5520,1.5181 -1.9716 1.5181l -5.9543,-0.0000 l -0.0000,3.9038 l 6.2894,0.0000 c 0.5718,0.0000 0.8675,-0.1972 0.8675 -0.8478l 0.0000,-0.6506 c 0.0000,-0.0789 0.0591,-0.1577 0.1577 -0.1577l 0.3746,0.0000 l 0.0394,0.0394 c 0.0000,-0.0000 -0.0394,1.6167 -0.0394 2.3856c -0.0000,0.7098 0.0394,2.0505 0.0394 2.0505l -0.0394,0.0394 l -0.3746,-0.0000 c -0.0986,-0.0000 -0.1577,-0.0591 -0.1577 -0.1577l 0.0000,-0.3746 c 0.0000,-0.6703 -0.2957,-0.8478 -0.8675 -0.8478ZM 39.5006,178.8880 ZM 34.6702,173.1507 l 0.3943,1.5576 c 0.5323,1.7350 1.4393,1.9913 2.3265 1.9913c 0.6112,0.0000 1.5379,-0.2957 1.5379 -1.5379c 0.0000,-0.5915 -0.5718,-1.4984 -1.0055 -2.0110l -3.2532,-0.0000 ZM 34.6702,173.1507 ZM 39.7372,171.8888 c -0.0000,0.7492 -0.6703,1.1632 -1.1435 1.2421l 0.3155,0.4535 c 0.6309,0.9069 0.8281,1.2421 0.8281 2.1491c -0.0000,1.3801 -0.7886,2.3856 -2.2673 2.3856c -1.4984,-0.0000 -2.5237,-1.2815 -2.9968 -3.1546l -0.4535,-1.8139 c -2.2279,-0.0000 -2.6420,1.0252 -2.6420 1.6956c -0.0000,0.7492 0.3352,1.6167 0.9464 1.6167c 0.2169,0.0000 0.3352,-0.0394 0.3943 -0.0591c 0.0789,-0.0394 0.2169,-0.0591 0.3549 -0.0591c 0.2563,0.0000 0.6506,0.1972 0.6506 0.7689c -0.0000,0.4732 -0.3155,0.7886 -0.7886 0.7886c -1.1435,-0.0000 -2.1491,-1.8533 -2.1491 -3.1151c 0.0000,-1.4393 0.5915,-3.0954 3.3912 -3.0954l 2.8983,0.0000 c 1.2027,0.0000 1.7153,-0.0197 1.7153 -0.4732c 0.0000,-0.4338 -0.5520,-0.5520 -0.9858 -0.5718l 0.0986,-0.4929 c 1.4393,0.1183 1.8336,0.7295 1.8336 1.7350ZM 39.5006,169.9961 ZM 31.5748,166.1120 c -0.0000,0.3943 0.0986,0.4732 0.2366 0.4732c 0.0986,0.0000 0.2760,-0.0789 0.6309 -0.2957l 1.7744,-1.2027 c 0.1183,-0.0591 0.1774,-0.1183 0.1774 -0.1972c 0.0000,-0.0591 -0.0394,-0.0986 -0.1380 -0.1774l -1.7942,-1.2815 c -0.2760,-0.2169 -0.4929,-0.3352 -0.6506 -0.3352c -0.1577,-0.0000 -0.2366,0.1380 -0.2366 0.4140l -0.0000,0.3155 c -0.0000,0.0591 -0.0394,0.1183 -0.1380 0.1183l -0.3746,-0.0000 l -0.0591,-0.0591 c 0.0000,-0.0000 0.0394,-0.9267 0.0394 -1.5379c 0.0000,-0.6309 -0.0394,-1.5970 -0.0394 -1.5970l 0.0394,-0.0197 l 0.3746,0.0000 c 0.1380,0.0000 0.1577,0.1183 0.1577 0.2366c -0.0000,0.7295 0.2366,1.0252 1.1632 1.7547l 2.1096,1.6561 c 0.0591,0.0394 0.0986,0.0591 0.1380 0.0591c 0.0394,0.0000 0.0986,-0.0197 0.1577 -0.0591l 2.5039,-1.7744 c 1.2815,-0.9069 1.3013,-1.1632 1.3013 -1.7942c 0.0000,-0.1972 0.0394,-0.2760 0.1577 -0.2760l 0.3746,0.0000 l 0.0394,0.0197 c 0.0000,-0.0000 -0.0394,1.0647 -0.0394 1.7350c -0.0000,0.8084 0.0394,2.0505 0.0394 2.0505l -0.0394,0.0394 l -0.3746,-0.0000 c -0.0986,-0.0000 -0.1577,-0.0394 -0.1577 -0.1380l 0.0000,-0.2366 c 0.0000,-0.3155 -0.0591,-0.4535 -0.2169 -0.4535c -0.1774,-0.0000 -0.4732,0.2169 -0.8872 0.5323l -1.5773,1.1435 c -0.0986,0.0789 -0.1380,0.1183 -0.1380 0.1774c -0.0000,0.0394 0.0591,0.0986 0.1774 0.1774l 1.7942,1.2421 c 0.3943,0.2957 0.4929,0.3549 0.6309 0.3549c 0.1380,0.0000 0.2169,-0.1183 0.2169 -0.4140l 0.0000,-0.2760 c 0.0000,-0.0986 0.0591,-0.1380 0.1577 -0.1380l 0.3746,0.0000 l 0.0394,0.0394 c 0.0000,-0.0000 -0.0394,1.0252 -0.0394 1.6561c -0.0000,0.5718 0.0394,1.4787 0.0394 1.4787l -0.0394,0.0394 l -0.3352,-0.0000 c -0.1183,-0.0000 -0.1972,-0.0789 -0.1972 -0.2563c 0.0000,-0.4732 -0.0986,-0.9267 -1.1632 -1.7547l -2.1293,-1.6561 c -0.0394,-0.0197 -0.0789,-0.0394 -0.1380 -0.0394c -0.0591,-0.0000 -0.0986,0.0197 -0.1577 0.0591l -2.5039,1.7153 c -0.8084,0.5520 -1.2815,0.9069 -1.2815 1.5970c -0.0000,0.1380 -0.0591,0.2760 -0.1380 0.2760l -0.3746,-0.0000 l -0.0591,-0.0394 l 0.0394,-1.5576 l -0.0394,-2.1885 l 0.0591,-0.0591 l 0.3549,0.0000 c 0.0986,0.0000 0.1577,0.0789 0.1577 0.1577l -0.0000,0.2957 ZM 39.5006,160.1972 ZM 28.2428,158.6593 c -0.5126,-0.0000 -0.9464,-0.4140 -0.9464 -0.9267c 0.0000,-0.5323 0.4338,-0.9464 0.9464 -0.9464c 0.5323,0.0000 0.9464,0.4140 0.9464 0.9464c -0.0000,0.5126 -0.4140,0.9267 -0.9464 0.9267ZM 28.2428,158.6593 ZM 38.0811,156.7863 c 0.5718,0.0000 0.8675,-0.2169 0.8675 -0.8478l 0.0000,-0.3746 c 0.0000,-0.0986 0.0591,-0.1774 0.1577 -0.1774l 0.3746,0.0000 l 0.0394,0.0394 c 0.0000,-0.0000 -0.0394,1.3604 -0.0394 2.1293c -0.0000,0.6901 0.0394,2.0308 0.0394 2.0308l -0.0394,0.0394 l -0.3746,-0.0000 c -0.0986,-0.0000 -0.1577,-0.0591 -0.1577 -0.1577l 0.0000,-0.3746 c 0.0000,-0.6506 -0.2957,-0.8478 -0.8675 -0.8478l -4.9093,-0.0000 c -1.0450,-0.0000 -1.2027,0.1774 -1.2027 0.4535c -0.0000,0.2563 0.0197,0.4929 0.0986 0.8281l -0.5520,0.0986 c -0.2169,-1.2618 -0.2957,-1.4787 -0.5718 -2.0505c -0.0789,-0.2169 -0.1577,-0.3549 -0.1577 -0.4929l 0.0000,-0.2957 l 7.2949,0.0000 ZM 39.5006,154.9922 ZM 36.7404,154.1444 l -0.0197,-0.5323 c 0.4929,-0.0591 1.4393,-0.2760 1.8927 -0.7098c 0.2169,-0.1972 0.5718,-0.7295 0.5718 -1.4590c 0.0000,-0.6901 -0.5520,-1.7153 -1.5181 -1.7153c -0.8478,-0.0000 -1.4196,0.4732 -2.0899 2.0308c -0.6309,1.4393 -1.0450,2.1885 -2.5237 2.1885c -1.3210,-0.0000 -2.2673,-1.1632 -2.2673 -2.7208c 0.0000,-0.9858 0.1774,-1.7153 0.4929 -2.3265c 0.6309,-0.1183 1.3013,-0.1774 2.0110 -0.2169l 0.0197,0.5323 c -1.6167,0.4140 -1.9322,1.5970 -1.9322 2.0110c -0.0000,0.7492 0.2957,1.5181 1.3801 1.5181c 0.7886,0.0000 1.1830,-0.3746 1.5773 -1.4590c 0.5915,-1.5970 1.3013,-2.8785 2.8785 -2.8785c 1.9519,0.0000 2.5237,2.0702 2.5237 2.9968c -0.0000,0.6901 -0.0789,1.2618 -0.2169 1.7744c -0.0197,0.1380 -0.0394,0.2366 -0.0394 0.3746c -0.0000,0.0986 0.0197,0.2563 0.0591 0.4535c -0.8281,-0.0000 -1.8336,0.0591 -2.7997 0.1380ZM 39.5006,142.7485 ZM 31.7917,139.5150 l 5.0473,0.0000 c 1.2224,0.0000 1.8139,-0.1183 1.8139 -0.6506c 0.0000,-0.5126 -0.1577,-0.9069 -0.5520 -1.4196l 0.3352,-0.3549 c 0.8675,0.7689 1.3013,1.5576 1.3013 2.4645c -0.0000,0.9069 -0.5520,1.4393 -1.9519 1.4393l -5.9937,-0.0000 l -0.0000,1.2815 c -0.0000,0.0591 -0.0197,0.0789 -0.0789 0.0789l -0.6112,-0.0000 c -0.0591,-0.0000 -0.0789,-0.0197 -0.0789 -0.0591c 0.0000,-1.3210 -0.7689,-1.6364 -2.2673 -1.6364l -0.3746,-0.0000 l -0.3943,-1.1435 l 3.0363,0.0000 l 0.0000,-2.1688 c 0.0000,-0.0986 0.0394,-0.1577 0.1183 -0.1577l 0.3943,0.0000 c 0.1774,0.0000 0.2563,0.2760 0.2563 0.4732l -0.0000,1.8533 ZM 39.5006,136.7942 ZM 28.2428,135.2564 c -0.5126,-0.0000 -0.9464,-0.4140 -0.9464 -0.9267c 0.0000,-0.5323 0.4338,-0.9464 0.9464 -0.9464c 0.5323,0.0000 0.9464,0.4140 0.9464 0.9464c -0.0000,0.5126 -0.4140,0.9267 -0.9464 0.9267ZM 28.2428,135.2564 ZM 38.0811,133.3834 c 0.5718,0.0000 0.8675,-0.2169 0.8675 -0.8478l 0.0000,-0.3746 c 0.0000,-0.0986 0.0591,-0.1774 0.1577 -0.1774l 0.3746,0.0000 l 0.0394,0.0394 c 0.0000,-0.0000 -0.0394,1.3604 -0.0394 2.1293c -0.0000,0.6901 0.0394,2.0308 0.0394 2.0308l -0.0394,0.0394 l -0.3746,-0.0000 c -0.0986,-0.0000 -0.1577,-0.0591 -0.1577 -0.1577l 0.0000,-0.3746 c 0.0000,-0.6506 -0.2957,-0.8478 -0.8675 -0.8478l -4.9093,-0.0000 c -1.0450,-0.0000 -1.2027,0.1774 -1.2027 0.4535c -0.0000,0.2563 0.0197,0.4929 0.0986 0.8281l -0.5520,0.0986 c -0.2169,-1.2618 -0.2957,-1.4787 -0.5718 -2.0505c -0.0789,-0.2169 -0.1577,-0.3549 -0.1577 -0.4929l 0.0000,-0.2957 l 7.2949,0.0000 ZM 39.5006,131.5892 ZM 31.7917,128.3558 l 5.0473,0.0000 c 1.2224,0.0000 1.8139,-0.1183 1.8139 -0.6506c 0.0000,-0.5126 -0.1577,-0.9069 -0.5520 -1.4196l 0.3352,-0.3549 c 0.8675,0.7689 1.3013,1.5576 1.3013 2.4645c -0.0000,0.9069 -0.5520,1.4393 -1.9519 1.4393l -5.9937,-0.0000 l -0.0000,1.2815 c -0.0000,0.0591 -0.0197,0.0789 -0.0789 0.0789l -0.6112,-0.0000 c -0.0591,-0.0000 -0.0789,-0.0197 -0.0789 -0.0591c 0.0000,-1.3210 -0.7689,-1.6364 -2.2673 -1.6364l -0.3746,-0.0000 l -0.3943,-1.1435 l 3.0363,0.0000 l 0.0000,-2.1688 c 0.0000,-0.0986 0.0394,-0.1577 0.1183 -0.1577l 0.3943,0.0000 c 0.1774,0.0000 0.2563,0.2760 0.2563 0.4732l -0.0000,1.8533 ZM 39.5006,125.6349 ZM 38.0811,123.7619 l -9.8777,-0.0000 c -1.1238,-0.0000 -1.4393,0.1972 -1.4393 0.5915l 0.0789,0.6309 c -0.0000,0.0591 -0.0394,0.1183 -0.0986 0.1183l -0.4929,0.0394 c 0.0000,-0.3155 -0.1183,-1.0450 -0.1774 -1.3801c -0.0789,-0.3549 -0.1577,-0.6309 -0.3352 -1.0252l 0.0000,-0.4338 l 12.3423,0.0000 c 0.5718,0.0000 0.8675,-0.2169 0.8675 -0.8478l 0.0000,-0.4732 c 0.0000,-0.0789 0.0591,-0.1577 0.1577 -0.1577l 0.3746,0.0000 l 0.0394,0.0394 c 0.0000,-0.0000 -0.0394,1.4393 -0.0394 2.2082c -0.0000,0.6901 0.0394,2.1293 0.0394 2.1293l -0.0394,0.0197 l -0.3746,-0.0000 c -0.0986,-0.0000 -0.1577,-0.0394 -0.1577 -0.1380l 0.0000,-0.4732 c 0.0000,-0.6506 -0.2957,-0.8478 -0.8675 -0.8478ZM 39.5006,120.5088 ZM 34.0393,118.2611 l 0.0000,-3.6278 c 0.0000,-0.1972 -0.0986,-0.2760 -0.2760 -0.2760c -1.8336,-0.0000 -2.3068,0.9267 -2.3068 1.6364c -0.0000,0.4535 0.1774,1.9322 2.5828 2.2673ZM 34.0393,118.2611 ZM 37.6671,113.0561 l 0.3155,-0.3943 c 1.0252,0.7492 1.7547,1.9125 1.7547 3.3320c -0.0000,2.7011 -2.0110,3.8446 -4.1601 3.8446c -2.9968,-0.0000 -4.7910,-1.9716 -4.7910 -3.8446c 0.0000,-2.6025 2.0308,-3.2137 3.6869 -3.2137c 0.2169,0.0000 0.3352,0.1380 0.3352 0.3549l -0.0000,5.1853 c 0.1183,0.0197 0.2366,0.0197 0.3943 0.0197c 2.0110,0.0000 3.5686,-1.3998 3.5686 -2.8194c 0.0000,-1.0844 -0.3549,-1.7744 -1.1041 -2.4645Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 181.9049,54.9479 ZM 188.8646,43.0000 h -2.6617 c -0.4732,-0.0000 -0.7098,0.1577 -0.7098 0.6309v 4.1995 h 2.7011 c 0.6901,-0.0000 0.8675,-0.3155 0.9858 -0.8675l 0.1380,-0.5915 c 0.0000,-0.0789 0.0591,-0.1577 0.1380 -0.1577h 0.4338 c 0.0591,-0.0000 0.0789,0.0394 0.0789 0.0789c -0.0789,0.4929 -0.1577,1.2224 -0.1577 1.8730c 0.0000,0.6703 0.0986,1.5576 0.1577 1.8927l -0.0591,0.0591 h -0.4535 c -0.0986,-0.0000 -0.1577,-0.0789 -0.1577 -0.1380l -0.1183,-0.6112 c -0.0986,-0.5718 -0.3155,-0.8675 -0.9858 -0.8675h -2.7011 v 5.0276 c 0.0000,0.5323 0.2760,0.6506 0.7098 0.6506h 3.2729 c 1.4984,-0.0000 2.0702,-1.1632 2.4645 -2.5828l 0.6112,0.0986 c -0.2366,1.0252 -0.4338,2.1491 -0.5323 3.2532h -5.7965 l -1.5181,-0.0197 l -2.5237,0.0394 l -0.0394,-0.0394 v -0.3943 c 0.0000,-0.0591 0.0394,-0.1380 0.1577 -0.1380h 0.5915 c 0.7886,-0.0000 1.0252,-0.3155 1.0252 -0.8675v -9.8777 c 0.0000,-0.6112 -0.2760,-0.8872 -1.0252 -0.8872h -0.5915 c -0.1380,-0.0000 -0.1577,-0.0789 -0.1577 -0.1380v -0.3943 l 0.0394,-0.0197 l 2.5237,0.0197 l 1.5379,-0.0197 h 5.0473 c 0.0789,1.0450 0.2563,2.2476 0.4140 3.0560l -0.5718,0.0986 c -0.4338,-1.3604 -0.7886,-2.3659 -2.2673 -2.3659ZM 193.1233,54.9479 ZM 197.0074,47.0220 c -0.3943,-0.0000 -0.4732,0.0986 -0.4732 0.2366c 0.0000,0.0986 0.0789,0.2760 0.2957 0.6309l 1.2027,1.7744 c 0.0591,0.1183 0.1183,0.1774 0.1972 0.1774c 0.0591,-0.0000 0.0986,-0.0394 0.1774 -0.1380l 1.2815,-1.7942 c 0.2169,-0.2760 0.3352,-0.4929 0.3352 -0.6506c 0.0000,-0.1577 -0.1380,-0.2366 -0.4140 -0.2366h -0.3155 c -0.0591,-0.0000 -0.1183,-0.0394 -0.1183 -0.1380v -0.3746 l 0.0591,-0.0591 c 0.0000,-0.0000 0.9267,0.0394 1.5379 0.0394c 0.6309,-0.0000 1.5970,-0.0394 1.5970 -0.0394l 0.0197,0.0394 v 0.3746 c 0.0000,0.1380 -0.1183,0.1577 -0.2366 0.1577c -0.7295,-0.0000 -1.0252,0.2366 -1.7547 1.1632l -1.6561,2.1096 c -0.0394,0.0591 -0.0591,0.0986 -0.0591 0.1380c 0.0000,0.0394 0.0197,0.0986 0.0591 0.1577l 1.7744,2.5039 c 0.9069,1.2815 1.1632,1.3013 1.7942 1.3013c 0.1972,-0.0000 0.2760,0.0394 0.2760 0.1577v 0.3746 l -0.0197,0.0394 c 0.0000,-0.0000 -1.0647,-0.0394 -1.7350 -0.0394c -0.8084,-0.0000 -2.0505,0.0394 -2.0505 0.0394l -0.0394,-0.0394 v -0.3746 c 0.0000,-0.0986 0.0394,-0.1577 0.1380 -0.1577h 0.2366 c 0.3155,-0.0000 0.4535,-0.0591 0.4535 -0.2169c 0.0000,-0.1774 -0.2169,-0.4732 -0.5323 -0.8872l -1.1435,-1.5773 c -0.0789,-0.0986 -0.1183,-0.1380 -0.1774 -0.1380c -0.0394,-0.0000 -0.0986,0.0591 -0.1774 0.1774l -1.2421,1.7942 c -0.2957,0.3943 -0.3549,0.4929 -0.3549 0.6309c 0.0000,0.1380 0.1183,0.2169 0.4140 0.2169h 0.2760 c 0.0986,-0.0000 0.1380,0.0591 0.1380 0.1577v 0.3746 l -0.0394,0.0394 c 0.0000,-0.0000 -1.0252,-0.0394 -1.6561 -0.0394c -0.5718,-0.0000 -1.4787,0.0394 -1.4787 0.0394l -0.0394,-0.0394 v -0.3352 c 0.0000,-0.1183 0.0789,-0.1972 0.2563 -0.1972c 0.4732,-0.0000 0.9267,-0.0986 1.7547 -1.1632l 1.6561,-2.1293 c 0.0197,-0.0394 0.0394,-0.0789 0.0394 -0.1380c 0.0000,-0.0591 -0.0197,-0.0986 -0.0591 -0.1577l -1.7153,-2.5039 c -0.5520,-0.8084 -0.9069,-1.2815 -1.5970 -1.2815c -0.1380,-0.0000 -0.2760,-0.0591 -0.2760 -0.1380v -0.3746 l 0.0394,-0.0591 l 1.5576,0.0394 l 2.1885,-0.0394 l 0.0591,0.0591 v 0.3549 c 0.0000,0.0986 -0.0789,0.1577 -0.1577 0.1577h -0.2957 ZM 202.9222,54.9479 ZM 208.6596,50.1175 l -1.5576,0.3943 c -1.7350,0.5323 -1.9913,1.4393 -1.9913 2.3265c 0.0000,0.6112 0.2957,1.5379 1.5379 1.5379c 0.5915,-0.0000 1.4984,-0.5718 2.0110 -1.0055v -3.2532 ZM 208.6596,50.1175 ZM 209.9214,55.1845 c -0.7492,-0.0000 -1.1632,-0.6703 -1.2421 -1.1435l -0.4535,0.3155 c -0.9069,0.6309 -1.2421,0.8281 -2.1491 0.8281c -1.3801,-0.0000 -2.3856,-0.7886 -2.3856 -2.2673c 0.0000,-1.4984 1.2815,-2.5237 3.1546 -2.9968l 1.8139,-0.4535 c 0.0000,-2.2279 -1.0252,-2.6420 -1.6956 -2.6420c -0.7492,-0.0000 -1.6167,0.3352 -1.6167 0.9464c 0.0000,0.2169 0.0394,0.3352 0.0591 0.3943c 0.0394,0.0789 0.0591,0.2169 0.0591 0.3549c 0.0000,0.2563 -0.1972,0.6506 -0.7689 0.6506c -0.4732,-0.0000 -0.7886,-0.3155 -0.7886 -0.7886c 0.0000,-1.1435 1.8533,-2.1491 3.1151 -2.1491c 1.4393,-0.0000 3.0954,0.5915 3.0954 3.3912v 2.8983 c 0.0000,1.2027 0.0197,1.7153 0.4732 1.7153c 0.4338,-0.0000 0.5520,-0.5520 0.5718 -0.9858l 0.4929,0.0986 c -0.1183,1.4393 -0.7295,1.8336 -1.7350 1.8336ZM 211.8142,54.9479 ZM 223.7029,53.5283 v -4.5347 c 0.0000,-1.3210 -0.5126,-1.8139 -1.2618 -1.8139c -0.7689,-0.0000 -1.3801,0.3943 -2.3265 1.4393c 0.0394,0.2366 0.0394,0.5126 0.0394 0.7886v 4.1207 c 0.0000,0.5718 0.1972,0.8675 0.8478 0.8675h 0.3352 c 0.0986,-0.0000 0.1774,0.0591 0.1774 0.1577v 0.3746 l -0.0394,0.0394 c 0.0000,-0.0000 -1.3210,-0.0394 -2.0899 -0.0394c -0.7098,-0.0000 -2.0702,0.0394 -2.0702 0.0394l -0.0394,-0.0394 v -0.3746 c 0.0000,-0.0986 0.0591,-0.1577 0.1577 -0.1577h 0.3943 c 0.6703,-0.0000 0.8478,-0.2957 0.8478 -0.8675v -4.4953 c 0.0000,-1.3210 -0.5323,-1.8533 -1.2815 -1.8533c -0.6901,-0.0000 -1.3407,0.4929 -2.2673 1.4590v 4.8896 c 0.0000,0.5718 0.1972,0.8675 0.8478 0.8675h 0.3746 c 0.0789,-0.0000 0.1577,0.0591 0.1577 0.1577v 0.3746 l -0.0394,0.0394 c 0.0000,-0.0000 -1.3407,-0.0394 -2.1096 -0.0394c -0.7098,-0.0000 -2.0505,0.0394 -2.0505 0.0394l -0.0394,-0.0394 v -0.3746 c 0.0000,-0.0986 0.0591,-0.1577 0.1577 -0.1577h 0.3746 c 0.6703,-0.0000 0.8478,-0.2957 0.8478 -0.8675v -4.9093 c 0.0000,-1.1238 -0.1774,-1.2027 -0.4338 -1.2027c -0.2563,-0.0000 -0.4929,0.0197 -0.8281 0.0986l -0.0986,-0.5520 c 1.2421,-0.2169 1.5181,-0.2957 2.0505 -0.5718c 0.1972,-0.0986 0.3549,-0.1577 0.4929 -0.1577h 0.2957 l -0.0591,1.7153 h 0.0591 c 0.9267,-0.9858 1.7547,-1.7153 2.9771 -1.7153c 1.1041,-0.0000 1.7942,0.8084 1.9125 1.6956c 1.1435,-1.1830 2.0702,-1.6956 3.1349 -1.6956c 1.7350,-0.0000 2.0308,1.4393 2.0308 3.1940v 4.1009 c 0.0000,0.5718 0.1972,0.8675 0.8478 0.8675h 0.3746 c 0.0789,-0.0000 0.1577,0.0591 0.1577 0.1577v 0.3746 l -0.0394,0.0394 c 0.0000,-0.0000 -1.3407,-0.0394 -2.1096 -0.0394c -0.7098,-0.0000 -2.0505,0.0394 -2.0505 0.0394l -0.0394,-0.0394 v -0.3746 c 0.0000,-0.0986 0.0591,-0.1577 0.1577 -0.1577h 0.3746 c 0.6506,-0.0000 0.8478,-0.2957 0.8478 -0.8675ZM 226.7984,54.9479 ZM 229.7361,48.7571 v 4.9093 c 0.6901,0.8084 1.3407,0.8478 1.6561 0.8478c 2.1096,-0.0000 2.5828,-1.9716 2.5828 -3.6672c 0.0000,-2.3856 -0.9661,-3.7066 -2.1688 -3.7066c -0.6703,-0.0000 -1.6364,0.5718 -2.0702 1.6167ZM 229.7361,48.7571 ZM 228.2771,58.0630 v -9.7595 c 0.0000,-0.7492 -0.1774,-0.8872 -0.4535 -0.8872c -0.2563,-0.0000 -0.4929,0.0197 -0.8281 0.0986l -0.0986,-0.5520 c 1.2618,-0.2169 1.4984,-0.2957 2.0505 -0.5718c 0.2169,-0.0986 0.3549,-0.1577 0.4929 -0.1577h 0.2957 l -0.0591,1.5773 h 0.0591 c 0.9069,-1.3801 1.9716,-1.5773 2.6025 -1.5773c 1.9125,-0.0000 3.1743,1.9913 3.1743 4.0812c 0.0000,1.5970 -0.4929,2.8194 -1.3801 3.7263c -0.7689,0.7689 -1.5773,1.1435 -2.6222 1.1435c -0.7098,-0.0000 -1.2618,-0.1577 -1.7744 -0.4338v 3.3123 c 0.0000,0.5718 0.2169,0.8675 0.8478 0.8675h 0.3746 c 0.0986,-0.0000 0.1774,0.0591 0.1774 0.1577v 0.3746 l -0.0394,0.0394 c 0.0000,-0.0000 -1.3604,-0.0394 -2.1293 -0.0394c -0.6901,-0.0000 -2.0308,0.0394 -2.0308 0.0394l -0.0394,-0.0394 v -0.3746 c 0.0000,-0.0986 0.0591,-0.1577 0.1577 -0.1577h 0.3746 c 0.6506,-0.0000 0.8478,-0.2957 0.8478 -0.8675ZM 236.2424,54.9479 ZM 238.1154,53.5283 v -9.8777 c 0.0000,-1.1238 -0.1972,-1.4393 -0.5915 -1.4393l -0.6309,0.0789 c -0.0591,-0.0000 -0.1183,-0.0394 -0.1183 -0.0986l -0.0394,-0.4929 c 0.3155,-0.0000 1.0450,-0.1183 1.3801 -0.1774c 0.3549,-0.0789 0.6309,-0.1577 1.0252 -0.3352h 0.4338 v 12.3423 c 0.0000,0.5718 0.2169,0.8675 0.8478 0.8675h 0.4732 c 0.0789,-0.0000 0.1577,0.0591 0.1577 0.1577v 0.3746 l -0.0394,0.0394 c 0.0000,-0.0000 -1.4393,-0.0394 -2.2082 -0.0394c -0.6901,-0.0000 -2.1293,0.0394 -2.1293 0.0394l -0.0197,-0.0394 v -0.3746 c 0.0000,-0.0986 0.0394,-0.1577 0.1380 -0.1577h 0.4732 c 0.6506,-0.0000 0.8478,-0.2957 0.8478 -0.8675ZM 241.3685,54.9479 ZM 243.6162,49.4866 h 3.6278 c 0.1972,-0.0000 0.2760,-0.0986 0.2760 -0.2760c 0.0000,-1.8336 -0.9267,-2.3068 -1.6364 -2.3068c -0.4535,-0.0000 -1.9322,0.1774 -2.2673 2.5828ZM 243.6162,49.4866 ZM 248.8212,53.1143 l 0.3943,0.3155 c -0.7492,1.0252 -1.9125,1.7547 -3.3320 1.7547c -2.7011,-0.0000 -3.8446,-2.0110 -3.8446 -4.1601c 0.0000,-2.9968 1.9716,-4.7910 3.8446 -4.7910c 2.6025,-0.0000 3.2137,2.0308 3.2137 3.6869c 0.0000,0.2169 -0.1380,0.3352 -0.3549 0.3352h -5.1853 c -0.0197,0.1183 -0.0197,0.2366 -0.0197 0.3943c 0.0000,2.0110 1.3998,3.5686 2.8194 3.5686c 1.0844,-0.0000 1.7744,-0.3549 2.4645 -1.1041ZM 254.7360,54.9479 ZM 261.7352,55.1845 c -4.2390,-0.0000 -6.2697,-3.2729 -6.2697 -6.4472c 0.0000,-3.8841 3.0166,-6.7626 6.2894 -6.7626c 2.4251,-0.0000 3.1940,0.8281 4.3178 0.8872c 0.0591,1.0844 0.2366,2.0308 0.4338 3.0560l -0.5915,0.0789 c -0.5126,-1.6956 -1.6561,-3.2926 -4.3770 -3.2926c -1.5576,-0.0000 -4.3573,1.6561 -4.3573 5.6585c 0.0000,2.8785 1.4787,6.0134 4.5347 6.0134c 1.8336,-0.0000 3.1743,-0.6506 4.5741 -2.1885l 0.4535,0.2957 c -1.3407,1.7547 -3.0954,2.7011 -5.0079 2.7011ZM 267.4332,54.9479 ZM 270.6469,41.1861 v 6.6837 c 1.3210,-1.3210 2.4842,-1.6364 3.2532 -1.6364c 1.4196,-0.0000 2.1293,1.0844 2.1293 3.1151v 4.1798 c 0.0000,0.5718 0.1972,0.8675 0.8478 0.8675h 0.3746 c 0.0789,-0.0000 0.1577,0.0591 0.1577 0.1577v 0.3746 l -0.0394,0.0394 c 0.0000,-0.0000 -1.3407,-0.0394 -2.1293 -0.0394c -0.6901,-0.0000 -2.0308,0.0394 -2.0308 0.0394l -0.0394,-0.0394 v -0.3746 c 0.0000,-0.0986 0.0591,-0.1577 0.1577 -0.1577h 0.3746 c 0.6703,-0.0000 0.8478,-0.2957 0.8478 -0.8675v -4.3967 c 0.0000,-1.5970 -0.4338,-1.9716 -1.5379 -1.9716c -0.5718,-0.0000 -1.4196,0.5126 -2.3659 1.4393v 4.9290 c 0.0000,0.5718 0.1972,0.8675 0.8478 0.8675h 0.3746 c 0.0789,-0.0000 0.1577,0.0591 0.1577 0.1577v 0.3746 l -0.0394,0.0394 c 0.0000,-0.0000 -1.3407,-0.0394 -2.1096 -0.0394c -0.7098,-0.0000 -2.0308,0.0394 -2.0308 0.0394l -0.0394,-0.0394 v -0.3746 c 0.0000,-0.0986 0.0394,-0.1577 0.1380 -0.1577h 0.3746 c 0.6703,-0.0000 0.8478,-0.2957 0.8478 -0.8675v -9.8777 c 0.0000,-1.1238 -0.1774,-1.4393 -0.5718 -1.4393l -0.6506,0.0789 c -0.0591,-0.0000 -0.0986,-0.0394 -0.0986 -0.0986l -0.0394,-0.4929 c 0.3155,-0.0000 1.0252,-0.1183 1.3604 -0.1774c 0.3549,-0.0789 0.6506,-0.1577 1.0450 -0.3352h 0.4338 ZM 277.6461,54.9479 ZM 283.3835,50.1175 l -1.5576,0.3943 c -1.7350,0.5323 -1.9913,1.4393 -1.9913 2.3265c 0.0000,0.6112 0.2957,1.5379 1.5379 1.5379c 0.5915,-0.0000 1.4984,-0.5718 2.0110 -1.0055v -3.2532 ZM 283.3835,50.1175 ZM 284.6453,55.1845 c -0.7492,-0.0000 -1.1632,-0.6703 -1.2421 -1.1435l -0.4535,0.3155 c -0.9069,0.6309 -1.2421,0.8281 -2.1491 0.8281c -1.3801,-0.0000 -2.3856,-0.7886 -2.3856 -2.2673c 0.0000,-1.4984 1.2815,-2.5237 3.1546 -2.9968l 1.8139,-0.4535 c 0.0000,-2.2279 -1.0252,-2.6420 -1.6956 -2.6420c -0.7492,-0.0000 -1.6167,0.3352 -1.6167 0.9464c 0.0000,0.2169 0.0394,0.3352 0.0591 0.3943c 0.0394,0.0789 0.0591,0.2169 0.0591 0.3549c 0.0000,0.2563 -0.1972,0.6506 -0.7689 0.6506c -0.4732,-0.0000 -0.7886,-0.3155 -0.7886 -0.7886c 0.0000,-1.1435 1.8533,-2.1491 3.1151 -2.1491c 1.4393,-0.0000 3.0954,0.5915 3.0954 3.3912v 2.8983 c 0.0000,1.2027 0.0197,1.7153 0.4732 1.7153c 0.4338,-0.0000 0.5520,-0.5520 0.5718 -0.9858l 0.4929,0.0986 c -0.1183,1.4393 -0.7295,1.8336 -1.7350 1.8336ZM 286.5380,54.9479 ZM 288.2928,53.5283 v -4.9093 c 0.0000,-0.9858 -0.1380,-1.2027 -0.4338 -1.2027c -0.2563,-0.0000 -0.4929,0.0197 -0.8281 0.0986l -0.0986,-0.5520 c 1.2421,-0.2169 1.4590,-0.2760 2.0505 -0.5718c 0.1972,-0.0986 0.3549,-0.1577 0.4929 -0.1577h 0.2957 l -0.0591,1.7744 h 0.0591 c 0.5126,-0.7689 1.3801,-1.7744 2.3068 -1.7744c 0.8084,-0.0000 1.1041,0.3943 1.1041 0.9069c 0.0000,0.5126 -0.3352,0.8281 -0.8478 0.8281c -0.3943,-0.0000 -0.6112,-0.1577 -0.8084 -0.3549c -0.1183,-0.1183 -0.2563,-0.1774 -0.3943 -0.1774c -0.2169,-0.0000 -0.6506,0.3549 -1.1238 1.0252c -0.1380,0.1774 -0.2366,0.4338 -0.2366 0.6901v 4.3770 c 0.0000,0.5718 0.1972,0.8675 0.8478 0.8675h 0.5718 c 0.0986,-0.0000 0.1774,0.0591 0.1774 0.1577v 0.3746 l -0.0394,0.0394 c 0.0000,-0.0000 -1.5576,-0.0394 -2.3265 -0.0394c -0.7098,-0.0000 -2.0505,0.0394 -2.0505 0.0394l -0.0197,-0.0394 v -0.3746 c 0.0000,-0.0986 0.0394,-0.1577 0.1380 -0.1577h 0.3746 c 0.6703,-0.0000 0.8478,-0.2957 0.8478 -0.8675ZM 293.3795,54.9479 ZM 296.6130,47.2389 v 5.0473 c 0.0000,1.2224 0.1183,1.8139 0.6506 1.8139c 0.5126,-0.0000 0.9069,-0.1577 1.4196 -0.5520l 0.3549,0.3352 c -0.7689,0.8675 -1.5576,1.3013 -2.4645 1.3013c -0.9069,-0.0000 -1.4393,-0.5520 -1.4393 -1.9519v -5.9937 h -1.2815 c -0.0591,-0.0000 -0.0789,-0.0197 -0.0789 -0.0789v -0.6112 c 0.0000,-0.0591 0.0197,-0.0789 0.0591 -0.0789c 1.3210,-0.0000 1.6364,-0.7689 1.6364 -2.2673v -0.3746 l 1.1435,-0.3943 v 3.0363 h 2.1688 c 0.0986,-0.0000 0.1577,0.0394 0.1577 0.1183v 0.3943 c 0.0000,0.1774 -0.2760,0.2563 -0.4732 0.2563h -1.8533 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 477.1512,296.1035 ZM 478.2438,295.2754 v -5.7620 c 0.0000,-0.6556 -0.1150,-0.8396 -0.3450 -0.8396l -0.3680,0.0460 c -0.0345,-0.0000 -0.0690,-0.0230 -0.0690 -0.0575l -0.0230,-0.2875 c 0.1840,-0.0000 0.6096,-0.0690 0.8051 -0.1035c 0.2070,-0.0460 0.3680,-0.0920 0.5981 -0.1955h 0.2530 v 7.1997 c 0.0000,0.3335 0.1265,0.5060 0.4945 0.5060h 0.2760 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.8396,-0.0230 -1.2881 -0.0230c -0.4025,-0.0000 -1.2421,0.0230 -1.2421 0.0230l -0.0115,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0230,-0.0920 0.0805 -0.0920h 0.2760 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 480.1415,296.1035 ZM 481.0385,289.5364 c 0.0000,-0.2990 0.2415,-0.5520 0.5405 -0.5520c 0.3105,-0.0000 0.5520,0.2530 0.5520 0.5520c 0.0000,0.3105 -0.2415,0.5520 -0.5520 0.5520c -0.2990,-0.0000 -0.5405,-0.2415 -0.5405 -0.5520ZM 481.0385,289.5364 ZM 482.1311,295.2754 c 0.0000,0.3335 0.1265,0.5060 0.4945 0.5060h 0.2185 c 0.0575,-0.0000 0.1035,0.0345 0.1035 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7936,-0.0230 -1.2421 -0.0230c -0.4025,-0.0000 -1.1846,0.0230 -1.1846 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060v -2.8638 c 0.0000,-0.6096 -0.1035,-0.7016 -0.2645 -0.7016c -0.1495,-0.0000 -0.2875,0.0115 -0.4830 0.0575l -0.0575,-0.3220 c 0.7361,-0.1265 0.8626,-0.1725 1.1961 -0.3335c 0.1265,-0.0460 0.2070,-0.0920 0.2875 -0.0920h 0.1725 v 4.2554 ZM 483.1777,296.1035 ZM 487.3641,295.2754 v -2.5187 c 0.0000,-0.8051 -0.1380,-1.1846 -0.7476 -1.1846c -0.5060,-0.0000 -0.9431,0.1955 -1.5296 0.8856v 2.8178 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.1610 c 0.0575,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7246,-0.0230 -1.1731 -0.0230c -0.4140,-0.0000 -1.1961,0.0230 -1.1961 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060v -2.8638 c 0.0000,-0.6211 -0.0920,-0.7016 -0.2530 -0.7016c -0.1495,-0.0000 -0.2875,0.0115 -0.4830 0.0575l -0.0575,-0.3220 c 0.4830,-0.0805 0.8281,-0.1380 1.1846 -0.3335c 0.1265,-0.0575 0.2185,-0.0920 0.2990 -0.0920h 0.1725 l -0.0345,1.0236 h 0.0345 c 0.7361,-0.8626 1.2881,-1.0236 1.8747 -1.0236c 1.0351,-0.0000 1.2536,0.7936 1.2536 1.8172v 2.4382 c 0.0000,0.3335 0.1265,0.5060 0.4945 0.5060h 0.2185 c 0.0575,-0.0000 0.1035,0.0345 0.1035 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7936,-0.0230 -1.2421 -0.0230c -0.4025,-0.0000 -1.1271,0.0230 -1.1271 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.1610 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 489.1583,296.1035 ZM 490.4694,292.9177 h 2.1162 c 0.1150,-0.0000 0.1610,-0.0575 0.1610 -0.1610c 0.0000,-1.0696 -0.5405,-1.3456 -0.9546 -1.3456c -0.2645,-0.0000 -1.1271,0.1035 -1.3226 1.5066ZM 490.4694,292.9177 ZM 493.5057,295.0339 l 0.2300,0.1840 c -0.4370,0.5981 -1.1156,1.0236 -1.9437 1.0236c -1.5756,-0.0000 -2.2427,-1.1731 -2.2427 -2.4267c 0.0000,-1.7482 1.1501,-2.7948 2.2427 -2.7948c 1.5181,-0.0000 1.8747,1.1846 1.8747 2.1507c 0.0000,0.1265 -0.0805,0.1955 -0.2070 0.1955h -3.0248 c -0.0115,0.0690 -0.0115,0.1380 -0.0115 0.2300c 0.0000,1.1731 0.8166,2.0817 1.6446 2.0817c 0.6326,-0.0000 1.0351,-0.2070 1.4376 -0.6441ZM 496.9560,296.1035 ZM 499.4402,289.8124 c -0.2875,-0.0000 -1.1271,0.1610 -1.1271 0.8626c 0.0000,0.2070 -0.0805,0.5636 -0.3910 0.5636c -0.2990,-0.0000 -0.3220,-0.3335 -0.3220 -0.3680c 0.0000,-0.3565 0.4715,-1.4146 2.0702 -1.4146c 1.1156,-0.0000 1.4491,0.7016 1.4491 1.1616c 0.0000,0.2875 -0.0920,0.8626 -1.1271 1.5181c 0.6441,0.1035 1.4951,0.5751 1.4951 1.7712c 0.0000,1.5181 -1.1501,2.3347 -2.4497 2.3347c -0.6556,-0.0000 -1.5756,-0.2875 -1.5756 -0.7246c 0.0000,-0.1725 0.1725,-0.3680 0.4025 -0.3680c 0.2185,-0.0000 0.3220,0.1150 0.4255 0.2645c 0.1265,0.1955 0.3335,0.4715 0.8856 0.4715c 0.3795,-0.0000 1.4606,-0.3795 1.4606 -1.8287c 0.0000,-1.2306 -0.8626,-1.4261 -1.4836 -1.4261c -0.1035,-0.0000 -0.2300,0.0230 -0.3565 0.0460l -0.0460,-0.3450 c 0.8856,-0.1495 1.6216,-1.0121 1.6216 -1.5411c 0.0000,-0.6556 -0.4600,-0.9776 -0.9316 -0.9776Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 463.2809,296.1035 h 9.9073 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 477.1512,276.2889 ZM 484.0863,275.4608 v -2.6452 c 0.0000,-0.7706 -0.2990,-1.0581 -0.7361 -1.0581c -0.4485,-0.0000 -0.8051,0.2300 -1.3571 0.8396c 0.0230,0.1380 0.0230,0.2990 0.0230 0.4600v 2.4037 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.1955 c 0.0575,-0.0000 0.1035,0.0345 0.1035 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7706,-0.0230 -1.2191 -0.0230c -0.4140,-0.0000 -1.2076,0.0230 -1.2076 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2300 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060v -2.6222 c 0.0000,-0.7706 -0.3105,-1.0811 -0.7476 -1.0811c -0.4025,-0.0000 -0.7821,0.2875 -1.3226 0.8511v 2.8523 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.2185 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7821,-0.0230 -1.2306 -0.0230c -0.4140,-0.0000 -1.1961,0.0230 -1.1961 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060v -2.8638 c 0.0000,-0.6556 -0.1035,-0.7016 -0.2530 -0.7016c -0.1495,-0.0000 -0.2875,0.0115 -0.4830 0.0575l -0.0575,-0.3220 c 0.7246,-0.1265 0.8856,-0.1725 1.1961 -0.3335c 0.1150,-0.0575 0.2070,-0.0920 0.2875 -0.0920h 0.1725 l -0.0345,1.0006 h 0.0345 c 0.5405,-0.5751 1.0236,-1.0006 1.7367 -1.0006c 0.6441,-0.0000 1.0466,0.4715 1.1156 0.9891c 0.6671,-0.6901 1.2076,-0.9891 1.8287 -0.9891c 1.0121,-0.0000 1.1846,0.8396 1.1846 1.8632v 2.3922 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.2185 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7821,-0.0230 -1.2306 -0.0230c -0.4140,-0.0000 -1.1961,0.0230 -1.1961 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 485.8920,276.2889 ZM 490.8259,274.9547 c 0.0000,0.5751 0.0575,0.7591 0.2875 0.7591c 0.1380,-0.0000 0.3910,-0.0230 0.5866 -0.0575l 0.0460,0.3220 c -0.7016,0.1265 -1.2651,0.2415 -1.5296 0.4485h -0.2530 l 0.0345,-0.8511 h -0.0345 c -0.6326,0.6901 -1.1501,0.8511 -1.6216 0.8511c -1.1386,-0.0000 -1.4376,-0.7706 -1.4376 -1.5641v -2.6222 c 0.0000,-0.3795 -0.0805,-0.5751 -0.5060 -0.5751c -0.0460,-0.0000 -0.1265,0.0115 -0.1955 0.0115l -0.0345,-0.0115 v -0.2990 l 0.0345,-0.0345 c 0.0000,-0.0000 0.7821,0.0230 1.1501 0.0230c 0.1610,-0.0000 0.4255,-0.0230 0.4255 -0.0230l -0.0115,0.9201 v 2.4497 c 0.0000,1.0236 0.5290,1.2076 0.8741 1.2076c 0.2645,-0.0000 0.5060,-0.1035 0.7476 -0.2760c 0.2760,-0.2070 0.4600,-0.3680 0.5751 -0.5175v -2.8408 c 0.0000,-0.4140 -0.0575,-0.6096 -0.4830 -0.6096c -0.0690,-0.0000 -0.1955,0.0115 -0.2300 0.0115l -0.0230,-0.0230 v -0.2875 l 0.0230,-0.0345 c 0.0000,-0.0000 0.8166,0.0230 1.1386 0.0230c 0.2645,-0.0000 0.4485,-0.0230 0.4485 -0.0230l -0.0115,0.9086 v 2.7142 ZM 491.8380,276.2889 ZM 500.0843,275.4608 v -2.3462 c 0.0000,-0.9316 -0.2415,-1.3686 -0.7706 -1.3686c -0.3335,-0.0000 -0.8281,0.1955 -1.5066 0.8396v 2.8753 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.2185 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7821,-0.0230 -1.2306 -0.0230c -0.4140,-0.0000 -0.8741,0.0230 -0.8741 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.0230 c 0.2990,-0.0000 0.3680,-0.1725 0.3680 -0.5060v -5.8195 c 0.0000,-0.5405 -0.1035,-0.7821 -0.3335 -0.7821l -0.3795,0.0460 c -0.0345,-0.0000 -0.0575,-0.0230 -0.0575 -0.0575l -0.0230,-0.2875 c 0.1840,-0.0000 0.5981,-0.0690 0.7936 -0.1035c 0.2070,-0.0460 0.3795,-0.0920 0.6096 -0.1955h 0.2530 v 3.8989 c 0.7706,-0.7706 1.5641,-0.9546 2.0127 -0.9546c 0.8396,-0.0000 1.1271,0.6326 1.1271 1.8172v 2.4382 c 0.0000,0.3335 0.1150,0.5060 0.4830 0.5060h 0.2300 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7821,-0.0230 -1.2421 -0.0230c -0.4025,-0.0000 -1.1846,0.0230 -1.1846 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 500.0843,275.4608 ZM 496.1394,275.2078 c -0.5060,0.8741 -1.0581,1.1846 -1.7367 1.1846c -1.3801,-0.0000 -2.1392,-1.0581 -2.1392 -2.5417c 0.0000,-1.6331 0.9201,-2.6682 2.1507 -2.6682c 1.1041,-0.0000 1.6907,0.5636 1.6907 1.1731c 0.0000,0.3450 -0.2070,0.5060 -0.4370 0.5060c -0.2530,-0.0000 -0.4830,-0.1265 -0.5175 -0.4025c -0.0345,-0.3910 -0.1150,-0.8856 -0.7936 -0.8856c -0.7591,-0.0000 -1.2076,0.7821 -1.2076 2.0242c 0.0000,1.3456 0.6096,2.2887 1.5066 2.2887c 0.4945,-0.0000 0.9201,-0.3220 1.2766 -0.8396ZM 504.7652,276.2889 ZM 505.8578,275.4608 v -5.7620 c 0.0000,-0.6556 -0.1150,-0.8396 -0.3450 -0.8396l -0.3680,0.0460 c -0.0345,-0.0000 -0.0690,-0.0230 -0.0690 -0.0575l -0.0230,-0.2875 c 0.1840,-0.0000 0.6096,-0.0690 0.8051 -0.1035c 0.2070,-0.0460 0.3680,-0.0920 0.5981 -0.1955h 0.2530 v 7.1997 c 0.0000,0.3335 0.1265,0.5060 0.4945 0.5060h 0.2760 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.8396,-0.0230 -1.2881 -0.0230c -0.4025,-0.0000 -1.2421,0.0230 -1.2421 0.0230l -0.0115,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0230,-0.0920 0.0805 -0.0920h 0.2760 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 507.7555,276.2889 ZM 508.1465,273.9311 c 0.0000,-1.5756 0.8511,-2.7257 2.3807 -2.7257c 1.7022,-0.0000 2.3577,1.4261 2.3577 2.6222c 0.0000,1.1501 -0.7476,2.5992 -2.3807 2.5992c -1.5411,-0.0000 -2.3577,-1.3226 -2.3577 -2.4957ZM 508.1465,273.9311 ZM 510.4007,271.5849 c -0.9201,-0.0000 -1.3456,1.0811 -1.3456 2.0817c 0.0000,0.8856 0.5060,2.3577 1.6446 2.3577c 0.5175,-0.0000 1.2766,-0.3105 1.2766 -1.8287c 0.0000,-1.6907 -0.6326,-2.6107 -1.5756 -2.6107ZM 513.2645,276.2889 ZM 517.4508,275.4608 v -2.5187 c 0.0000,-0.8051 -0.1380,-1.1846 -0.7476 -1.1846c -0.5060,-0.0000 -0.9431,0.1955 -1.5296 0.8856v 2.8178 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.1610 c 0.0575,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7246,-0.0230 -1.1731 -0.0230c -0.4140,-0.0000 -1.1961,0.0230 -1.1961 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060v -2.8638 c 0.0000,-0.6211 -0.0920,-0.7016 -0.2530 -0.7016c -0.1495,-0.0000 -0.2875,0.0115 -0.4830 0.0575l -0.0575,-0.3220 c 0.4830,-0.0805 0.8281,-0.1380 1.1846 -0.3335c 0.1265,-0.0575 0.2185,-0.0920 0.2990 -0.0920h 0.1725 l -0.0345,1.0236 h 0.0345 c 0.7361,-0.8626 1.2881,-1.0236 1.8747 -1.0236c 1.0351,-0.0000 1.2536,0.7936 1.2536 1.8172v 2.4382 c 0.0000,0.3335 0.1265,0.5060 0.4945 0.5060h 0.2185 c 0.0575,-0.0000 0.1035,0.0345 0.1035 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7936,-0.0230 -1.2421 -0.0230c -0.4025,-0.0000 -1.1271,0.0230 -1.1271 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.1610 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 519.2450,276.2889 ZM 522.8793,273.0341 c 0.0000,-0.9546 -0.4485,-1.5066 -1.1386 -1.5066c -0.5981,-0.0000 -1.0006,0.4140 -1.0006 1.3111c 0.0000,0.5981 0.2300,1.5411 1.1501 1.5411c 0.4025,-0.0000 0.9891,-0.1955 0.9891 -1.3456ZM 522.8793,273.0341 ZM 520.7286,276.3694 c -0.3565,0.3335 -0.4370,0.6901 -0.4370 1.0811c 0.0000,0.8626 1.0351,1.1156 1.4261 1.1156c 0.9891,-0.0000 2.2427,-0.3450 2.2427 -1.1731c 0.0000,-0.2990 -0.1610,-0.4945 -0.6096 -0.7131c -0.3220,-0.1610 -0.7936,-0.2875 -1.3456 -0.2875c -0.0920,-0.0000 -0.2185,0.0115 -0.3795 0.0230c -0.1610,0.0115 -0.3335,0.0115 -0.4600 0.0115c -0.1840,-0.0000 -0.2760,-0.0230 -0.4370 -0.0575ZM 520.7286,276.3694 ZM 524.2249,271.8265 c -0.1840,-0.0000 -0.2990,-0.1035 -0.3450 -0.1955c -0.0690,-0.1035 -0.1150,-0.1380 -0.1955 -0.1380c -0.1380,-0.0000 -0.3565,0.1610 -0.4370 0.2760c 0.3220,0.3450 0.4715,0.6786 0.4715 1.2191c 0.0000,1.1271 -0.9201,1.7367 -1.8862 1.7367c -0.4255,-0.0000 -0.7706,-0.0805 -1.0351 -0.2415c -0.1265,0.1955 -0.1955,0.4370 -0.1955 0.6671c 0.0000,0.4945 0.3795,0.6211 0.7016 0.6211c 0.0575,-0.0000 0.1955,-0.0115 0.3565 -0.0230c 0.2645,-0.0345 0.5520,-0.0575 0.7476 -0.0575c 0.4025,-0.0000 1.1616,0.0805 1.6216 0.4715c 0.3105,0.2875 0.4830,0.5636 0.4830 0.9316c 0.0000,1.2421 -1.6331,1.8977 -3.1168 1.8977c -0.8396,-0.0000 -1.7712,-0.3105 -1.7712 -1.3111c 0.0000,-0.4945 0.3105,-1.0236 0.8971 -1.3916c -0.2875,-0.1495 -0.4945,-0.4370 -0.4945 -0.8511c 0.0000,-0.3910 0.1725,-0.8856 0.4830 -1.1616c -0.3105,-0.3105 -0.5751,-0.7016 -0.5751 -1.3341c 0.0000,-1.0581 0.9316,-1.7367 1.9092 -1.7367c 0.6441,-0.0000 1.0466,0.2645 1.1731 0.3565c 0.2875,-0.3910 0.8051,-0.5866 1.0926 -0.5866c 0.2990,-0.0000 0.5060,0.1955 0.5060 0.4370c 0.0000,0.2530 -0.1610,0.4140 -0.3910 0.4140ZM 524.8115,276.2889 ZM 526.1226,273.1031 h 2.1162 c 0.1150,-0.0000 0.1610,-0.0575 0.1610 -0.1610c 0.0000,-1.0696 -0.5405,-1.3456 -0.9546 -1.3456c -0.2645,-0.0000 -1.1271,0.1035 -1.3226 1.5066ZM 526.1226,273.1031 ZM 529.1589,275.2193 l 0.2300,0.1840 c -0.4370,0.5981 -1.1156,1.0236 -1.9437 1.0236c -1.5756,-0.0000 -2.2427,-1.1731 -2.2427 -2.4267c 0.0000,-1.7482 1.1501,-2.7948 2.2427 -2.7948c 1.5181,-0.0000 1.8747,1.1846 1.8747 2.1507c 0.0000,0.1265 -0.0805,0.1955 -0.2070 0.1955h -3.0248 c -0.0115,0.0690 -0.0115,0.1380 -0.0115 0.2300c 0.0000,1.1731 0.8166,2.0817 1.6446 2.0817c 0.6326,-0.0000 1.0351,-0.2070 1.4376 -0.6441ZM 529.7339,276.2889 ZM 530.7575,275.4608 v -2.8638 c 0.0000,-0.5751 -0.0805,-0.7016 -0.2530 -0.7016c -0.1495,-0.0000 -0.2875,0.0115 -0.4830 0.0575l -0.0575,-0.3220 c 0.7246,-0.1265 0.8511,-0.1610 1.1961 -0.3335c 0.1150,-0.0575 0.2070,-0.0920 0.2875 -0.0920h 0.1725 l -0.0345,1.0351 h 0.0345 c 0.2990,-0.4485 0.8051,-1.0351 1.3456 -1.0351c 0.4715,-0.0000 0.6441,0.2300 0.6441 0.5290c 0.0000,0.2990 -0.1955,0.4830 -0.4945 0.4830c -0.2300,-0.0000 -0.3565,-0.0920 -0.4715 -0.2070c -0.0690,-0.0690 -0.1495,-0.1035 -0.2300 -0.1035c -0.1265,-0.0000 -0.3795,0.2070 -0.6556 0.5981c -0.0805,0.1035 -0.1380,0.2530 -0.1380 0.4025v 2.5532 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.3335 c 0.0575,-0.0000 0.1035,0.0345 0.1035 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.9086,-0.0230 -1.3571 -0.0230c -0.4140,-0.0000 -1.1961,0.0230 -1.1961 0.0230l -0.0115,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0230,-0.0920 0.0805 -0.0920h 0.2185 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 536.6001,276.2889 ZM 540.7864,275.4608 v -2.5187 c 0.0000,-0.8051 -0.1380,-1.1846 -0.7476 -1.1846c -0.5060,-0.0000 -0.9431,0.1955 -1.5296 0.8856v 2.8178 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.1610 c 0.0575,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7246,-0.0230 -1.1731 -0.0230c -0.4140,-0.0000 -1.1961,0.0230 -1.1961 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060v -2.8638 c 0.0000,-0.6211 -0.0920,-0.7016 -0.2530 -0.7016c -0.1495,-0.0000 -0.2875,0.0115 -0.4830 0.0575l -0.0575,-0.3220 c 0.4830,-0.0805 0.8281,-0.1380 1.1846 -0.3335c 0.1265,-0.0575 0.2185,-0.0920 0.2990 -0.0920h 0.1725 l -0.0345,1.0236 h 0.0345 c 0.7361,-0.8626 1.2881,-1.0236 1.8747 -1.0236c 1.0351,-0.0000 1.2536,0.7936 1.2536 1.8172v 2.4382 c 0.0000,0.3335 0.1265,0.5060 0.4945 0.5060h 0.2185 c 0.0575,-0.0000 0.1035,0.0345 0.1035 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7936,-0.0230 -1.2421 -0.0230c -0.4025,-0.0000 -1.1271,0.0230 -1.1271 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.1610 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 542.5806,276.2889 ZM 545.9274,273.4711 l -0.9086,0.2300 c -1.0121,0.3105 -1.1616,0.8396 -1.1616 1.3571c 0.0000,0.3565 0.1725,0.8971 0.8971 0.8971c 0.3450,-0.0000 0.8741,-0.3335 1.1731 -0.5866v -1.8977 ZM 545.9274,273.4711 ZM 546.6635,276.4269 c -0.4370,-0.0000 -0.6786,-0.3910 -0.7246 -0.6671l -0.2645,0.1840 c -0.5290,0.3680 -0.7246,0.4830 -1.2536 0.4830c -0.8051,-0.0000 -1.3916,-0.4600 -1.3916 -1.3226c 0.0000,-0.8741 0.7476,-1.4721 1.8402 -1.7482l 1.0581,-0.2645 c 0.0000,-1.2996 -0.5981,-1.5411 -0.9891 -1.5411c -0.4370,-0.0000 -0.9431,0.1955 -0.9431 0.5520c 0.0000,0.1265 0.0230,0.1955 0.0345 0.2300c 0.0230,0.0460 0.0345,0.1265 0.0345 0.2070c 0.0000,0.1495 -0.1150,0.3795 -0.4485 0.3795c -0.2760,-0.0000 -0.4600,-0.1840 -0.4600 -0.4600c 0.0000,-0.6671 1.0811,-1.2536 1.8172 -1.2536c 0.8396,-0.0000 1.8057,0.3450 1.8057 1.9782v 1.6907 c 0.0000,0.7016 0.0115,1.0006 0.2760 1.0006c 0.2530,-0.0000 0.3220,-0.3220 0.3335 -0.5751l 0.2875,0.0575 c -0.0690,0.8396 -0.4255,1.0696 -1.0121 1.0696ZM 547.7676,276.2889 ZM 554.7027,275.4608 v -2.6452 c 0.0000,-0.7706 -0.2990,-1.0581 -0.7361 -1.0581c -0.4485,-0.0000 -0.8051,0.2300 -1.3571 0.8396c 0.0230,0.1380 0.0230,0.2990 0.0230 0.4600v 2.4037 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.1955 c 0.0575,-0.0000 0.1035,0.0345 0.1035 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7706,-0.0230 -1.2191 -0.0230c -0.4140,-0.0000 -1.2076,0.0230 -1.2076 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2300 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060v -2.6222 c 0.0000,-0.7706 -0.3105,-1.0811 -0.7476 -1.0811c -0.4025,-0.0000 -0.7821,0.2875 -1.3226 0.8511v 2.8523 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.2185 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7821,-0.0230 -1.2306 -0.0230c -0.4140,-0.0000 -1.1961,0.0230 -1.1961 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060v -2.8638 c 0.0000,-0.6556 -0.1035,-0.7016 -0.2530 -0.7016c -0.1495,-0.0000 -0.2875,0.0115 -0.4830 0.0575l -0.0575,-0.3220 c 0.7246,-0.1265 0.8856,-0.1725 1.1961 -0.3335c 0.1150,-0.0575 0.2070,-0.0920 0.2875 -0.0920h 0.1725 l -0.0345,1.0006 h 0.0345 c 0.5405,-0.5751 1.0236,-1.0006 1.7367 -1.0006c 0.6441,-0.0000 1.0466,0.4715 1.1156 0.9891c 0.6671,-0.6901 1.2076,-0.9891 1.8287 -0.9891c 1.0121,-0.0000 1.1846,0.8396 1.1846 1.8632v 2.3922 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.2185 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7821,-0.0230 -1.2306 -0.0230c -0.4140,-0.0000 -1.1961,0.0230 -1.1961 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 556.5084,276.2889 ZM 557.8195,273.1031 h 2.1162 c 0.1150,-0.0000 0.1610,-0.0575 0.1610 -0.1610c 0.0000,-1.0696 -0.5405,-1.3456 -0.9546 -1.3456c -0.2645,-0.0000 -1.1271,0.1035 -1.3226 1.5066ZM 557.8195,273.1031 ZM 560.8558,275.2193 l 0.2300,0.1840 c -0.4370,0.5981 -1.1156,1.0236 -1.9437 1.0236c -1.5756,-0.0000 -2.2427,-1.1731 -2.2427 -2.4267c 0.0000,-1.7482 1.1501,-2.7948 2.2427 -2.7948c 1.5181,-0.0000 1.8747,1.1846 1.8747 2.1507c 0.0000,0.1265 -0.0805,0.1955 -0.2070 0.1955h -3.0248 c -0.0115,0.0690 -0.0115,0.1380 -0.0115 0.2300c 0.0000,1.1731 0.8166,2.0817 1.6446 2.0817c 0.6326,-0.0000 1.0351,-0.2070 1.4376 -0.6441Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.290457865275467" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 463.2809,276.2889 h 9.9073 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 477.1512,256.4742 ZM 477.6457,254.8641 l 0.3105,-0.0115 c 0.0345,0.2875 0.1610,0.8396 0.4140 1.1041c 0.1150,0.1265 0.4255,0.3335 0.8511 0.3335c 0.4025,-0.0000 1.0006,-0.3220 1.0006 -0.8856c 0.0000,-0.4945 -0.2760,-0.8281 -1.1846 -1.2191c -0.8396,-0.3680 -1.2766,-0.6096 -1.2766 -1.4721c 0.0000,-0.7706 0.6786,-1.3226 1.5871 -1.3226c 0.5751,-0.0000 1.0006,0.1035 1.3571 0.2875c 0.0690,0.3680 0.1035,0.7591 0.1265 1.1731l -0.3105,0.0115 c -0.2415,-0.9431 -0.9316,-1.1271 -1.1731 -1.1271c -0.4370,-0.0000 -0.8856,0.1725 -0.8856 0.8051c 0.0000,0.4600 0.2185,0.6901 0.8511 0.9201c 0.9316,0.3450 1.6792,0.7591 1.6792 1.6792c 0.0000,1.1386 -1.2076,1.4721 -1.7482 1.4721c -0.4025,-0.0000 -0.7361,-0.0460 -1.0351 -0.1265c -0.0805,-0.0115 -0.1380,-0.0230 -0.2185 -0.0230c -0.0575,-0.0000 -0.1495,0.0115 -0.2645 0.0345c 0.0000,-0.4830 -0.0345,-1.0696 -0.0805 -1.6331ZM 481.4181,256.4742 ZM 483.2927,248.4465 v 3.8989 c 0.7706,-0.7706 1.4491,-0.9546 1.8977 -0.9546c 0.8281,-0.0000 1.2421,0.6326 1.2421 1.8172v 2.4382 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.2185 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7821,-0.0230 -1.2421 -0.0230c -0.4025,-0.0000 -1.1846,0.0230 -1.1846 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060v -2.5647 c 0.0000,-0.9316 -0.2530,-1.1501 -0.8971 -1.1501c -0.3335,-0.0000 -0.8281,0.2990 -1.3801 0.8396v 2.8753 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.2185 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7821,-0.0230 -1.2306 -0.0230c -0.4140,-0.0000 -1.1846,0.0230 -1.1846 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0230,-0.0920 0.0805 -0.0920h 0.2185 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060v -5.7620 c 0.0000,-0.6556 -0.1035,-0.8396 -0.3335 -0.8396l -0.3795,0.0460 c -0.0345,-0.0000 -0.0575,-0.0230 -0.0575 -0.0575l -0.0230,-0.2875 c 0.1840,-0.0000 0.5981,-0.0690 0.7936 -0.1035c 0.2070,-0.0460 0.3795,-0.0920 0.6096 -0.1955h 0.2530 ZM 487.3756,256.4742 ZM 487.7666,254.1165 c 0.0000,-1.5756 0.8511,-2.7257 2.3807 -2.7257c 1.7022,-0.0000 2.3577,1.4261 2.3577 2.6222c 0.0000,1.1501 -0.7476,2.5992 -2.3807 2.5992c -1.5411,-0.0000 -2.3577,-1.3226 -2.3577 -2.4957ZM 487.7666,254.1165 ZM 490.0208,251.7703 c -0.9201,-0.0000 -1.3456,1.0811 -1.3456 2.0817c 0.0000,0.8856 0.5060,2.3577 1.6446 2.3577c 0.5175,-0.0000 1.2766,-0.3105 1.2766 -1.8287c 0.0000,-1.6907 -0.6326,-2.6107 -1.5756 -2.6107ZM 492.8846,256.4742 ZM 493.9082,255.6461 v -2.8638 c 0.0000,-0.5751 -0.0805,-0.7016 -0.2530 -0.7016c -0.1495,-0.0000 -0.2875,0.0115 -0.4830 0.0575l -0.0575,-0.3220 c 0.7246,-0.1265 0.8511,-0.1610 1.1961 -0.3335c 0.1150,-0.0575 0.2070,-0.0920 0.2875 -0.0920h 0.1725 l -0.0345,1.0351 h 0.0345 c 0.2990,-0.4485 0.8051,-1.0351 1.3456 -1.0351c 0.4715,-0.0000 0.6441,0.2300 0.6441 0.5290c 0.0000,0.2990 -0.1955,0.4830 -0.4945 0.4830c -0.2300,-0.0000 -0.3565,-0.0920 -0.4715 -0.2070c -0.0690,-0.0690 -0.1495,-0.1035 -0.2300 -0.1035c -0.1265,-0.0000 -0.3795,0.2070 -0.6556 0.5981c -0.0805,0.1035 -0.1380,0.2530 -0.1380 0.4025v 2.5532 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.3335 c 0.0575,-0.0000 0.1035,0.0345 0.1035 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.9086,-0.0230 -1.3571 -0.0230c -0.4140,-0.0000 -1.1961,0.0230 -1.1961 0.0230l -0.0115,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0230,-0.0920 0.0805 -0.0920h 0.2185 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 496.8755,256.4742 ZM 498.7616,251.9773 v 2.9443 c 0.0000,0.7131 0.0690,1.0581 0.3795 1.0581c 0.2990,-0.0000 0.5290,-0.0920 0.8281 -0.3220l 0.2070,0.1955 c -0.4485,0.5060 -0.9086,0.7591 -1.4376 0.7591c -0.5290,-0.0000 -0.8396,-0.3220 -0.8396 -1.1386v -3.4963 h -0.7476 c -0.0345,-0.0000 -0.0460,-0.0115 -0.0460 -0.0460v -0.3565 c 0.0000,-0.0345 0.0115,-0.0460 0.0345 -0.0460c 0.7706,-0.0000 0.9546,-0.4485 0.9546 -1.3226v -0.2185 l 0.6671,-0.2300 v 1.7712 h 1.2651 c 0.0575,-0.0000 0.0920,0.0230 0.0920 0.0690v 0.2300 c 0.0000,0.1035 -0.1610,0.1495 -0.2760 0.1495h -1.0811 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.645228932637734" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 463.2809,256.4742 h 9.9073 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 473.1883,234.3035 ZM 474.3844,227.7364 c 0.0000,-0.2990 0.2415,-0.5520 0.5520 -0.5520c 0.2990,-0.0000 0.5520,0.2530 0.5520 0.5520c 0.0000,0.3105 -0.2530,0.5520 -0.5520 0.5520c -0.3105,-0.0000 -0.5520,-0.2415 -0.5520 -0.5520ZM 474.3844,227.7364 ZM 473.7748,236.5347 c 0.5060,-0.0000 0.8511,-0.9086 0.8511 -2.5302v -3.3928 c 0.0000,-0.6096 -0.1035,-0.7016 -0.2530 -0.7016c -0.1610,-0.0000 -0.2875,0.0115 -0.4830 0.0575l -0.0575,-0.3220 c 0.8396,-0.1380 1.0926,-0.2760 1.2421 -0.3565c 0.0805,-0.0345 0.1265,-0.0690 0.2415 -0.0690h 0.1725 v 4.4279 c 0.0000,1.5066 -0.1150,2.1392 -0.7476 2.7833c -0.3105,0.2990 -0.6441,0.4370 -0.9201 0.4370c -0.4715,-0.0000 -1.0811,-0.2415 -1.0811 -0.5866c 0.0000,-0.2875 0.1725,-0.4370 0.3680 -0.4370c 0.2760,-0.0000 0.4255,0.2645 0.4830 0.5060c 0.0345,0.1150 0.0920,0.1840 0.1840 0.1840ZM 476.3740,234.3035 ZM 481.3080,232.9694 c 0.0000,0.5751 0.0575,0.7591 0.2875 0.7591c 0.1380,-0.0000 0.3910,-0.0230 0.5866 -0.0575l 0.0460,0.3220 c -0.7016,0.1265 -1.2651,0.2415 -1.5296 0.4485h -0.2530 l 0.0345,-0.8511 h -0.0345 c -0.6326,0.6901 -1.1501,0.8511 -1.6216 0.8511c -1.1386,-0.0000 -1.4376,-0.7706 -1.4376 -1.5641v -2.6222 c 0.0000,-0.3795 -0.0805,-0.5751 -0.5060 -0.5751c -0.0460,-0.0000 -0.1265,0.0115 -0.1955 0.0115l -0.0345,-0.0115 v -0.2990 l 0.0345,-0.0345 c 0.0000,-0.0000 0.7821,0.0230 1.1501 0.0230c 0.1610,-0.0000 0.4255,-0.0230 0.4255 -0.0230l -0.0115,0.9201 v 2.4497 c 0.0000,1.0236 0.5290,1.2076 0.8741 1.2076c 0.2645,-0.0000 0.5060,-0.1035 0.7476 -0.2760c 0.2760,-0.2070 0.4600,-0.3680 0.5751 -0.5175v -2.8408 c 0.0000,-0.4140 -0.0575,-0.6096 -0.4830 -0.6096c -0.0690,-0.0000 -0.1955,0.0115 -0.2300 0.0115l -0.0230,-0.0230 v -0.2875 l 0.0230,-0.0345 c 0.0000,-0.0000 0.8166,0.0230 1.1386 0.0230c 0.2645,-0.0000 0.4485,-0.0230 0.4485 -0.0230l -0.0115,0.9086 v 2.7142 ZM 482.3201,234.3035 ZM 482.8146,232.6933 l 0.3105,-0.0115 c 0.0345,0.2875 0.1610,0.8396 0.4140 1.1041c 0.1150,0.1265 0.4255,0.3335 0.8511 0.3335c 0.4025,-0.0000 1.0006,-0.3220 1.0006 -0.8856c 0.0000,-0.4945 -0.2760,-0.8281 -1.1846 -1.2191c -0.8396,-0.3680 -1.2766,-0.6096 -1.2766 -1.4721c 0.0000,-0.7706 0.6786,-1.3226 1.5871 -1.3226c 0.5751,-0.0000 1.0006,0.1035 1.3571 0.2875c 0.0690,0.3680 0.1035,0.7591 0.1265 1.1731l -0.3105,0.0115 c -0.2415,-0.9431 -0.9316,-1.1271 -1.1731 -1.1271c -0.4370,-0.0000 -0.8856,0.1725 -0.8856 0.8051c 0.0000,0.4600 0.2185,0.6901 0.8511 0.9201c 0.9316,0.3450 1.6792,0.7591 1.6792 1.6792c 0.0000,1.1386 -1.2076,1.4721 -1.7482 1.4721c -0.4025,-0.0000 -0.7361,-0.0460 -1.0351 -0.1265c -0.0805,-0.0115 -0.1380,-0.0230 -0.2185 -0.0230c -0.0575,-0.0000 -0.1495,0.0115 -0.2645 0.0345c 0.0000,-0.4830 -0.0345,-1.0696 -0.0805 -1.6331ZM 486.5870,234.3035 ZM 488.4731,229.8066 v 2.9443 c 0.0000,0.7131 0.0690,1.0581 0.3795 1.0581c 0.2990,-0.0000 0.5290,-0.0920 0.8281 -0.3220l 0.2070,0.1955 c -0.4485,0.5060 -0.9086,0.7591 -1.4376 0.7591c -0.5290,-0.0000 -0.8396,-0.3220 -0.8396 -1.1386v -3.4963 h -0.7476 c -0.0345,-0.0000 -0.0460,-0.0115 -0.0460 -0.0460v -0.3565 c 0.0000,-0.0345 0.0115,-0.0460 0.0345 -0.0460c 0.7706,-0.0000 0.9546,-0.4485 0.9546 -1.3226v -0.2185 l 0.6671,-0.2300 v 1.7712 h 1.2651 c 0.0575,-0.0000 0.0920,0.0230 0.0920 0.0690v 0.2300 c 0.0000,0.1035 -0.1610,0.1495 -0.2760 0.1495h -1.0811 ZM 492.9355,234.3035 ZM 496.2823,231.4857 l -0.9086,0.2300 c -1.0121,0.3105 -1.1616,0.8396 -1.1616 1.3571c 0.0000,0.3565 0.1725,0.8971 0.8971 0.8971c 0.3450,-0.0000 0.8741,-0.3335 1.1731 -0.5866v -1.8977 ZM 496.2823,231.4857 ZM 497.0184,234.4415 c -0.4370,-0.0000 -0.6786,-0.3910 -0.7246 -0.6671l -0.2645,0.1840 c -0.5290,0.3680 -0.7246,0.4830 -1.2536 0.4830c -0.8051,-0.0000 -1.3916,-0.4600 -1.3916 -1.3226c 0.0000,-0.8741 0.7476,-1.4721 1.8402 -1.7482l 1.0581,-0.2645 c 0.0000,-1.2996 -0.5981,-1.5411 -0.9891 -1.5411c -0.4370,-0.0000 -0.9431,0.1955 -0.9431 0.5520c 0.0000,0.1265 0.0230,0.1955 0.0345 0.2300c 0.0230,0.0460 0.0345,0.1265 0.0345 0.2070c 0.0000,0.1495 -0.1150,0.3795 -0.4485 0.3795c -0.2760,-0.0000 -0.4600,-0.1840 -0.4600 -0.4600c 0.0000,-0.6671 1.0811,-1.2536 1.8172 -1.2536c 0.8396,-0.0000 1.8057,0.3450 1.8057 1.9782v 1.6907 c 0.0000,0.7016 0.0115,1.0006 0.2760 1.0006c 0.2530,-0.0000 0.3220,-0.3220 0.3335 -0.5751l 0.2875,0.0575 c -0.0690,0.8396 -0.4255,1.0696 -1.0121 1.0696ZM 500.9978,234.3035 ZM 504.6321,231.0487 c 0.0000,-0.9546 -0.4485,-1.5066 -1.1386 -1.5066c -0.5981,-0.0000 -1.0006,0.4140 -1.0006 1.3111c 0.0000,0.5981 0.2300,1.5411 1.1501 1.5411c 0.4025,-0.0000 0.9891,-0.1955 0.9891 -1.3456ZM 504.6321,231.0487 ZM 502.4814,234.3840 c -0.3565,0.3335 -0.4370,0.6901 -0.4370 1.0811c 0.0000,0.8626 1.0351,1.1156 1.4261 1.1156c 0.9891,-0.0000 2.2427,-0.3450 2.2427 -1.1731c 0.0000,-0.2990 -0.1610,-0.4945 -0.6096 -0.7131c -0.3220,-0.1610 -0.7936,-0.2875 -1.3456 -0.2875c -0.0920,-0.0000 -0.2185,0.0115 -0.3795 0.0230c -0.1610,0.0115 -0.3335,0.0115 -0.4600 0.0115c -0.1840,-0.0000 -0.2760,-0.0230 -0.4370 -0.0575ZM 502.4814,234.3840 ZM 505.9777,229.8411 c -0.1840,-0.0000 -0.2990,-0.1035 -0.3450 -0.1955c -0.0690,-0.1035 -0.1150,-0.1380 -0.1955 -0.1380c -0.1380,-0.0000 -0.3565,0.1610 -0.4370 0.2760c 0.3220,0.3450 0.4715,0.6786 0.4715 1.2191c 0.0000,1.1271 -0.9201,1.7367 -1.8862 1.7367c -0.4255,-0.0000 -0.7706,-0.0805 -1.0351 -0.2415c -0.1265,0.1955 -0.1955,0.4370 -0.1955 0.6671c 0.0000,0.4945 0.3795,0.6211 0.7016 0.6211c 0.0575,-0.0000 0.1955,-0.0115 0.3565 -0.0230c 0.2645,-0.0345 0.5520,-0.0575 0.7476 -0.0575c 0.4025,-0.0000 1.1616,0.0805 1.6216 0.4715c 0.3105,0.2875 0.4830,0.5636 0.4830 0.9316c 0.0000,1.2421 -1.6331,1.8977 -3.1168 1.8977c -0.8396,-0.0000 -1.7712,-0.3105 -1.7712 -1.3111c 0.0000,-0.4945 0.3105,-1.0236 0.8971 -1.3916c -0.2875,-0.1495 -0.4945,-0.4370 -0.4945 -0.8511c 0.0000,-0.3910 0.1725,-0.8856 0.4830 -1.1616c -0.3105,-0.3105 -0.5751,-0.7016 -0.5751 -1.3341c 0.0000,-1.0581 0.9316,-1.7367 1.9092 -1.7367c 0.6441,-0.0000 1.0466,0.2645 1.1731 0.3565c 0.2875,-0.3910 0.8051,-0.5866 1.0926 -0.5866c 0.2990,-0.0000 0.5060,0.1955 0.5060 0.4370c 0.0000,0.2530 -0.1610,0.4140 -0.3910 0.4140ZM 506.5068,234.3035 ZM 507.5994,233.4754 v -5.7620 c 0.0000,-0.6556 -0.1150,-0.8396 -0.3450 -0.8396l -0.3680,0.0460 c -0.0345,-0.0000 -0.0690,-0.0230 -0.0690 -0.0575l -0.0230,-0.2875 c 0.1840,-0.0000 0.6096,-0.0690 0.8051 -0.1035c 0.2070,-0.0460 0.3680,-0.0920 0.5981 -0.1955h 0.2530 v 7.1997 c 0.0000,0.3335 0.1265,0.5060 0.4945 0.5060h 0.2760 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.8396,-0.0230 -1.2881 -0.0230c -0.4025,-0.0000 -1.2421,0.0230 -1.2421 0.0230l -0.0115,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0230,-0.0920 0.0805 -0.0920h 0.2760 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 509.4970,234.3035 ZM 511.8893,229.5881 c 0.0000,0.0575 -0.0690,0.0920 -0.1265 0.0920c -0.3450,-0.0000 -0.4945,0.0690 -0.4945 0.2530c 0.0000,0.0690 0.0230,0.1610 0.0690 0.2645l 1.2651,2.9673 l 1.2766,-2.9213 c 0.0575,-0.1035 0.0805,-0.1955 0.0805 -0.2645c 0.0000,-0.2415 -0.2300,-0.2990 -0.4830 -0.2990h -0.0460 c -0.0575,-0.0000 -0.1150,-0.0460 -0.1150 -0.0805v -0.2185 l 0.0230,-0.0345 c 0.0000,-0.0000 0.6786,0.0230 1.0811 0.0230c 0.3220,-0.0000 0.7936,-0.0230 0.7936 -0.0230l 0.0345,0.0230 v 0.2185 c 0.0000,0.0575 -0.0460,0.0920 -0.1265 0.0920c -0.4370,-0.0000 -0.6556,0.4485 -0.8166 0.7821c -0.6096,1.2881 -1.1156,2.4727 -2.0357 4.6924c -0.3450,0.8281 -0.7591,1.7942 -1.5756 1.7942c -0.2185,-0.0000 -0.6671,-0.1265 -0.6671 -0.5405c 0.0000,-0.3450 0.2530,-0.4485 0.4370 -0.4485c 0.1725,-0.0000 0.2875,0.0690 0.3565 0.1610c 0.1150,0.1150 0.1955,0.1955 0.3105 0.1955c 0.1725,-0.0000 0.5751,-0.9891 0.8626 -1.6907c 0.0690,-0.1380 0.0920,-0.2530 0.0920 -0.3565c 0.0000,-0.1150 -0.1035,-0.4255 -0.1955 -0.6556l -1.4491,-3.3698 c -0.1840,-0.4370 -0.3105,-0.5636 -0.7016 -0.5636c -0.0690,-0.0000 -0.1150,-0.0345 -0.1150 -0.0805v -0.2300 l 0.0230,-0.0230 c 0.0000,-0.0000 0.5060,0.0230 0.8511 0.0230c 0.5405,-0.0000 1.3686,-0.0230 1.3686 -0.0230l 0.0230,0.0345 v 0.2070 ZM 515.3511,234.3035 ZM 517.0647,230.6922 v 2.8638 c 0.4025,0.4715 0.7821,0.4945 0.9661 0.4945c 1.2306,-0.0000 1.5066,-1.1501 1.5066 -2.1392c 0.0000,-1.3916 -0.5636,-2.1622 -1.2651 -2.1622c -0.3910,-0.0000 -0.9546,0.3335 -1.2076 0.9431ZM 517.0647,230.6922 ZM 516.2136,236.1207 v -5.6930 c 0.0000,-0.4370 -0.1035,-0.5175 -0.2645 -0.5175c -0.1495,-0.0000 -0.2875,0.0115 -0.4830 0.0575l -0.0575,-0.3220 c 0.7361,-0.1265 0.8741,-0.1725 1.1961 -0.3335c 0.1265,-0.0575 0.2070,-0.0920 0.2875 -0.0920h 0.1725 l -0.0345,0.9201 h 0.0345 c 0.5290,-0.8051 1.1501,-0.9201 1.5181 -0.9201c 1.1156,-0.0000 1.8517,1.1616 1.8517 2.3807c 0.0000,0.9316 -0.2875,1.6446 -0.8051 2.1737c -0.4485,0.4485 -0.9201,0.6671 -1.5296 0.6671c -0.4140,-0.0000 -0.7361,-0.0920 -1.0351 -0.2530v 1.9322 c 0.0000,0.3335 0.1265,0.5060 0.4945 0.5060h 0.2185 c 0.0575,-0.0000 0.1035,0.0345 0.1035 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7936,-0.0230 -1.2421 -0.0230c -0.4025,-0.0000 -1.1846,0.0230 -1.1846 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 520.8601,234.3035 ZM 522.7347,226.2758 v 3.8989 c 0.7706,-0.7706 1.4491,-0.9546 1.8977 -0.9546c 0.8281,-0.0000 1.2421,0.6326 1.2421 1.8172v 2.4382 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.2185 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7821,-0.0230 -1.2421 -0.0230c -0.4025,-0.0000 -1.1846,0.0230 -1.1846 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060v -2.5647 c 0.0000,-0.9316 -0.2530,-1.1501 -0.8971 -1.1501c -0.3335,-0.0000 -0.8281,0.2990 -1.3801 0.8396v 2.8753 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.2185 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7821,-0.0230 -1.2306 -0.0230c -0.4140,-0.0000 -1.1846,0.0230 -1.1846 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0230,-0.0920 0.0805 -0.0920h 0.2185 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060v -5.7620 c 0.0000,-0.6556 -0.1035,-0.8396 -0.3335 -0.8396l -0.3795,0.0460 c -0.0345,-0.0000 -0.0575,-0.0230 -0.0575 -0.0575l -0.0230,-0.2875 c 0.1840,-0.0000 0.5981,-0.0690 0.7936 -0.1035c 0.2070,-0.0460 0.3795,-0.0920 0.6096 -0.1955h 0.2530 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="6.9678433989565995" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 469.2253,234.3035 c 0.0000,-3.2830 -2.6614,-5.9444 -5.9444 -5.9444c -3.2830,-0.0000 -5.9444,2.6614 -5.9444 5.9444c -0.0000,3.2830 2.6614,5.9444 5.9444 5.9444c 3.2830,0.0000 5.9444,-2.6614 5.9444 -5.9444Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 487.0585,212.1328 ZM 490.6928,208.8780 c 0.0000,-0.9546 -0.4485,-1.5066 -1.1386 -1.5066c -0.5981,-0.0000 -1.0006,0.4140 -1.0006 1.3111c 0.0000,0.5981 0.2300,1.5411 1.1501 1.5411c 0.4025,-0.0000 0.9891,-0.1955 0.9891 -1.3456ZM 490.6928,208.8780 ZM 488.5421,212.2133 c -0.3565,0.3335 -0.4370,0.6901 -0.4370 1.0811c 0.0000,0.8626 1.0351,1.1156 1.4261 1.1156c 0.9891,-0.0000 2.2427,-0.3450 2.2427 -1.1731c 0.0000,-0.2990 -0.1610,-0.4945 -0.6096 -0.7131c -0.3220,-0.1610 -0.7936,-0.2875 -1.3456 -0.2875c -0.0920,-0.0000 -0.2185,0.0115 -0.3795 0.0230c -0.1610,0.0115 -0.3335,0.0115 -0.4600 0.0115c -0.1840,-0.0000 -0.2760,-0.0230 -0.4370 -0.0575ZM 488.5421,212.2133 ZM 492.0385,207.6704 c -0.1840,-0.0000 -0.2990,-0.1035 -0.3450 -0.1955c -0.0690,-0.1035 -0.1150,-0.1380 -0.1955 -0.1380c -0.1380,-0.0000 -0.3565,0.1610 -0.4370 0.2760c 0.3220,0.3450 0.4715,0.6786 0.4715 1.2191c 0.0000,1.1271 -0.9201,1.7367 -1.8862 1.7367c -0.4255,-0.0000 -0.7706,-0.0805 -1.0351 -0.2415c -0.1265,0.1955 -0.1955,0.4370 -0.1955 0.6671c 0.0000,0.4945 0.3795,0.6211 0.7016 0.6211c 0.0575,-0.0000 0.1955,-0.0115 0.3565 -0.0230c 0.2645,-0.0345 0.5520,-0.0575 0.7476 -0.0575c 0.4025,-0.0000 1.1616,0.0805 1.6216 0.4715c 0.3105,0.2875 0.4830,0.5636 0.4830 0.9316c 0.0000,1.2421 -1.6331,1.8977 -3.1168 1.8977c -0.8396,-0.0000 -1.7712,-0.3105 -1.7712 -1.3111c 0.0000,-0.4945 0.3105,-1.0236 0.8971 -1.3916c -0.2875,-0.1495 -0.4945,-0.4370 -0.4945 -0.8511c 0.0000,-0.3910 0.1725,-0.8856 0.4830 -1.1616c -0.3105,-0.3105 -0.5751,-0.7016 -0.5751 -1.3341c 0.0000,-1.0581 0.9316,-1.7367 1.9092 -1.7367c 0.6441,-0.0000 1.0466,0.2645 1.1731 0.3565c 0.2875,-0.3910 0.8051,-0.5866 1.0926 -0.5866c 0.2990,-0.0000 0.5060,0.1955 0.5060 0.4370c 0.0000,0.2530 -0.1610,0.4140 -0.3910 0.4140ZM 492.5675,212.1328 ZM 493.6601,211.3047 v -5.7620 c 0.0000,-0.6556 -0.1150,-0.8396 -0.3450 -0.8396l -0.3680,0.0460 c -0.0345,-0.0000 -0.0690,-0.0230 -0.0690 -0.0575l -0.0230,-0.2875 c 0.1840,-0.0000 0.6096,-0.0690 0.8051 -0.1035c 0.2070,-0.0460 0.3680,-0.0920 0.5981 -0.1955h 0.2530 v 7.1997 c 0.0000,0.3335 0.1265,0.5060 0.4945 0.5060h 0.2760 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.8396,-0.0230 -1.2881 -0.0230c -0.4025,-0.0000 -1.2421,0.0230 -1.2421 0.0230l -0.0115,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0230,-0.0920 0.0805 -0.0920h 0.2760 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 495.5578,212.1328 ZM 497.9500,207.4173 c 0.0000,0.0575 -0.0690,0.0920 -0.1265 0.0920c -0.3450,-0.0000 -0.4945,0.0690 -0.4945 0.2530c 0.0000,0.0690 0.0230,0.1610 0.0690 0.2645l 1.2651,2.9673 l 1.2766,-2.9213 c 0.0575,-0.1035 0.0805,-0.1955 0.0805 -0.2645c 0.0000,-0.2415 -0.2300,-0.2990 -0.4830 -0.2990h -0.0460 c -0.0575,-0.0000 -0.1150,-0.0460 -0.1150 -0.0805v -0.2185 l 0.0230,-0.0345 c 0.0000,-0.0000 0.6786,0.0230 1.0811 0.0230c 0.3220,-0.0000 0.7936,-0.0230 0.7936 -0.0230l 0.0345,0.0230 v 0.2185 c 0.0000,0.0575 -0.0460,0.0920 -0.1265 0.0920c -0.4370,-0.0000 -0.6556,0.4485 -0.8166 0.7821c -0.6096,1.2881 -1.1156,2.4727 -2.0357 4.6924c -0.3450,0.8281 -0.7591,1.7942 -1.5756 1.7942c -0.2185,-0.0000 -0.6671,-0.1265 -0.6671 -0.5405c 0.0000,-0.3450 0.2530,-0.4485 0.4370 -0.4485c 0.1725,-0.0000 0.2875,0.0690 0.3565 0.1610c 0.1150,0.1150 0.1955,0.1955 0.3105 0.1955c 0.1725,-0.0000 0.5751,-0.9891 0.8626 -1.6907c 0.0690,-0.1380 0.0920,-0.2530 0.0920 -0.3565c 0.0000,-0.1150 -0.1035,-0.4255 -0.1955 -0.6556l -1.4491,-3.3698 c -0.1840,-0.4370 -0.3105,-0.5636 -0.7016 -0.5636c -0.0690,-0.0000 -0.1150,-0.0345 -0.1150 -0.0805v -0.2300 l 0.0230,-0.0230 c 0.0000,-0.0000 0.5060,0.0230 0.8511 0.0230c 0.5405,-0.0000 1.3686,-0.0230 1.3686 -0.0230l 0.0230,0.0345 v 0.2070 ZM 501.4118,212.1328 ZM 503.1255,208.5214 v 2.8638 c 0.4025,0.4715 0.7821,0.4945 0.9661 0.4945c 1.2306,-0.0000 1.5066,-1.1501 1.5066 -2.1392c 0.0000,-1.3916 -0.5636,-2.1622 -1.2651 -2.1622c -0.3910,-0.0000 -0.9546,0.3335 -1.2076 0.9431ZM 503.1255,208.5214 ZM 502.2744,213.9499 v -5.6930 c 0.0000,-0.4370 -0.1035,-0.5175 -0.2645 -0.5175c -0.1495,-0.0000 -0.2875,0.0115 -0.4830 0.0575l -0.0575,-0.3220 c 0.7361,-0.1265 0.8741,-0.1725 1.1961 -0.3335c 0.1265,-0.0575 0.2070,-0.0920 0.2875 -0.0920h 0.1725 l -0.0345,0.9201 h 0.0345 c 0.5290,-0.8051 1.1501,-0.9201 1.5181 -0.9201c 1.1156,-0.0000 1.8517,1.1616 1.8517 2.3807c 0.0000,0.9316 -0.2875,1.6446 -0.8051 2.1737c -0.4485,0.4485 -0.9201,0.6671 -1.5296 0.6671c -0.4140,-0.0000 -0.7361,-0.0920 -1.0351 -0.2530v 1.9322 c 0.0000,0.3335 0.1265,0.5060 0.4945 0.5060h 0.2185 c 0.0575,-0.0000 0.1035,0.0345 0.1035 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7936,-0.0230 -1.2421 -0.0230c -0.4025,-0.0000 -1.1846,0.0230 -1.1846 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 506.9208,212.1328 ZM 508.7955,204.1050 v 3.8989 c 0.7706,-0.7706 1.4491,-0.9546 1.8977 -0.9546c 0.8281,-0.0000 1.2421,0.6326 1.2421 1.8172v 2.4382 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.2185 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7821,-0.0230 -1.2421 -0.0230c -0.4025,-0.0000 -1.1846,0.0230 -1.1846 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060v -2.5647 c 0.0000,-0.9316 -0.2530,-1.1501 -0.8971 -1.1501c -0.3335,-0.0000 -0.8281,0.2990 -1.3801 0.8396v 2.8753 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.2185 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7821,-0.0230 -1.2306 -0.0230c -0.4140,-0.0000 -1.1846,0.0230 -1.1846 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0230,-0.0920 0.0805 -0.0920h 0.2185 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060v -5.7620 c 0.0000,-0.6556 -0.1035,-0.8396 -0.3335 -0.8396l -0.3795,0.0460 c -0.0345,-0.0000 -0.0575,-0.0230 -0.0575 -0.0575l -0.0230,-0.2875 c 0.1840,-0.0000 0.5981,-0.0690 0.7936 -0.1035c 0.2070,-0.0460 0.3795,-0.0920 0.6096 -0.1955h 0.2530 ZM 512.8783,212.1328 ZM 516.2021,209.1885 h 1.9782 v 0.5636 h -1.9782 v 1.9897 h -0.5751 v -1.9897 h -1.9897 v -0.5636 h 1.9897 v -2.0012 h 0.5751 v 2.0012 ZM 518.9394,212.1328 ZM 520.0320,211.3047 v -5.7620 c 0.0000,-0.6556 -0.1150,-0.8396 -0.3450 -0.8396l -0.3680,0.0460 c -0.0345,-0.0000 -0.0690,-0.0230 -0.0690 -0.0575l -0.0230,-0.2875 c 0.1840,-0.0000 0.6096,-0.0690 0.8051 -0.1035c 0.2070,-0.0460 0.3680,-0.0920 0.5981 -0.1955h 0.2530 v 7.1997 c 0.0000,0.3335 0.1265,0.5060 0.4945 0.5060h 0.2760 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.8396,-0.0230 -1.2881 -0.0230c -0.4025,-0.0000 -1.2421,0.0230 -1.2421 0.0230l -0.0115,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0230,-0.0920 0.0805 -0.0920h 0.2760 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 521.9297,212.1328 ZM 522.8267,205.5657 c 0.0000,-0.2990 0.2415,-0.5520 0.5405 -0.5520c 0.3105,-0.0000 0.5520,0.2530 0.5520 0.5520c 0.0000,0.3105 -0.2415,0.5520 -0.5520 0.5520c -0.2990,-0.0000 -0.5405,-0.2415 -0.5405 -0.5520ZM 522.8267,205.5657 ZM 523.9193,211.3047 c 0.0000,0.3335 0.1265,0.5060 0.4945 0.5060h 0.2185 c 0.0575,-0.0000 0.1035,0.0345 0.1035 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7936,-0.0230 -1.2421 -0.0230c -0.4025,-0.0000 -1.1846,0.0230 -1.1846 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060v -2.8638 c 0.0000,-0.6096 -0.1035,-0.7016 -0.2645 -0.7016c -0.1495,-0.0000 -0.2875,0.0115 -0.4830 0.0575l -0.0575,-0.3220 c 0.7361,-0.1265 0.8626,-0.1725 1.1961 -0.3335c 0.1265,-0.0460 0.2070,-0.0920 0.2875 -0.0920h 0.1725 v 4.2554 ZM 524.9659,212.1328 ZM 529.1523,211.3047 v -2.5187 c 0.0000,-0.8051 -0.1380,-1.1846 -0.7476 -1.1846c -0.5060,-0.0000 -0.9431,0.1955 -1.5296 0.8856v 2.8178 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.1610 c 0.0575,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7246,-0.0230 -1.1731 -0.0230c -0.4140,-0.0000 -1.1961,0.0230 -1.1961 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060v -2.8638 c 0.0000,-0.6211 -0.0920,-0.7016 -0.2530 -0.7016c -0.1495,-0.0000 -0.2875,0.0115 -0.4830 0.0575l -0.0575,-0.3220 c 0.4830,-0.0805 0.8281,-0.1380 1.1846 -0.3335c 0.1265,-0.0575 0.2185,-0.0920 0.2990 -0.0920h 0.1725 l -0.0345,1.0236 h 0.0345 c 0.7361,-0.8626 1.2881,-1.0236 1.8747 -1.0236c 1.0351,-0.0000 1.2536,0.7936 1.2536 1.8172v 2.4382 c 0.0000,0.3335 0.1265,0.5060 0.4945 0.5060h 0.2185 c 0.0575,-0.0000 0.1035,0.0345 0.1035 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7936,-0.0230 -1.2421 -0.0230c -0.4025,-0.0000 -1.1271,0.0230 -1.1271 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.1610 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 530.9465,212.1328 ZM 532.2576,208.9470 h 2.1162 c 0.1150,-0.0000 0.1610,-0.0575 0.1610 -0.1610c 0.0000,-1.0696 -0.5405,-1.3456 -0.9546 -1.3456c -0.2645,-0.0000 -1.1271,0.1035 -1.3226 1.5066ZM 532.2576,208.9470 ZM 535.2939,211.0632 l 0.2300,0.1840 c -0.4370,0.5981 -1.1156,1.0236 -1.9437 1.0236c -1.5756,-0.0000 -2.2427,-1.1731 -2.2427 -2.4267c 0.0000,-1.7482 1.1501,-2.7948 2.2427 -2.7948c 1.5181,-0.0000 1.8747,1.1846 1.8747 2.1507c 0.0000,0.1265 -0.0805,0.1955 -0.2070 0.1955h -3.0248 c -0.0115,0.0690 -0.0115,0.1380 -0.0115 0.2300c 0.0000,1.1731 0.8166,2.0817 1.6446 2.0817c 0.6326,-0.0000 1.0351,-0.2070 1.4376 -0.6441Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="9.290457865275467" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 443.4663,212.1328 h 39.6293 "/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="6.9678433989565995" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 469.2253,212.1328 c 0.0000,-3.2830 -2.6614,-5.9444 -5.9444 -5.9444c -3.2830,-0.0000 -5.9444,2.6614 -5.9444 5.9444c -0.0000,3.2830 2.6614,5.9444 5.9444 5.9444c 3.2830,0.0000 5.9444,-2.6614 5.9444 -5.9444Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 472.1975,190.9528 ZM 473.2211,190.1247 v -2.8638 c 0.0000,-0.5751 -0.0805,-0.7016 -0.2530 -0.7016c -0.1495,-0.0000 -0.2875,0.0115 -0.4830 0.0575l -0.0575,-0.3220 c 0.7246,-0.1265 0.8511,-0.1610 1.1961 -0.3335c 0.1150,-0.0575 0.2070,-0.0920 0.2875 -0.0920h 0.1725 l -0.0345,1.0351 h 0.0345 c 0.2990,-0.4485 0.8051,-1.0351 1.3456 -1.0351c 0.4715,-0.0000 0.6441,0.2300 0.6441 0.5290c 0.0000,0.2990 -0.1955,0.4830 -0.4945 0.4830c -0.2300,-0.0000 -0.3565,-0.0920 -0.4715 -0.2070c -0.0690,-0.0690 -0.1495,-0.1035 -0.2300 -0.1035c -0.1265,-0.0000 -0.3795,0.2070 -0.6556 0.5981c -0.0805,0.1035 -0.1380,0.2530 -0.1380 0.4025v 2.5532 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.3335 c 0.0575,-0.0000 0.1035,0.0345 0.1035 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.9086,-0.0230 -1.3571 -0.0230c -0.4140,-0.0000 -1.1961,0.0230 -1.1961 0.0230l -0.0115,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0230,-0.0920 0.0805 -0.0920h 0.2185 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 476.1884,190.9528 ZM 477.4995,187.7670 h 2.1162 c 0.1150,-0.0000 0.1610,-0.0575 0.1610 -0.1610c 0.0000,-1.0696 -0.5405,-1.3456 -0.9546 -1.3456c -0.2645,-0.0000 -1.1271,0.1035 -1.3226 1.5066ZM 477.4995,187.7670 ZM 480.5358,189.8832 l 0.2300,0.1840 c -0.4370,0.5981 -1.1156,1.0236 -1.9437 1.0236c -1.5756,-0.0000 -2.2427,-1.1731 -2.2427 -2.4267c 0.0000,-1.7482 1.1501,-2.7948 2.2427 -2.7948c 1.5181,-0.0000 1.8747,1.1846 1.8747 2.1507c 0.0000,0.1265 -0.0805,0.1955 -0.2070 0.1955h -3.0248 c -0.0115,0.0690 -0.0115,0.1380 -0.0115 0.2300c 0.0000,1.1731 0.8166,2.0817 1.6446 2.0817c 0.6326,-0.0000 1.0351,-0.2070 1.4376 -0.6441ZM 481.1108,190.9528 ZM 485.5272,189.9062 c -0.5060,0.8741 -1.0581,1.1846 -1.7482 1.1846c -1.3801,-0.0000 -2.2427,-1.0466 -2.2427 -2.5302c 0.0000,-1.6331 1.0236,-2.6912 2.2657 -2.6912c 1.1041,-0.0000 1.6907,0.5636 1.6907 1.1731c 0.0000,0.3335 -0.2070,0.5060 -0.4485 0.5060c -0.2415,-0.0000 -0.4715,-0.1265 -0.5060 -0.4140c -0.0460,-0.3795 -0.1150,-0.8741 -0.7936 -0.8741c -0.7591,-0.0000 -1.3226,0.8051 -1.3226 2.0472c 0.0000,1.3456 0.7246,2.2772 1.6101 2.2772c 0.4945,-0.0000 0.9316,-0.3220 1.2881 -0.8396ZM 485.7457,190.9528 ZM 487.6319,186.4559 v 2.9443 c 0.0000,0.7131 0.0690,1.0581 0.3795 1.0581c 0.2990,-0.0000 0.5290,-0.0920 0.8281 -0.3220l 0.2070,0.1955 c -0.4485,0.5060 -0.9086,0.7591 -1.4376 0.7591c -0.5290,-0.0000 -0.8396,-0.3220 -0.8396 -1.1386v -3.4963 h -0.7476 c -0.0345,-0.0000 -0.0460,-0.0115 -0.0460 -0.0460v -0.3565 c 0.0000,-0.0345 0.0115,-0.0460 0.0345 -0.0460c 0.7706,-0.0000 0.9546,-0.4485 0.9546 -1.3226v -0.2185 l 0.6671,-0.2300 v 1.7712 h 1.2651 c 0.0575,-0.0000 0.0920,0.0230 0.0920 0.0690v 0.2300 c 0.0000,0.1035 -0.1610,0.1495 -0.2760 0.1495h -1.0811 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="2.322614466318867" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 468.2346,195.9065 l -0.0000,-9.9073 h -9.9073 l -0.0000,9.9073 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 472.1975,169.7728 ZM 473.9112,166.1615 v 2.8638 c 0.4025,0.4715 0.7821,0.4945 0.9661 0.4945c 1.2306,-0.0000 1.5066,-1.1501 1.5066 -2.1392c 0.0000,-1.3916 -0.5636,-2.1622 -1.2651 -2.1622c -0.3910,-0.0000 -0.9546,0.3335 -1.2076 0.9431ZM 473.9112,166.1615 ZM 473.0601,171.5900 v -5.6930 c 0.0000,-0.4370 -0.1035,-0.5175 -0.2645 -0.5175c -0.1495,-0.0000 -0.2875,0.0115 -0.4830 0.0575l -0.0575,-0.3220 c 0.7361,-0.1265 0.8741,-0.1725 1.1961 -0.3335c 0.1265,-0.0575 0.2070,-0.0920 0.2875 -0.0920h 0.1725 l -0.0345,0.9201 h 0.0345 c 0.5290,-0.8051 1.1501,-0.9201 1.5181 -0.9201c 1.1156,-0.0000 1.8517,1.1616 1.8517 2.3807c 0.0000,0.9316 -0.2875,1.6446 -0.8051 2.1737c -0.4485,0.4485 -0.9201,0.6671 -1.5296 0.6671c -0.4140,-0.0000 -0.7361,-0.0920 -1.0351 -0.2530v 1.9322 c 0.0000,0.3335 0.1265,0.5060 0.4945 0.5060h 0.2185 c 0.0575,-0.0000 0.1035,0.0345 0.1035 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7936,-0.0230 -1.2421 -0.0230c -0.4025,-0.0000 -1.1846,0.0230 -1.1846 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 477.7065,169.7728 ZM 478.6036,163.2057 c 0.0000,-0.2990 0.2415,-0.5520 0.5405 -0.5520c 0.3105,-0.0000 0.5520,0.2530 0.5520 0.5520c 0.0000,0.3105 -0.2415,0.5520 -0.5520 0.5520c -0.2990,-0.0000 -0.5405,-0.2415 -0.5405 -0.5520ZM 478.6036,163.2057 ZM 479.6962,168.9447 c 0.0000,0.3335 0.1265,0.5060 0.4945 0.5060h 0.2185 c 0.0575,-0.0000 0.1035,0.0345 0.1035 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7936,-0.0230 -1.2421 -0.0230c -0.4025,-0.0000 -1.1846,0.0230 -1.1846 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060v -2.8638 c 0.0000,-0.6096 -0.1035,-0.7016 -0.2645 -0.7016c -0.1495,-0.0000 -0.2875,0.0115 -0.4830 0.0575l -0.0575,-0.3220 c 0.7361,-0.1265 0.8626,-0.1725 1.1961 -0.3335c 0.1265,-0.0460 0.2070,-0.0920 0.2875 -0.0920h 0.1725 v 4.2554 ZM 480.7428,169.7728 ZM 483.0085,165.1494 c -0.2300,-0.0000 -0.2760,0.0575 -0.2760 0.1380c 0.0000,0.0575 0.0460,0.1610 0.1725 0.3680l 0.7016,1.0351 c 0.0345,0.0690 0.0690,0.1035 0.1150 0.1035c 0.0345,-0.0000 0.0575,-0.0230 0.1035 -0.0805l 0.7476,-1.0466 c 0.1265,-0.1610 0.1955,-0.2875 0.1955 -0.3795c 0.0000,-0.0920 -0.0805,-0.1380 -0.2415 -0.1380h -0.1840 c -0.0345,-0.0000 -0.0690,-0.0230 -0.0690 -0.0805v -0.2185 l 0.0345,-0.0345 c 0.0000,-0.0000 0.5405,0.0230 0.8971 0.0230c 0.3680,-0.0000 0.9316,-0.0230 0.9316 -0.0230l 0.0115,0.0230 v 0.2185 c 0.0000,0.0805 -0.0690,0.0920 -0.1380 0.0920c -0.4255,-0.0000 -0.5981,0.1380 -1.0236 0.6786l -0.9661,1.2306 c -0.0230,0.0345 -0.0345,0.0575 -0.0345 0.0805c 0.0000,0.0230 0.0115,0.0575 0.0345 0.0920l 1.0351,1.4606 c 0.5290,0.7476 0.6786,0.7591 1.0466 0.7591c 0.1150,-0.0000 0.1610,0.0230 0.1610 0.0920v 0.2185 l -0.0115,0.0230 c 0.0000,-0.0000 -0.6211,-0.0230 -1.0121 -0.0230c -0.4715,-0.0000 -1.1961,0.0230 -1.1961 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0230,-0.0920 0.0805 -0.0920h 0.1380 c 0.1840,-0.0000 0.2645,-0.0345 0.2645 -0.1265c 0.0000,-0.1035 -0.1265,-0.2760 -0.3105 -0.5175l -0.6671,-0.9201 c -0.0460,-0.0575 -0.0690,-0.0805 -0.1035 -0.0805c -0.0230,-0.0000 -0.0575,0.0345 -0.1035 0.1035l -0.7246,1.0466 c -0.1725,0.2300 -0.2070,0.2875 -0.2070 0.3680c 0.0000,0.0805 0.0690,0.1265 0.2415 0.1265h 0.1610 c 0.0575,-0.0000 0.0805,0.0345 0.0805 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.5981,-0.0230 -0.9661 -0.0230c -0.3335,-0.0000 -0.8626,0.0230 -0.8626 0.0230l -0.0230,-0.0230 v -0.1955 c 0.0000,-0.0690 0.0460,-0.1150 0.1495 -0.1150c 0.2760,-0.0000 0.5405,-0.0575 1.0236 -0.6786l 0.9661,-1.2421 c 0.0115,-0.0230 0.0230,-0.0460 0.0230 -0.0805c 0.0000,-0.0345 -0.0115,-0.0575 -0.0345 -0.0920l -1.0006,-1.4606 c -0.3220,-0.4715 -0.5290,-0.7476 -0.9316 -0.7476c -0.0805,-0.0000 -0.1610,-0.0345 -0.1610 -0.0805v -0.2185 l 0.0230,-0.0345 l 0.9086,0.0230 l 1.2766,-0.0230 l 0.0345,0.0345 v 0.2070 c 0.0000,0.0575 -0.0460,0.0920 -0.0920 0.0920h -0.1725 ZM 486.4588,169.7728 ZM 487.7699,166.5870 h 2.1162 c 0.1150,-0.0000 0.1610,-0.0575 0.1610 -0.1610c 0.0000,-1.0696 -0.5405,-1.3456 -0.9546 -1.3456c -0.2645,-0.0000 -1.1271,0.1035 -1.3226 1.5066ZM 487.7699,166.5870 ZM 490.8062,168.7032 l 0.2300,0.1840 c -0.4370,0.5981 -1.1156,1.0236 -1.9437 1.0236c -1.5756,-0.0000 -2.2427,-1.1731 -2.2427 -2.4267c 0.0000,-1.7482 1.1501,-2.7948 2.2427 -2.7948c 1.5181,-0.0000 1.8747,1.1846 1.8747 2.1507c 0.0000,0.1265 -0.0805,0.1955 -0.2070 0.1955h -3.0248 c -0.0115,0.0690 -0.0115,0.1380 -0.0115 0.2300c 0.0000,1.1731 0.8166,2.0817 1.6446 2.0817c 0.6326,-0.0000 1.0351,-0.2070 1.4376 -0.6441ZM 491.3813,169.7728 ZM 492.4739,168.9447 v -5.7620 c 0.0000,-0.6556 -0.1150,-0.8396 -0.3450 -0.8396l -0.3680,0.0460 c -0.0345,-0.0000 -0.0690,-0.0230 -0.0690 -0.0575l -0.0230,-0.2875 c 0.1840,-0.0000 0.6096,-0.0690 0.8051 -0.1035c 0.2070,-0.0460 0.3680,-0.0920 0.5981 -0.1955h 0.2530 v 7.1997 c 0.0000,0.3335 0.1265,0.5060 0.4945 0.5060h 0.2760 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.8396,-0.0230 -1.2881 -0.0230c -0.4025,-0.0000 -1.2421,0.0230 -1.2421 0.0230l -0.0115,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0230,-0.0920 0.0805 -0.0920h 0.2760 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 468.2346,174.7265 l -0.0000,-9.9073 h -9.9073 l -0.0000,9.9073 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 446.1017,149.4455 ZM 447.3503,148.4992 v -6.5852 c 0.0000,-0.7492 -0.1314,-0.9595 -0.3943 -0.9595l -0.4206,0.0526 c -0.0394,-0.0000 -0.0789,-0.0263 -0.0789 -0.0657l -0.0263,-0.3286 c 0.2103,-0.0000 0.6966,-0.0789 0.9201 -0.1183c 0.2366,-0.0526 0.4206,-0.1052 0.6835 -0.2234h 0.2892 v 8.2282 c 0.0000,0.3812 0.1446,0.5783 0.5652 0.5783h 0.3155 c 0.0526,-0.0000 0.1052,0.0394 0.1052 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.9595,-0.0263 -1.4721 -0.0263c -0.4600,-0.0000 -1.4196,0.0263 -1.4196 0.0263l -0.0131,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0263,-0.1052 0.0920 -0.1052h 0.3155 c 0.4338,-0.0000 0.5652,-0.1972 0.5652 -0.5783ZM 449.5191,149.4455 ZM 451.0175,145.8046 h 2.4185 c 0.1314,-0.0000 0.1840,-0.0657 0.1840 -0.1840c 0.0000,-1.2224 -0.6178,-1.5379 -1.0910 -1.5379c -0.3023,-0.0000 -1.2881,0.1183 -1.5116 1.7219ZM 451.0175,145.8046 ZM 454.4876,148.2231 l 0.2629,0.2103 c -0.4995,0.6835 -1.2750,1.1698 -2.2213 1.1698c -1.8007,-0.0000 -2.5631,-1.3407 -2.5631 -2.7734c 0.0000,-1.9979 1.3144,-3.1940 2.5631 -3.1940c 1.7350,-0.0000 2.1425,1.3538 2.1425 2.4579c 0.0000,0.1446 -0.0920,0.2234 -0.2366 0.2234h -3.4569 c -0.0131,0.0789 -0.0131,0.1577 -0.0131 0.2629c 0.0000,1.3407 0.9332,2.3791 1.8796 2.3791c 0.7229,-0.0000 1.1830,-0.2366 1.6430 -0.7361ZM 455.1448,149.4455 ZM 459.2983,145.7258 c 0.0000,-1.0910 -0.5126,-1.7219 -1.3013 -1.7219c -0.6835,-0.0000 -1.1435,0.4732 -1.1435 1.4984c 0.0000,0.6835 0.2629,1.7613 1.3144 1.7613c 0.4600,-0.0000 1.1304,-0.2234 1.1304 -1.5379ZM 459.2983,145.7258 ZM 456.8404,149.5375 c -0.4075,0.3812 -0.4995,0.7886 -0.4995 1.2355c 0.0000,0.9858 1.1830,1.2750 1.6299 1.2750c 1.1304,-0.0000 2.5631,-0.3943 2.5631 -1.3407c 0.0000,-0.3417 -0.1840,-0.5652 -0.6966 -0.8149c -0.3680,-0.1840 -0.9069,-0.3286 -1.5379 -0.3286c -0.1052,-0.0000 -0.2497,0.0131 -0.4338 0.0263c -0.1840,0.0131 -0.3812,0.0131 -0.5258 0.0131c -0.2103,-0.0000 -0.3155,-0.0263 -0.4995 -0.0657ZM 456.8404,149.5375 ZM 460.8361,144.3456 c -0.2103,-0.0000 -0.3417,-0.1183 -0.3943 -0.2234c -0.0789,-0.1183 -0.1314,-0.1577 -0.2234 -0.1577c -0.1577,-0.0000 -0.4075,0.1840 -0.4995 0.3155c 0.3680,0.3943 0.5389,0.7755 0.5389 1.3933c 0.0000,1.2881 -1.0515,1.9848 -2.1556 1.9848c -0.4863,-0.0000 -0.8807,-0.0920 -1.1830 -0.2760c -0.1446,0.2234 -0.2234,0.4995 -0.2234 0.7624c 0.0000,0.5652 0.4338,0.7098 0.8018 0.7098c 0.0657,-0.0000 0.2234,-0.0131 0.4075 -0.0263c 0.3023,-0.0394 0.6309,-0.0657 0.8544 -0.0657c 0.4600,-0.0000 1.3275,0.0920 1.8533 0.5389c 0.3549,0.3286 0.5520,0.6441 0.5520 1.0647c 0.0000,1.4196 -1.8665,2.1688 -3.5620 2.1688c -0.9595,-0.0000 -2.0242,-0.3549 -2.0242 -1.4984c 0.0000,-0.5652 0.3549,-1.1698 1.0252 -1.5904c -0.3286,-0.1709 -0.5652,-0.4995 -0.5652 -0.9727c 0.0000,-0.4469 0.1972,-1.0121 0.5520 -1.3275c -0.3549,-0.3549 -0.6572,-0.8018 -0.6572 -1.5247c 0.0000,-1.2093 1.0647,-1.9848 2.1819 -1.9848c 0.7361,-0.0000 1.1961,0.3023 1.3407 0.4075c 0.3286,-0.4469 0.9201,-0.6703 1.2487 -0.6703c 0.3417,-0.0000 0.5783,0.2234 0.5783 0.4995c 0.0000,0.2892 -0.1840,0.4732 -0.4469 0.4732ZM 461.5065,149.4455 ZM 463.0049,145.8046 h 2.4185 c 0.1314,-0.0000 0.1840,-0.0657 0.1840 -0.1840c 0.0000,-1.2224 -0.6178,-1.5379 -1.0910 -1.5379c -0.3023,-0.0000 -1.2881,0.1183 -1.5116 1.7219ZM 463.0049,145.8046 ZM 466.4749,148.2231 l 0.2629,0.2103 c -0.4995,0.6835 -1.2750,1.1698 -2.2213 1.1698c -1.8007,-0.0000 -2.5631,-1.3407 -2.5631 -2.7734c 0.0000,-1.9979 1.3144,-3.1940 2.5631 -3.1940c 1.7350,-0.0000 2.1425,1.3538 2.1425 2.4579c 0.0000,0.1446 -0.0920,0.2234 -0.2366 0.2234h -3.4569 c -0.0131,0.0789 -0.0131,0.1577 -0.0131 0.2629c 0.0000,1.3407 0.9332,2.3791 1.8796 2.3791c 0.7229,-0.0000 1.1830,-0.2366 1.6430 -0.7361ZM 467.1321,149.4455 ZM 471.9166,148.4992 v -2.8785 c 0.0000,-0.9201 -0.1577,-1.3538 -0.8544 -1.3538c -0.5783,-0.0000 -1.0778,0.2234 -1.7482 1.0121v 3.2203 c 0.0000,0.3812 0.1314,0.5783 0.5652 0.5783h 0.1840 c 0.0657,-0.0000 0.1052,0.0394 0.1052 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.8281,-0.0263 -1.3407 -0.0263c -0.4732,-0.0000 -1.3670,0.0263 -1.3670 0.0263l -0.0263,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0394,-0.1052 0.1052 -0.1052h 0.2497 c 0.4469,-0.0000 0.5652,-0.1972 0.5652 -0.5783v -3.2729 c 0.0000,-0.7098 -0.1052,-0.8018 -0.2892 -0.8018c -0.1709,-0.0000 -0.3286,0.0131 -0.5520 0.0657l -0.0657,-0.3680 c 0.5520,-0.0920 0.9464,-0.1577 1.3538 -0.3812c 0.1446,-0.0657 0.2497,-0.1052 0.3417 -0.1052h 0.1972 l -0.0394,1.1698 h 0.0394 c 0.8412,-0.9858 1.4721,-1.1698 2.1425 -1.1698c 1.1830,-0.0000 1.4327,0.9069 1.4327 2.0768v 2.7865 c 0.0000,0.3812 0.1446,0.5783 0.5652 0.5783h 0.2497 c 0.0657,-0.0000 0.1183,0.0394 0.1183 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.9069,-0.0263 -1.4196 -0.0263c -0.4600,-0.0000 -1.2881,0.0263 -1.2881 0.0263l -0.0263,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0394,-0.1052 0.1052 -0.1052h 0.1840 c 0.4338,-0.0000 0.5652,-0.1972 0.5652 -0.5783ZM 473.9670,149.4455 ZM 478.3572,148.2757 v -3.4043 c -0.3155,-0.4995 -0.6703,-0.7755 -1.2881 -0.7755c -0.2629,-0.0000 -0.8018,0.0394 -1.2224 0.6572c -0.1840,0.2760 -0.4075,0.8412 -0.4075 1.7876c 0.0000,1.7219 0.8938,2.5105 1.6036 2.5105c 0.4338,-0.0000 0.7886,-0.2629 1.3144 -0.7755ZM 478.3572,148.2757 ZM 479.3430,140.2710 v 7.5973 c 0.0000,0.3943 0.0263,0.6046 0.0526 0.6966c 0.0394,0.1183 0.1840,0.1972 0.2892 0.1972c 0.1577,-0.0000 0.4469,-0.0000 0.6441 -0.0394l 0.0526,0.3680 c -0.7624,0.1314 -1.4458,0.2760 -1.7219 0.5126h -0.3155 l 0.0394,-0.9069 c -0.4995,0.5126 -1.0121,0.9069 -1.6824 0.9069c -1.4196,-0.0000 -2.2871,-1.2093 -2.2871 -2.8260c 0.0000,-0.9727 0.2629,-1.7876 0.8281 -2.3528c 0.5258,-0.4995 1.1041,-0.7886 1.9716 -0.7886c 0.2629,-0.0000 0.8412,0.1183 1.1435 0.2892v -2.0110 c 0.0000,-0.7492 -0.1183,-0.9595 -0.3812 -0.9595l -0.4338,0.0526 c -0.0263,-0.0000 -0.0657,-0.0263 -0.0657 -0.0657l -0.0263,-0.3286 c 0.2103,-0.0000 0.6835,-0.0789 0.9069 -0.1183c 0.2497,-0.0526 0.4338,-0.1052 0.6966 -0.2234h 0.2892 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.2" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9290457865275467" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 567.3290,307.7917 l -0.0000,-178.1968 h -129.7610 l -0.0000,178.1968 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 408.3143,311.6166 l -0.0000,-198.1465 h -3.9629 l -0.0000,198.1465 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 413.2680,113.4701 ZM 417.3295,111.2488 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322ZM 419.0251,113.4701 ZM 419.7743,112.9312 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 421.9036,113.4701 ZM 424.7822,106.3329 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 424.7822,106.3329 ZM 424.7296,113.6279 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.3514,113.4701 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 413.2680,133.2848 ZM 416.6592,128.6186 c 0.0000,-0.0920 0.0131,-0.1972 0.1314 -0.2629c 0.1446,-0.1052 0.3812,-0.2234 0.5783 -0.2234c 0.1709,-0.0000 0.1840,0.1446 0.1840 0.4075v 2.1162 h 1.0647 l -0.0789,0.6178 h -0.9858 v 1.0910 c 0.0000,0.3680 0.0526,0.5520 0.4338 0.5520h 0.3549 c 0.0789,-0.0000 0.0920,0.0657 0.0920 0.0920v 0.2892 c 0.0000,-0.0000 -0.8412,-0.0263 -1.3933 -0.0263c -0.4995,-0.0000 -1.2750,0.0263 -1.2750 0.0263v -0.2892 c 0.0000,-0.0263 0.0131,-0.0920 0.0920 -0.0920h 0.3549 c 0.4075,-0.0000 0.4469,-0.1709 0.4469 -0.5520v -1.0910 h -2.5762 c -0.0526,-0.0000 -0.0789,-0.0263 -0.1183 -0.0789l -0.1052,-0.1446 l -0.1577,-0.2760 c -0.0131,-0.0000 -0.0131,-0.0131 -0.0131 -0.0263c 0.0000,-0.0131 0.0131,-0.0263 0.0263 -0.0394c 0.8544,-0.9464 2.3659,-3.8775 2.8391 -4.9553c 0.0131,-0.0526 0.0394,-0.0657 0.0920 -0.0657c 0.0131,-0.0000 0.3023,0.1183 0.4600 0.1446c -0.5915,1.5904 -1.5641,3.2992 -2.5237 4.8239h 2.0768 v -2.0373 ZM 419.0251,133.2848 ZM 419.7743,132.7459 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 421.9036,133.2848 ZM 425.9652,131.0634 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.3514,133.2848 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 413.2680,153.0994 ZM 416.6592,148.4333 c 0.0000,-0.0920 0.0131,-0.1972 0.1314 -0.2629c 0.1446,-0.1052 0.3812,-0.2234 0.5783 -0.2234c 0.1709,-0.0000 0.1840,0.1446 0.1840 0.4075v 2.1162 h 1.0647 l -0.0789,0.6178 h -0.9858 v 1.0910 c 0.0000,0.3680 0.0526,0.5520 0.4338 0.5520h 0.3549 c 0.0789,-0.0000 0.0920,0.0657 0.0920 0.0920v 0.2892 c 0.0000,-0.0000 -0.8412,-0.0263 -1.3933 -0.0263c -0.4995,-0.0000 -1.2750,0.0263 -1.2750 0.0263v -0.2892 c 0.0000,-0.0263 0.0131,-0.0920 0.0920 -0.0920h 0.3549 c 0.4075,-0.0000 0.4469,-0.1709 0.4469 -0.5520v -1.0910 h -2.5762 c -0.0526,-0.0000 -0.0789,-0.0263 -0.1183 -0.0789l -0.1052,-0.1446 l -0.1577,-0.2760 c -0.0131,-0.0000 -0.0131,-0.0131 -0.0131 -0.0263c 0.0000,-0.0131 0.0131,-0.0263 0.0263 -0.0394c 0.8544,-0.9464 2.3659,-3.8775 2.8391 -4.9553c 0.0131,-0.0526 0.0394,-0.0657 0.0920 -0.0657c 0.0131,-0.0000 0.3023,0.1183 0.4600 0.1446c -0.5915,1.5904 -1.5641,3.2992 -2.5237 4.8239h 2.0768 v -2.0373 ZM 419.0251,153.0994 ZM 419.7743,152.5605 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 421.9036,153.0994 ZM 424.7822,145.9622 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 424.7822,145.9622 ZM 424.7296,153.2571 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.3514,153.0994 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 413.2680,172.9141 ZM 416.1071,165.7243 c -0.3286,-0.0000 -1.2881,0.1840 -1.2881 0.9858c 0.0000,0.2366 -0.0920,0.6441 -0.4469 0.6441c -0.3417,-0.0000 -0.3680,-0.3812 -0.3680 -0.4206c 0.0000,-0.4075 0.5389,-1.6167 2.3659 -1.6167c 1.2750,-0.0000 1.6561,0.8018 1.6561 1.3275c 0.0000,0.3286 -0.1052,0.9858 -1.2881 1.7350c 0.7361,0.1183 1.7087,0.6572 1.7087 2.0242c 0.0000,1.7350 -1.3144,2.6682 -2.7997 2.6682c -0.7492,-0.0000 -1.8007,-0.3286 -1.8007 -0.8281c 0.0000,-0.1972 0.1972,-0.4206 0.4600 -0.4206c 0.2497,-0.0000 0.3680,0.1314 0.4863 0.3023c 0.1446,0.2234 0.3812,0.5389 1.0121 0.5389c 0.4338,-0.0000 1.6693,-0.4338 1.6693 -2.0899c 0.0000,-1.4064 -0.9858,-1.6299 -1.6956 -1.6299c -0.1183,-0.0000 -0.2629,0.0263 -0.4075 0.0526l -0.0526,-0.3943 c 1.0121,-0.1709 1.8533,-1.1567 1.8533 -1.7613c 0.0000,-0.7492 -0.5258,-1.1172 -1.0647 -1.1172ZM 419.0251,172.9141 ZM 419.7743,172.3752 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 421.9036,172.9141 ZM 425.9652,170.6927 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.3514,172.9141 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 413.2680,192.7287 ZM 416.1071,185.5389 c -0.3286,-0.0000 -1.2881,0.1840 -1.2881 0.9858c 0.0000,0.2366 -0.0920,0.6441 -0.4469 0.6441c -0.3417,-0.0000 -0.3680,-0.3812 -0.3680 -0.4206c 0.0000,-0.4075 0.5389,-1.6167 2.3659 -1.6167c 1.2750,-0.0000 1.6561,0.8018 1.6561 1.3275c 0.0000,0.3286 -0.1052,0.9858 -1.2881 1.7350c 0.7361,0.1183 1.7087,0.6572 1.7087 2.0242c 0.0000,1.7350 -1.3144,2.6682 -2.7997 2.6682c -0.7492,-0.0000 -1.8007,-0.3286 -1.8007 -0.8281c 0.0000,-0.1972 0.1972,-0.4206 0.4600 -0.4206c 0.2497,-0.0000 0.3680,0.1314 0.4863 0.3023c 0.1446,0.2234 0.3812,0.5389 1.0121 0.5389c 0.4338,-0.0000 1.6693,-0.4338 1.6693 -2.0899c 0.0000,-1.4064 -0.9858,-1.6299 -1.6956 -1.6299c -0.1183,-0.0000 -0.2629,0.0263 -0.4075 0.0526l -0.0526,-0.3943 c 1.0121,-0.1709 1.8533,-1.1567 1.8533 -1.7613c 0.0000,-0.7492 -0.5258,-1.1172 -1.0647 -1.1172ZM 419.0251,192.7287 ZM 419.7743,192.1898 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 421.9036,192.7287 ZM 424.7822,185.5915 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 424.7822,185.5915 ZM 424.7296,192.8864 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.3514,192.7287 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 413.2680,212.5434 ZM 414.0304,206.7206 c 0.0000,-0.7492 0.7229,-1.7744 2.1030 -1.7744c 1.0121,-0.0000 2.1951,0.3812 2.1951 1.8927c 0.0000,0.9989 -0.5126,1.4984 -1.2224 2.1819l -1.2487,1.2093 c -0.0657,0.0657 -0.9464,0.9332 -0.9464 1.5510h 2.2345 c 0.4469,-0.0000 0.6835,-0.2234 0.8675 -0.9464l 0.3286,0.0526 l -0.2629,1.6561 h -4.0615 c 0.0000,-0.7361 0.1183,-1.3013 1.3407 -2.5499l 0.9201,-0.9069 c 0.7361,-0.7492 1.0384,-1.3933 1.0384 -2.1951c 0.0000,-1.1961 -0.8149,-1.5379 -1.2618 -1.5379c -0.9069,-0.0000 -1.1567,0.4732 -1.1567 0.7886c 0.0000,0.1052 0.0263,0.2103 0.0526 0.3023c 0.0263,0.0920 0.0526,0.1840 0.0526 0.2892c 0.0000,0.3417 -0.2629,0.4732 -0.4732 0.4732c -0.2892,-0.0000 -0.4995,-0.2234 -0.4995 -0.4863ZM 419.0251,212.5434 ZM 419.7743,212.0045 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 421.9036,212.5434 ZM 425.9652,210.3220 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.3514,212.5434 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 413.2680,232.3580 ZM 414.0304,226.5352 c 0.0000,-0.7492 0.7229,-1.7744 2.1030 -1.7744c 1.0121,-0.0000 2.1951,0.3812 2.1951 1.8927c 0.0000,0.9989 -0.5126,1.4984 -1.2224 2.1819l -1.2487,1.2093 c -0.0657,0.0657 -0.9464,0.9332 -0.9464 1.5510h 2.2345 c 0.4469,-0.0000 0.6835,-0.2234 0.8675 -0.9464l 0.3286,0.0526 l -0.2629,1.6561 h -4.0615 c 0.0000,-0.7361 0.1183,-1.3013 1.3407 -2.5499l 0.9201,-0.9069 c 0.7361,-0.7492 1.0384,-1.3933 1.0384 -2.1951c 0.0000,-1.1961 -0.8149,-1.5379 -1.2618 -1.5379c -0.9069,-0.0000 -1.1567,0.4732 -1.1567 0.7886c 0.0000,0.1052 0.0263,0.2103 0.0526 0.3023c 0.0263,0.0920 0.0526,0.1840 0.0526 0.2892c 0.0000,0.3417 -0.2629,0.4732 -0.4732 0.4732c -0.2892,-0.0000 -0.4995,-0.2234 -0.4995 -0.4863ZM 419.0251,232.3580 ZM 419.7743,231.8191 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 421.9036,232.3580 ZM 424.7822,225.2208 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 424.7822,225.2208 ZM 424.7296,232.5157 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.3514,232.3580 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 413.2680,252.1727 ZM 415.7391,245.9029 c -0.2497,-0.0000 -0.8281,0.2366 -1.1172 0.3680l -0.1577,-0.4075 c 1.1567,-0.5389 1.6036,-0.8149 2.2608 -1.2881h 0.2497 v 6.6115 c 0.0000,0.4732 0.0657,0.6046 0.4995 0.6046h 0.6835 c 0.0394,-0.0000 0.1052,0.0263 0.1052 0.1052v 0.2892 l -1.8007,-0.0263 l -1.8270,0.0263 v -0.2892 c 0.0131,-0.0394 0.0263,-0.1052 0.1052 -0.1052h 0.7886 c 0.4995,-0.0000 0.4995,-0.2234 0.4995 -0.6046v -4.5216 c 0.0000,-0.4469 0.0000,-0.7624 -0.2892 -0.7624ZM 419.0251,252.1727 ZM 419.7743,251.6338 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 421.9036,252.1727 ZM 425.9652,249.9513 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.3514,252.1727 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 413.2680,271.9873 ZM 415.7391,265.7176 c -0.2497,-0.0000 -0.8281,0.2366 -1.1172 0.3680l -0.1577,-0.4075 c 1.1567,-0.5389 1.6036,-0.8149 2.2608 -1.2881h 0.2497 v 6.6115 c 0.0000,0.4732 0.0657,0.6046 0.4995 0.6046h 0.6835 c 0.0394,-0.0000 0.1052,0.0263 0.1052 0.1052v 0.2892 l -1.8007,-0.0263 l -1.8270,0.0263 v -0.2892 c 0.0131,-0.0394 0.0263,-0.1052 0.1052 -0.1052h 0.7886 c 0.4995,-0.0000 0.4995,-0.2234 0.4995 -0.6046v -4.5216 c 0.0000,-0.4469 0.0000,-0.7624 -0.2892 -0.7624ZM 419.0251,271.9873 ZM 419.7743,271.4484 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 421.9036,271.9873 ZM 424.7822,264.8501 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 424.7822,264.8501 ZM 424.7296,272.1450 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.3514,271.9873 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 413.2680,291.8020 ZM 416.1466,284.6647 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 416.1466,284.6647 ZM 416.0940,291.9597 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301ZM 419.0251,291.8020 ZM 419.7743,291.2630 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 421.9036,291.8020 ZM 425.9652,289.5806 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.3514,291.8020 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 413.2680,311.6166 ZM 416.1466,304.4794 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 416.1466,304.4794 ZM 416.0940,311.7743 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301ZM 419.0251,311.6166 ZM 419.7743,311.0777 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 421.9036,311.6166 ZM 424.7822,304.4794 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 424.7822,304.4794 ZM 424.7296,311.7743 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.3514,311.6166 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.2292,93.7935 l -0.0000,-3.9629 h -297.2197 l -0.0000,3.9629 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 382.0328,80.7760 ZM 384.8719,73.5862 c -0.3286,-0.0000 -1.2881,0.1840 -1.2881 0.9858c 0.0000,0.2366 -0.0920,0.6441 -0.4469 0.6441c -0.3417,-0.0000 -0.3680,-0.3812 -0.3680 -0.4206c 0.0000,-0.4075 0.5389,-1.6167 2.3659 -1.6167c 1.2750,-0.0000 1.6561,0.8018 1.6561 1.3275c 0.0000,0.3286 -0.1052,0.9858 -1.2881 1.7350c 0.7361,0.1183 1.7087,0.6572 1.7087 2.0242c 0.0000,1.7350 -1.3144,2.6682 -2.7997 2.6682c -0.7492,-0.0000 -1.8007,-0.3286 -1.8007 -0.8281c 0.0000,-0.1972 0.1972,-0.4206 0.4600 -0.4206c 0.2497,-0.0000 0.3680,0.1314 0.4863 0.3023c 0.1446,0.2234 0.3812,0.5389 1.0121 0.5389c 0.4338,-0.0000 1.6693,-0.4338 1.6693 -2.0899c 0.0000,-1.4064 -0.9858,-1.6299 -1.6956 -1.6299c -0.1183,-0.0000 -0.2629,0.0263 -0.4075 0.0526l -0.0526,-0.3943 c 1.0121,-0.1709 1.8533,-1.1567 1.8533 -1.7613c 0.0000,-0.7492 -0.5258,-1.1172 -1.0647 -1.1172ZM 387.7899,80.7760 ZM 388.5391,80.2370 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 390.6685,80.7760 ZM 393.5470,73.6387 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 393.5470,73.6387 ZM 393.4944,80.9337 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.2292,87.8491 v 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.4962,80.7760 ZM 333.2586,74.9531 c 0.0000,-0.7492 0.7229,-1.7744 2.1030 -1.7744c 1.0121,-0.0000 2.1951,0.3812 2.1951 1.8927c 0.0000,0.9989 -0.5126,1.4984 -1.2224 2.1819l -1.2487,1.2093 c -0.0657,0.0657 -0.9464,0.9332 -0.9464 1.5510h 2.2345 c 0.4469,-0.0000 0.6835,-0.2234 0.8675 -0.9464l 0.3286,0.0526 l -0.2629,1.6561 h -4.0615 c 0.0000,-0.7361 0.1183,-1.3013 1.3407 -2.5499l 0.9201,-0.9069 c 0.7361,-0.7492 1.0384,-1.3933 1.0384 -2.1951c 0.0000,-1.1961 -0.8149,-1.5379 -1.2618 -1.5379c -0.9069,-0.0000 -1.1567,0.4732 -1.1567 0.7886c 0.0000,0.1052 0.0263,0.2103 0.0526 0.3023c 0.0263,0.0920 0.0526,0.1840 0.0526 0.2892c 0.0000,0.3417 -0.2629,0.4732 -0.4732 0.4732c -0.2892,-0.0000 -0.4995,-0.2234 -0.4995 -0.4863ZM 338.2533,80.7760 ZM 339.0025,80.2370 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 341.1318,80.7760 ZM 345.1934,78.5546 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 339.6926,87.8491 v 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 282.9596,80.7760 ZM 283.7219,74.9531 c 0.0000,-0.7492 0.7229,-1.7744 2.1030 -1.7744c 1.0121,-0.0000 2.1951,0.3812 2.1951 1.8927c 0.0000,0.9989 -0.5126,1.4984 -1.2224 2.1819l -1.2487,1.2093 c -0.0657,0.0657 -0.9464,0.9332 -0.9464 1.5510h 2.2345 c 0.4469,-0.0000 0.6835,-0.2234 0.8675 -0.9464l 0.3286,0.0526 l -0.2629,1.6561 h -4.0615 c 0.0000,-0.7361 0.1183,-1.3013 1.3407 -2.5499l 0.9201,-0.9069 c 0.7361,-0.7492 1.0384,-1.3933 1.0384 -2.1951c 0.0000,-1.1961 -0.8149,-1.5379 -1.2618 -1.5379c -0.9069,-0.0000 -1.1567,0.4732 -1.1567 0.7886c 0.0000,0.1052 0.0263,0.2103 0.0526 0.3023c 0.0263,0.0920 0.0526,0.1840 0.0526 0.2892c 0.0000,0.3417 -0.2629,0.4732 -0.4732 0.4732c -0.2892,-0.0000 -0.4995,-0.2234 -0.4995 -0.4863ZM 288.7167,80.7760 ZM 289.4659,80.2370 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 291.5952,80.7760 ZM 294.4738,73.6387 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 294.4738,73.6387 ZM 294.4212,80.9337 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 290.1559,87.8491 v 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 233.4230,80.7760 ZM 235.8940,74.5062 c -0.2497,-0.0000 -0.8281,0.2366 -1.1172 0.3680l -0.1577,-0.4075 c 1.1567,-0.5389 1.6036,-0.8149 2.2608 -1.2881h 0.2497 v 6.6115 c 0.0000,0.4732 0.0657,0.6046 0.4995 0.6046h 0.6835 c 0.0394,-0.0000 0.1052,0.0263 0.1052 0.1052v 0.2892 l -1.8007,-0.0263 l -1.8270,0.0263 v -0.2892 c 0.0131,-0.0394 0.0263,-0.1052 0.1052 -0.1052h 0.7886 c 0.4995,-0.0000 0.4995,-0.2234 0.4995 -0.6046v -4.5216 c 0.0000,-0.4469 0.0000,-0.7624 -0.2892 -0.7624ZM 239.1801,80.7760 ZM 239.9293,80.2370 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 242.0586,80.7760 ZM 246.1201,78.5546 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.6193,87.8491 v 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 183.8863,80.7760 ZM 186.3574,74.5062 c -0.2497,-0.0000 -0.8281,0.2366 -1.1172 0.3680l -0.1577,-0.4075 c 1.1567,-0.5389 1.6036,-0.8149 2.2608 -1.2881h 0.2497 v 6.6115 c 0.0000,0.4732 0.0657,0.6046 0.4995 0.6046h 0.6835 c 0.0394,-0.0000 0.1052,0.0263 0.1052 0.1052v 0.2892 l -1.8007,-0.0263 l -1.8270,0.0263 v -0.2892 c 0.0131,-0.0394 0.0263,-0.1052 0.1052 -0.1052h 0.7886 c 0.4995,-0.0000 0.4995,-0.2234 0.4995 -0.6046v -4.5216 c 0.0000,-0.4469 0.0000,-0.7624 -0.2892 -0.7624ZM 189.6434,80.7760 ZM 190.3926,80.2370 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 192.5220,80.7760 ZM 195.4005,73.6387 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 195.4005,73.6387 ZM 195.3479,80.9337 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 191.0827,87.8491 v 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 134.3497,80.7760 ZM 137.2283,73.6387 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 137.2283,73.6387 ZM 137.1757,80.9337 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301ZM 140.1068,80.7760 ZM 140.8560,80.2370 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 142.9854,80.7760 ZM 147.0469,78.5546 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 141.5461,87.8491 v 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 84.8131,80.7760 ZM 87.6916,73.6387 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 87.6916,73.6387 ZM 87.6391,80.9337 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301ZM 90.5702,80.7760 ZM 91.3194,80.2370 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 93.4487,80.7760 ZM 96.3273,73.6387 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 96.3273,73.6387 ZM 96.2747,80.9337 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 92.0095,87.8491 v 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 76.8872,311.6166 l -0.0000,-198.1465 h -3.9629 l -0.0000,198.1465 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 53.5779,113.4701 ZM 57.6394,111.2488 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322ZM 59.3350,113.4701 ZM 60.0842,112.9312 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 62.2136,113.4701 ZM 65.0921,106.3329 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 65.0921,106.3329 ZM 65.0395,113.6279 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 70.9428,113.4701 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 53.5779,133.2848 ZM 56.9691,128.6186 c 0.0000,-0.0920 0.0131,-0.1972 0.1314 -0.2629c 0.1446,-0.1052 0.3812,-0.2234 0.5783 -0.2234c 0.1709,-0.0000 0.1840,0.1446 0.1840 0.4075v 2.1162 h 1.0647 l -0.0789,0.6178 h -0.9858 v 1.0910 c 0.0000,0.3680 0.0526,0.5520 0.4338 0.5520h 0.3549 c 0.0789,-0.0000 0.0920,0.0657 0.0920 0.0920v 0.2892 c 0.0000,-0.0000 -0.8412,-0.0263 -1.3933 -0.0263c -0.4995,-0.0000 -1.2750,0.0263 -1.2750 0.0263v -0.2892 c 0.0000,-0.0263 0.0131,-0.0920 0.0920 -0.0920h 0.3549 c 0.4075,-0.0000 0.4469,-0.1709 0.4469 -0.5520v -1.0910 h -2.5762 c -0.0526,-0.0000 -0.0789,-0.0263 -0.1183 -0.0789l -0.1052,-0.1446 l -0.1577,-0.2760 c -0.0131,-0.0000 -0.0131,-0.0131 -0.0131 -0.0263c 0.0000,-0.0131 0.0131,-0.0263 0.0263 -0.0394c 0.8544,-0.9464 2.3659,-3.8775 2.8391 -4.9553c 0.0131,-0.0526 0.0394,-0.0657 0.0920 -0.0657c 0.0131,-0.0000 0.3023,0.1183 0.4600 0.1446c -0.5915,1.5904 -1.5641,3.2992 -2.5237 4.8239h 2.0768 v -2.0373 ZM 59.3350,133.2848 ZM 60.0842,132.7459 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 62.2136,133.2848 ZM 66.2751,131.0634 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 70.9428,133.2848 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 53.5779,153.0994 ZM 56.9691,148.4333 c 0.0000,-0.0920 0.0131,-0.1972 0.1314 -0.2629c 0.1446,-0.1052 0.3812,-0.2234 0.5783 -0.2234c 0.1709,-0.0000 0.1840,0.1446 0.1840 0.4075v 2.1162 h 1.0647 l -0.0789,0.6178 h -0.9858 v 1.0910 c 0.0000,0.3680 0.0526,0.5520 0.4338 0.5520h 0.3549 c 0.0789,-0.0000 0.0920,0.0657 0.0920 0.0920v 0.2892 c 0.0000,-0.0000 -0.8412,-0.0263 -1.3933 -0.0263c -0.4995,-0.0000 -1.2750,0.0263 -1.2750 0.0263v -0.2892 c 0.0000,-0.0263 0.0131,-0.0920 0.0920 -0.0920h 0.3549 c 0.4075,-0.0000 0.4469,-0.1709 0.4469 -0.5520v -1.0910 h -2.5762 c -0.0526,-0.0000 -0.0789,-0.0263 -0.1183 -0.0789l -0.1052,-0.1446 l -0.1577,-0.2760 c -0.0131,-0.0000 -0.0131,-0.0131 -0.0131 -0.0263c 0.0000,-0.0131 0.0131,-0.0263 0.0263 -0.0394c 0.8544,-0.9464 2.3659,-3.8775 2.8391 -4.9553c 0.0131,-0.0526 0.0394,-0.0657 0.0920 -0.0657c 0.0131,-0.0000 0.3023,0.1183 0.4600 0.1446c -0.5915,1.5904 -1.5641,3.2992 -2.5237 4.8239h 2.0768 v -2.0373 ZM 59.3350,153.0994 ZM 60.0842,152.5605 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 62.2136,153.0994 ZM 65.0921,145.9622 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 65.0921,145.9622 ZM 65.0395,153.2571 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 70.9428,153.0994 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 53.5779,172.9141 ZM 56.4170,165.7243 c -0.3286,-0.0000 -1.2881,0.1840 -1.2881 0.9858c 0.0000,0.2366 -0.0920,0.6441 -0.4469 0.6441c -0.3417,-0.0000 -0.3680,-0.3812 -0.3680 -0.4206c 0.0000,-0.4075 0.5389,-1.6167 2.3659 -1.6167c 1.2750,-0.0000 1.6561,0.8018 1.6561 1.3275c 0.0000,0.3286 -0.1052,0.9858 -1.2881 1.7350c 0.7361,0.1183 1.7087,0.6572 1.7087 2.0242c 0.0000,1.7350 -1.3144,2.6682 -2.7997 2.6682c -0.7492,-0.0000 -1.8007,-0.3286 -1.8007 -0.8281c 0.0000,-0.1972 0.1972,-0.4206 0.4600 -0.4206c 0.2497,-0.0000 0.3680,0.1314 0.4863 0.3023c 0.1446,0.2234 0.3812,0.5389 1.0121 0.5389c 0.4338,-0.0000 1.6693,-0.4338 1.6693 -2.0899c 0.0000,-1.4064 -0.9858,-1.6299 -1.6956 -1.6299c -0.1183,-0.0000 -0.2629,0.0263 -0.4075 0.0526l -0.0526,-0.3943 c 1.0121,-0.1709 1.8533,-1.1567 1.8533 -1.7613c 0.0000,-0.7492 -0.5258,-1.1172 -1.0647 -1.1172ZM 59.3350,172.9141 ZM 60.0842,172.3752 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 62.2136,172.9141 ZM 66.2751,170.6927 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 70.9428,172.9141 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 53.5779,192.7287 ZM 56.4170,185.5389 c -0.3286,-0.0000 -1.2881,0.1840 -1.2881 0.9858c 0.0000,0.2366 -0.0920,0.6441 -0.4469 0.6441c -0.3417,-0.0000 -0.3680,-0.3812 -0.3680 -0.4206c 0.0000,-0.4075 0.5389,-1.6167 2.3659 -1.6167c 1.2750,-0.0000 1.6561,0.8018 1.6561 1.3275c 0.0000,0.3286 -0.1052,0.9858 -1.2881 1.7350c 0.7361,0.1183 1.7087,0.6572 1.7087 2.0242c 0.0000,1.7350 -1.3144,2.6682 -2.7997 2.6682c -0.7492,-0.0000 -1.8007,-0.3286 -1.8007 -0.8281c 0.0000,-0.1972 0.1972,-0.4206 0.4600 -0.4206c 0.2497,-0.0000 0.3680,0.1314 0.4863 0.3023c 0.1446,0.2234 0.3812,0.5389 1.0121 0.5389c 0.4338,-0.0000 1.6693,-0.4338 1.6693 -2.0899c 0.0000,-1.4064 -0.9858,-1.6299 -1.6956 -1.6299c -0.1183,-0.0000 -0.2629,0.0263 -0.4075 0.0526l -0.0526,-0.3943 c 1.0121,-0.1709 1.8533,-1.1567 1.8533 -1.7613c 0.0000,-0.7492 -0.5258,-1.1172 -1.0647 -1.1172ZM 59.3350,192.7287 ZM 60.0842,192.1898 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 62.2136,192.7287 ZM 65.0921,185.5915 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 65.0921,185.5915 ZM 65.0395,192.8864 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 70.9428,192.7287 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 53.5779,212.5434 ZM 54.3403,206.7206 c 0.0000,-0.7492 0.7229,-1.7744 2.1030 -1.7744c 1.0121,-0.0000 2.1951,0.3812 2.1951 1.8927c 0.0000,0.9989 -0.5126,1.4984 -1.2224 2.1819l -1.2487,1.2093 c -0.0657,0.0657 -0.9464,0.9332 -0.9464 1.5510h 2.2345 c 0.4469,-0.0000 0.6835,-0.2234 0.8675 -0.9464l 0.3286,0.0526 l -0.2629,1.6561 h -4.0615 c 0.0000,-0.7361 0.1183,-1.3013 1.3407 -2.5499l 0.9201,-0.9069 c 0.7361,-0.7492 1.0384,-1.3933 1.0384 -2.1951c 0.0000,-1.1961 -0.8149,-1.5379 -1.2618 -1.5379c -0.9069,-0.0000 -1.1567,0.4732 -1.1567 0.7886c 0.0000,0.1052 0.0263,0.2103 0.0526 0.3023c 0.0263,0.0920 0.0526,0.1840 0.0526 0.2892c 0.0000,0.3417 -0.2629,0.4732 -0.4732 0.4732c -0.2892,-0.0000 -0.4995,-0.2234 -0.4995 -0.4863ZM 59.3350,212.5434 ZM 60.0842,212.0045 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 62.2136,212.5434 ZM 66.2751,210.3220 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 70.9428,212.5434 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 53.5779,232.3580 ZM 54.3403,226.5352 c 0.0000,-0.7492 0.7229,-1.7744 2.1030 -1.7744c 1.0121,-0.0000 2.1951,0.3812 2.1951 1.8927c 0.0000,0.9989 -0.5126,1.4984 -1.2224 2.1819l -1.2487,1.2093 c -0.0657,0.0657 -0.9464,0.9332 -0.9464 1.5510h 2.2345 c 0.4469,-0.0000 0.6835,-0.2234 0.8675 -0.9464l 0.3286,0.0526 l -0.2629,1.6561 h -4.0615 c 0.0000,-0.7361 0.1183,-1.3013 1.3407 -2.5499l 0.9201,-0.9069 c 0.7361,-0.7492 1.0384,-1.3933 1.0384 -2.1951c 0.0000,-1.1961 -0.8149,-1.5379 -1.2618 -1.5379c -0.9069,-0.0000 -1.1567,0.4732 -1.1567 0.7886c 0.0000,0.1052 0.0263,0.2103 0.0526 0.3023c 0.0263,0.0920 0.0526,0.1840 0.0526 0.2892c 0.0000,0.3417 -0.2629,0.4732 -0.4732 0.4732c -0.2892,-0.0000 -0.4995,-0.2234 -0.4995 -0.4863ZM 59.3350,232.3580 ZM 60.0842,231.8191 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 62.2136,232.3580 ZM 65.0921,225.2208 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 65.0921,225.2208 ZM 65.0395,232.5157 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 70.9428,232.3580 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 53.5779,252.1727 ZM 56.0490,245.9029 c -0.2497,-0.0000 -0.8281,0.2366 -1.1172 0.3680l -0.1577,-0.4075 c 1.1567,-0.5389 1.6036,-0.8149 2.2608 -1.2881h 0.2497 v 6.6115 c 0.0000,0.4732 0.0657,0.6046 0.4995 0.6046h 0.6835 c 0.0394,-0.0000 0.1052,0.0263 0.1052 0.1052v 0.2892 l -1.8007,-0.0263 l -1.8270,0.0263 v -0.2892 c 0.0131,-0.0394 0.0263,-0.1052 0.1052 -0.1052h 0.7886 c 0.4995,-0.0000 0.4995,-0.2234 0.4995 -0.6046v -4.5216 c 0.0000,-0.4469 0.0000,-0.7624 -0.2892 -0.7624ZM 59.3350,252.1727 ZM 60.0842,251.6338 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 62.2136,252.1727 ZM 66.2751,249.9513 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 70.9428,252.1727 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 53.5779,271.9873 ZM 56.0490,265.7176 c -0.2497,-0.0000 -0.8281,0.2366 -1.1172 0.3680l -0.1577,-0.4075 c 1.1567,-0.5389 1.6036,-0.8149 2.2608 -1.2881h 0.2497 v 6.6115 c 0.0000,0.4732 0.0657,0.6046 0.4995 0.6046h 0.6835 c 0.0394,-0.0000 0.1052,0.0263 0.1052 0.1052v 0.2892 l -1.8007,-0.0263 l -1.8270,0.0263 v -0.2892 c 0.0131,-0.0394 0.0263,-0.1052 0.1052 -0.1052h 0.7886 c 0.4995,-0.0000 0.4995,-0.2234 0.4995 -0.6046v -4.5216 c 0.0000,-0.4469 0.0000,-0.7624 -0.2892 -0.7624ZM 59.3350,271.9873 ZM 60.0842,271.4484 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 62.2136,271.9873 ZM 65.0921,264.8501 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 65.0921,264.8501 ZM 65.0395,272.1450 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 70.9428,271.9873 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 53.5779,291.8020 ZM 56.4565,284.6647 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 56.4565,284.6647 ZM 56.4039,291.9597 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301ZM 59.3350,291.8020 ZM 60.0842,291.2630 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 62.2136,291.8020 ZM 66.2751,289.5806 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 70.9428,291.8020 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 53.5779,311.6166 ZM 56.4565,304.4794 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 56.4565,304.4794 ZM 56.4039,311.7743 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301ZM 59.3350,311.6166 ZM 60.0842,311.0777 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 62.2136,311.6166 ZM 65.0921,304.4794 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 65.0921,304.4794 ZM 65.0395,311.7743 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 70.9428,311.6166 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.2292,319.6805 l -0.0000,-3.9629 h -297.2197 l -0.0000,3.9629 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 382.0328,336.3849 ZM 384.8719,329.1951 c -0.3286,-0.0000 -1.2881,0.1840 -1.2881 0.9858c 0.0000,0.2366 -0.0920,0.6441 -0.4469 0.6441c -0.3417,-0.0000 -0.3680,-0.3812 -0.3680 -0.4206c 0.0000,-0.4075 0.5389,-1.6167 2.3659 -1.6167c 1.2750,-0.0000 1.6561,0.8018 1.6561 1.3275c 0.0000,0.3286 -0.1052,0.9858 -1.2881 1.7350c 0.7361,0.1183 1.7087,0.6572 1.7087 2.0242c 0.0000,1.7350 -1.3144,2.6682 -2.7997 2.6682c -0.7492,-0.0000 -1.8007,-0.3286 -1.8007 -0.8281c 0.0000,-0.1972 0.1972,-0.4206 0.4600 -0.4206c 0.2497,-0.0000 0.3680,0.1314 0.4863 0.3023c 0.1446,0.2234 0.3812,0.5389 1.0121 0.5389c 0.4338,-0.0000 1.6693,-0.4338 1.6693 -2.0899c 0.0000,-1.4064 -0.9858,-1.6299 -1.6956 -1.6299c -0.1183,-0.0000 -0.2629,0.0263 -0.4075 0.0526l -0.0526,-0.3943 c 1.0121,-0.1709 1.8533,-1.1567 1.8533 -1.7613c 0.0000,-0.7492 -0.5258,-1.1172 -1.0647 -1.1172ZM 387.7899,336.3849 ZM 388.5391,335.8460 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 390.6685,336.3849 ZM 393.5470,329.2477 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 393.5470,329.2477 ZM 393.4944,336.5426 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.2292,315.7175 v 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.4962,336.3849 ZM 333.2586,330.5621 c 0.0000,-0.7492 0.7229,-1.7744 2.1030 -1.7744c 1.0121,-0.0000 2.1951,0.3812 2.1951 1.8927c 0.0000,0.9989 -0.5126,1.4984 -1.2224 2.1819l -1.2487,1.2093 c -0.0657,0.0657 -0.9464,0.9332 -0.9464 1.5510h 2.2345 c 0.4469,-0.0000 0.6835,-0.2234 0.8675 -0.9464l 0.3286,0.0526 l -0.2629,1.6561 h -4.0615 c 0.0000,-0.7361 0.1183,-1.3013 1.3407 -2.5499l 0.9201,-0.9069 c 0.7361,-0.7492 1.0384,-1.3933 1.0384 -2.1951c 0.0000,-1.1961 -0.8149,-1.5379 -1.2618 -1.5379c -0.9069,-0.0000 -1.1567,0.4732 -1.1567 0.7886c 0.0000,0.1052 0.0263,0.2103 0.0526 0.3023c 0.0263,0.0920 0.0526,0.1840 0.0526 0.2892c 0.0000,0.3417 -0.2629,0.4732 -0.4732 0.4732c -0.2892,-0.0000 -0.4995,-0.2234 -0.4995 -0.4863ZM 338.2533,336.3849 ZM 339.0025,335.8460 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 341.1318,336.3849 ZM 345.1934,334.1636 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 339.6926,315.7175 v 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 282.9596,336.3849 ZM 283.7219,330.5621 c 0.0000,-0.7492 0.7229,-1.7744 2.1030 -1.7744c 1.0121,-0.0000 2.1951,0.3812 2.1951 1.8927c 0.0000,0.9989 -0.5126,1.4984 -1.2224 2.1819l -1.2487,1.2093 c -0.0657,0.0657 -0.9464,0.9332 -0.9464 1.5510h 2.2345 c 0.4469,-0.0000 0.6835,-0.2234 0.8675 -0.9464l 0.3286,0.0526 l -0.2629,1.6561 h -4.0615 c 0.0000,-0.7361 0.1183,-1.3013 1.3407 -2.5499l 0.9201,-0.9069 c 0.7361,-0.7492 1.0384,-1.3933 1.0384 -2.1951c 0.0000,-1.1961 -0.8149,-1.5379 -1.2618 -1.5379c -0.9069,-0.0000 -1.1567,0.4732 -1.1567 0.7886c 0.0000,0.1052 0.0263,0.2103 0.0526 0.3023c 0.0263,0.0920 0.0526,0.1840 0.0526 0.2892c 0.0000,0.3417 -0.2629,0.4732 -0.4732 0.4732c -0.2892,-0.0000 -0.4995,-0.2234 -0.4995 -0.4863ZM 288.7167,336.3849 ZM 289.4659,335.8460 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 291.5952,336.3849 ZM 294.4738,329.2477 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 294.4738,329.2477 ZM 294.4212,336.5426 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 290.1559,315.7175 v 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 233.4230,336.3849 ZM 235.8940,330.1152 c -0.2497,-0.0000 -0.8281,0.2366 -1.1172 0.3680l -0.1577,-0.4075 c 1.1567,-0.5389 1.6036,-0.8149 2.2608 -1.2881h 0.2497 v 6.6115 c 0.0000,0.4732 0.0657,0.6046 0.4995 0.6046h 0.6835 c 0.0394,-0.0000 0.1052,0.0263 0.1052 0.1052v 0.2892 l -1.8007,-0.0263 l -1.8270,0.0263 v -0.2892 c 0.0131,-0.0394 0.0263,-0.1052 0.1052 -0.1052h 0.7886 c 0.4995,-0.0000 0.4995,-0.2234 0.4995 -0.6046v -4.5216 c 0.0000,-0.4469 0.0000,-0.7624 -0.2892 -0.7624ZM 239.1801,336.3849 ZM 239.9293,335.8460 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 242.0586,336.3849 ZM 246.1201,334.1636 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.6193,315.7175 v 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 183.8863,336.3849 ZM 186.3574,330.1152 c -0.2497,-0.0000 -0.8281,0.2366 -1.1172 0.3680l -0.1577,-0.4075 c 1.1567,-0.5389 1.6036,-0.8149 2.2608 -1.2881h 0.2497 v 6.6115 c 0.0000,0.4732 0.0657,0.6046 0.4995 0.6046h 0.6835 c 0.0394,-0.0000 0.1052,0.0263 0.1052 0.1052v 0.2892 l -1.8007,-0.0263 l -1.8270,0.0263 v -0.2892 c 0.0131,-0.0394 0.0263,-0.1052 0.1052 -0.1052h 0.7886 c 0.4995,-0.0000 0.4995,-0.2234 0.4995 -0.6046v -4.5216 c 0.0000,-0.4469 0.0000,-0.7624 -0.2892 -0.7624ZM 189.6434,336.3849 ZM 190.3926,335.8460 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 192.5220,336.3849 ZM 195.4005,329.2477 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 195.4005,329.2477 ZM 195.3479,336.5426 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 191.0827,315.7175 v 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 134.3497,336.3849 ZM 137.2283,329.2477 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 137.2283,329.2477 ZM 137.1757,336.5426 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301ZM 140.1068,336.3849 ZM 140.8560,335.8460 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 142.9854,336.3849 ZM 147.0469,334.1636 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 141.5461,315.7175 v 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 84.8131,336.3849 ZM 87.6916,329.2477 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 87.6916,329.2477 ZM 87.6391,336.5426 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301ZM 90.5702,336.3849 ZM 91.3194,335.8460 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 93.4487,336.3849 ZM 96.3273,329.2477 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 96.3273,329.2477 ZM 96.2747,336.5426 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 92.0095,315.7175 v 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.2292,307.7917 l -0.0000,-198.1465 h -297.2197 l -0.0000,198.1465 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 141.5461,149.2745 v 158.5172 "/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.290457865275467" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 92.0095,307.7917 l 297.2197,-118.8879 "/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.645228932637734" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 92.0095,268.1624 h 99.0732 l 99.0732,-158.5172 "/></g></svg>
+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="400.0000" stroke-opacity="1" viewBox="0 0 600 400" font-size="1" width="600.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 223.8771,360.1625 ZM 225.8356,359.4396 c 0.2629,0.3155 0.5389,0.4206 0.9464 0.4206c 1.2487,-0.0000 1.8796,-1.1567 1.8796 -2.6551c 0.0000,-1.3407 -0.6835,-2.3002 -1.4853 -2.3002c -0.1446,-0.0000 -0.8281,0.0263 -1.3407 0.5652v 3.9695 ZM 225.8356,359.4396 ZM 224.8498,352.6310 c 0.0000,-0.7492 -0.1314,-0.9595 -0.3943 -0.9595l -0.4206,0.0526 c -0.0394,-0.0000 -0.0657,-0.0263 -0.0657 -0.0657l -0.0263,-0.3286 c 0.2103,-0.0000 0.6835,-0.0789 0.9069 -0.1183c 0.2366,-0.0526 0.4338,-0.1052 0.6966 -0.2234h 0.2892 v 4.0747 c 0.4469,-0.4863 0.9727,-0.7229 1.6036 -0.7229c 1.1435,-0.0000 2.2345,1.0910 2.2345 2.6945c 0.0000,2.0899 -1.4721,3.2729 -2.8128 3.2729c -0.5652,-0.0000 -0.9858,-0.1577 -1.3670 -0.4863c -0.1183,0.1577 -0.2892,0.3549 -0.4075 0.4863l -0.2760,-0.0657 c 0.0394,-0.3155 0.0394,-0.5258 0.0394 -1.0384v -6.5720 ZM 230.1600,360.1625 ZM 230.6069,357.4680 c 0.0000,-1.8007 0.9727,-3.1151 2.7208 -3.1151c 1.9453,-0.0000 2.6945,1.6299 2.6945 2.9968c 0.0000,1.3144 -0.8544,2.9706 -2.7208 2.9706c -1.7613,-0.0000 -2.6945,-1.5116 -2.6945 -2.8523ZM 230.6069,357.4680 ZM 233.1831,354.7866 c -1.0515,-0.0000 -1.5379,1.2355 -1.5379 2.3791c 0.0000,1.0121 0.5783,2.6945 1.8796 2.6945c 0.5915,-0.0000 1.4590,-0.3549 1.4590 -2.0899c 0.0000,-1.9322 -0.7229,-2.9837 -1.8007 -2.9837ZM 236.4560,360.1625 ZM 240.4255,355.0232 h -1.8139 v 3.3517 c 0.0000,0.8149 0.0789,1.1961 0.4338 1.1961c 0.3812,-0.0000 0.7361,-0.1972 0.9464 -0.3549l 0.1972,0.1840 c -0.3417,0.5258 -0.8938,0.9069 -1.5379 0.9069c -0.6178,-0.0000 -1.0252,-0.3680 -1.0252 -1.3144v -3.9695 h -0.9069 v -0.5126 c 1.0121,-0.0000 1.1304,-0.4732 1.1304 -1.5116v -0.2497 l 0.7624,-0.2629 v 2.0242 h 1.8139 c 1.0252,-0.0000 1.1435,-0.4732 1.1435 -1.5116v -0.2497 l 0.7492,-0.2629 v 2.0242 h 1.4590 c 0.0657,-0.0000 0.0920,0.0263 0.0920 0.0789v 0.2629 c 0.0000,0.1183 -0.1709,0.1709 -0.3023 0.1709h -1.2487 v 3.3517 c 0.0000,0.8149 0.0920,1.1961 0.4338 1.1961c 0.3812,-0.0000 0.7492,-0.1972 0.9464 -0.3549l 0.1972,0.1840 c -0.3286,0.5258 -0.8807,0.9069 -1.5379 0.9069c -0.6178,-0.0000 -1.0121,-0.3680 -1.0121 -1.3144v -3.9695 h -0.9201 ZM 244.1058,360.1625 ZM 244.5527,357.4680 c 0.0000,-1.8007 0.9727,-3.1151 2.7208 -3.1151c 1.9453,-0.0000 2.6945,1.6299 2.6945 2.9968c 0.0000,1.3144 -0.8544,2.9706 -2.7208 2.9706c -1.7613,-0.0000 -2.6945,-1.5116 -2.6945 -2.8523ZM 244.5527,357.4680 ZM 247.1289,354.7866 c -1.0515,-0.0000 -1.5379,1.2355 -1.5379 2.3791c 0.0000,1.0121 0.5783,2.6945 1.8796 2.6945c 0.5915,-0.0000 1.4590,-0.3549 1.4590 -2.0899c 0.0000,-1.9322 -0.7229,-2.9837 -1.8007 -2.9837ZM 250.4018,360.1625 ZM 258.3276,359.2161 v -3.0231 c 0.0000,-0.8807 -0.3417,-1.2093 -0.8412 -1.2093c -0.5126,-0.0000 -0.9201,0.2629 -1.5510 0.9595c 0.0263,0.1577 0.0263,0.3417 0.0263 0.5258v 2.7471 c 0.0000,0.3812 0.1314,0.5783 0.5652 0.5783h 0.2234 c 0.0657,-0.0000 0.1183,0.0394 0.1183 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.8807,-0.0263 -1.3933 -0.0263c -0.4732,-0.0000 -1.3801,0.0263 -1.3801 0.0263l -0.0263,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0394,-0.1052 0.1052 -0.1052h 0.2629 c 0.4469,-0.0000 0.5652,-0.1972 0.5652 -0.5783v -2.9968 c 0.0000,-0.8807 -0.3549,-1.2355 -0.8544 -1.2355c -0.4600,-0.0000 -0.8938,0.3286 -1.5116 0.9727v 3.2597 c 0.0000,0.3812 0.1314,0.5783 0.5652 0.5783h 0.2497 c 0.0526,-0.0000 0.1052,0.0394 0.1052 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.8938,-0.0263 -1.4064 -0.0263c -0.4732,-0.0000 -1.3670,0.0263 -1.3670 0.0263l -0.0263,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0394,-0.1052 0.1052 -0.1052h 0.2497 c 0.4469,-0.0000 0.5652,-0.1972 0.5652 -0.5783v -3.2729 c 0.0000,-0.7492 -0.1183,-0.8018 -0.2892 -0.8018c -0.1709,-0.0000 -0.3286,0.0131 -0.5520 0.0657l -0.0657,-0.3680 c 0.8281,-0.1446 1.0121,-0.1972 1.3670 -0.3812c 0.1314,-0.0657 0.2366,-0.1052 0.3286 -0.1052h 0.1972 l -0.0394,1.1435 h 0.0394 c 0.6178,-0.6572 1.1698,-1.1435 1.9848 -1.1435c 0.7361,-0.0000 1.1961,0.5389 1.2750 1.1304c 0.7624,-0.7886 1.3801,-1.1304 2.0899 -1.1304c 1.1567,-0.0000 1.3538,0.9595 1.3538 2.1293v 2.7340 c 0.0000,0.3812 0.1314,0.5783 0.5652 0.5783h 0.2497 c 0.0526,-0.0000 0.1052,0.0394 0.1052 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.8938,-0.0263 -1.4064 -0.0263c -0.4732,-0.0000 -1.3670,0.0263 -1.3670 0.0263l -0.0263,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0394,-0.1052 0.1052 -0.1052h 0.2497 c 0.4338,-0.0000 0.5652,-0.1972 0.5652 -0.5783ZM 263.6773,360.1625 ZM 264.8471,359.2161 v -3.2729 c 0.0000,-0.6572 -0.0920,-0.8018 -0.2892 -0.8018c -0.1709,-0.0000 -0.3286,0.0131 -0.5520 0.0657l -0.0657,-0.3680 c 0.8281,-0.1446 0.9727,-0.1840 1.3670 -0.3812c 0.1314,-0.0657 0.2366,-0.1052 0.3286 -0.1052h 0.1972 l -0.0394,1.1830 h 0.0394 c 0.3417,-0.5126 0.9201,-1.1830 1.5379 -1.1830c 0.5389,-0.0000 0.7361,0.2629 0.7361 0.6046c 0.0000,0.3417 -0.2234,0.5520 -0.5652 0.5520c -0.2629,-0.0000 -0.4075,-0.1052 -0.5389 -0.2366c -0.0789,-0.0789 -0.1709,-0.1183 -0.2629 -0.1183c -0.1446,-0.0000 -0.4338,0.2366 -0.7492 0.6835c -0.0920,0.1183 -0.1577,0.2892 -0.1577 0.4600v 2.9180 c 0.0000,0.3812 0.1314,0.5783 0.5652 0.5783h 0.3812 c 0.0657,-0.0000 0.1183,0.0394 0.1183 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -1.0384,-0.0263 -1.5510 -0.0263c -0.4732,-0.0000 -1.3670,0.0263 -1.3670 0.0263l -0.0131,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0263,-0.1052 0.0920 -0.1052h 0.2497 c 0.4469,-0.0000 0.5652,-0.1972 0.5652 -0.5783ZM 268.2383,360.1625 ZM 269.2635,352.6572 c 0.0000,-0.3417 0.2760,-0.6309 0.6178 -0.6309c 0.3549,-0.0000 0.6309,0.2892 0.6309 0.6309c 0.0000,0.3549 -0.2760,0.6309 -0.6309 0.6309c -0.3417,-0.0000 -0.6178,-0.2760 -0.6178 -0.6309ZM 269.2635,352.6572 ZM 270.5122,359.2161 c 0.0000,0.3812 0.1446,0.5783 0.5652 0.5783h 0.2497 c 0.0657,-0.0000 0.1183,0.0394 0.1183 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.9069,-0.0263 -1.4196 -0.0263c -0.4600,-0.0000 -1.3538,0.0263 -1.3538 0.0263l -0.0263,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0394,-0.1052 0.1052 -0.1052h 0.2497 c 0.4338,-0.0000 0.5652,-0.1972 0.5652 -0.5783v -3.2729 c 0.0000,-0.6966 -0.1183,-0.8018 -0.3023 -0.8018c -0.1709,-0.0000 -0.3286,0.0131 -0.5520 0.0657l -0.0657,-0.3680 c 0.8412,-0.1446 0.9858,-0.1972 1.3670 -0.3812c 0.1446,-0.0526 0.2366,-0.1052 0.3286 -0.1052h 0.1972 v 4.8633 ZM 271.7083,360.1625 ZM 275.8618,356.4427 c 0.0000,-1.0910 -0.5126,-1.7219 -1.3013 -1.7219c -0.6835,-0.0000 -1.1435,0.4732 -1.1435 1.4984c 0.0000,0.6835 0.2629,1.7613 1.3144 1.7613c 0.4600,-0.0000 1.1304,-0.2234 1.1304 -1.5379ZM 275.8618,356.4427 ZM 273.4039,360.2545 c -0.4075,0.3812 -0.4995,0.7886 -0.4995 1.2355c 0.0000,0.9858 1.1830,1.2750 1.6299 1.2750c 1.1304,-0.0000 2.5631,-0.3943 2.5631 -1.3407c 0.0000,-0.3417 -0.1840,-0.5652 -0.6966 -0.8149c -0.3680,-0.1840 -0.9069,-0.3286 -1.5379 -0.3286c -0.1052,-0.0000 -0.2497,0.0131 -0.4338 0.0263c -0.1840,0.0131 -0.3812,0.0131 -0.5258 0.0131c -0.2103,-0.0000 -0.3155,-0.0263 -0.4995 -0.0657ZM 273.4039,360.2545 ZM 277.3997,355.0626 c -0.2103,-0.0000 -0.3417,-0.1183 -0.3943 -0.2234c -0.0789,-0.1183 -0.1314,-0.1577 -0.2234 -0.1577c -0.1577,-0.0000 -0.4075,0.1840 -0.4995 0.3155c 0.3680,0.3943 0.5389,0.7755 0.5389 1.3933c 0.0000,1.2881 -1.0515,1.9848 -2.1556 1.9848c -0.4863,-0.0000 -0.8807,-0.0920 -1.1830 -0.2760c -0.1446,0.2234 -0.2234,0.4995 -0.2234 0.7624c 0.0000,0.5652 0.4338,0.7098 0.8018 0.7098c 0.0657,-0.0000 0.2234,-0.0131 0.4075 -0.0263c 0.3023,-0.0394 0.6309,-0.0657 0.8544 -0.0657c 0.4600,-0.0000 1.3275,0.0920 1.8533 0.5389c 0.3549,0.3286 0.5520,0.6441 0.5520 1.0647c 0.0000,1.4196 -1.8665,2.1688 -3.5620 2.1688c -0.9595,-0.0000 -2.0242,-0.3549 -2.0242 -1.4984c 0.0000,-0.5652 0.3549,-1.1698 1.0252 -1.5904c -0.3286,-0.1709 -0.5652,-0.4995 -0.5652 -0.9727c 0.0000,-0.4469 0.1972,-1.0121 0.5520 -1.3275c -0.3549,-0.3549 -0.6572,-0.8018 -0.6572 -1.5247c 0.0000,-1.2093 1.0647,-1.9848 2.1819 -1.9848c 0.7361,-0.0000 1.1961,0.3023 1.3407 0.4075c 0.3286,-0.4469 0.9201,-0.6703 1.2487 -0.6703c 0.3417,-0.0000 0.5783,0.2234 0.5783 0.4995c 0.0000,0.2892 -0.1840,0.4732 -0.4469 0.4732ZM 278.0043,360.1625 ZM 280.1468,350.9879 v 4.4558 c 0.8807,-0.8807 1.6561,-1.0910 2.1688 -1.0910c 0.9464,-0.0000 1.4196,0.7229 1.4196 2.0768v 2.7865 c 0.0000,0.3812 0.1314,0.5783 0.5652 0.5783h 0.2497 c 0.0526,-0.0000 0.1052,0.0394 0.1052 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.8938,-0.0263 -1.4196 -0.0263c -0.4600,-0.0000 -1.3538,0.0263 -1.3538 0.0263l -0.0263,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0394,-0.1052 0.1052 -0.1052h 0.2497 c 0.4469,-0.0000 0.5652,-0.1972 0.5652 -0.5783v -2.9311 c 0.0000,-1.0647 -0.2892,-1.3144 -1.0252 -1.3144c -0.3812,-0.0000 -0.9464,0.3417 -1.5773 0.9595v 3.2860 c 0.0000,0.3812 0.1314,0.5783 0.5652 0.5783h 0.2497 c 0.0526,-0.0000 0.1052,0.0394 0.1052 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.8938,-0.0263 -1.4064 -0.0263c -0.4732,-0.0000 -1.3538,0.0263 -1.3538 0.0263l -0.0263,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0263,-0.1052 0.0920 -0.1052h 0.2497 c 0.4469,-0.0000 0.5652,-0.1972 0.5652 -0.5783v -6.5852 c 0.0000,-0.7492 -0.1183,-0.9595 -0.3812 -0.9595l -0.4338,0.0526 c -0.0394,-0.0000 -0.0657,-0.0263 -0.0657 -0.0657l -0.0263,-0.3286 c 0.2103,-0.0000 0.6835,-0.0789 0.9069 -0.1183c 0.2366,-0.0526 0.4338,-0.1052 0.6966 -0.2234h 0.2892 ZM 284.8129,360.1625 ZM 286.9685,355.0232 v 3.3649 c 0.0000,0.8149 0.0789,1.2093 0.4338 1.2093c 0.3417,-0.0000 0.6046,-0.1052 0.9464 -0.3680l 0.2366,0.2234 c -0.5126,0.5783 -1.0384,0.8675 -1.6430 0.8675c -0.6046,-0.0000 -0.9595,-0.3680 -0.9595 -1.3013v -3.9958 h -0.8544 c -0.0394,-0.0000 -0.0526,-0.0131 -0.0526 -0.0526v -0.4075 c 0.0000,-0.0394 0.0131,-0.0526 0.0394 -0.0526c 0.8807,-0.0000 1.0910,-0.5126 1.0910 -1.5116v -0.2497 l 0.7624,-0.2629 v 2.0242 h 1.4458 c 0.0657,-0.0000 0.1052,0.0263 0.1052 0.0789v 0.2629 c 0.0000,0.1183 -0.1840,0.1709 -0.3155 0.1709h -1.2355 ZM 288.7824,360.1625 ZM 290.1494,358.9138 c 0.5258,-0.0000 0.8675,0.5126 0.8675 1.3013c 0.0000,0.9201 -0.6572,1.3538 -1.4458 1.4984l -0.0657,-0.3286 c 0.6835,-0.1709 0.9989,-0.5652 0.9989 -0.8412c 0.0000,-0.3023 -0.2234,-0.3549 -0.4732 -0.3812c -0.2366,-0.0394 -0.5783,-0.1446 -0.5783 -0.5783c 0.0000,-0.3680 0.2892,-0.6703 0.6966 -0.6703ZM 294.9470,360.1625 ZM 299.7314,359.2161 v -2.8785 c 0.0000,-0.9201 -0.1577,-1.3538 -0.8544 -1.3538c -0.5783,-0.0000 -1.0778,0.2234 -1.7482 1.0121v 3.2203 c 0.0000,0.3812 0.1314,0.5783 0.5652 0.5783h 0.1840 c 0.0657,-0.0000 0.1052,0.0394 0.1052 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.8281,-0.0263 -1.3407 -0.0263c -0.4732,-0.0000 -1.3670,0.0263 -1.3670 0.0263l -0.0263,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0394,-0.1052 0.1052 -0.1052h 0.2497 c 0.4469,-0.0000 0.5652,-0.1972 0.5652 -0.5783v -3.2729 c 0.0000,-0.7098 -0.1052,-0.8018 -0.2892 -0.8018c -0.1709,-0.0000 -0.3286,0.0131 -0.5520 0.0657l -0.0657,-0.3680 c 0.5520,-0.0920 0.9464,-0.1577 1.3538 -0.3812c 0.1446,-0.0657 0.2497,-0.1052 0.3417 -0.1052h 0.1972 l -0.0394,1.1698 h 0.0394 c 0.8412,-0.9858 1.4721,-1.1698 2.1425 -1.1698c 1.1830,-0.0000 1.4327,0.9069 1.4327 2.0768v 2.7865 c 0.0000,0.3812 0.1446,0.5783 0.5652 0.5783h 0.2497 c 0.0657,-0.0000 0.1183,0.0394 0.1183 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.9069,-0.0263 -1.4196 -0.0263c -0.4600,-0.0000 -1.2881,0.0263 -1.2881 0.0263l -0.0263,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0394,-0.1052 0.1052 -0.1052h 0.1840 c 0.4338,-0.0000 0.5652,-0.1972 0.5652 -0.5783ZM 301.7819,360.1625 ZM 302.2288,357.4680 c 0.0000,-1.8007 0.9727,-3.1151 2.7208 -3.1151c 1.9453,-0.0000 2.6945,1.6299 2.6945 2.9968c 0.0000,1.3144 -0.8544,2.9706 -2.7208 2.9706c -1.7613,-0.0000 -2.6945,-1.5116 -2.6945 -2.8523ZM 302.2288,357.4680 ZM 304.8050,354.7866 c -1.0515,-0.0000 -1.5379,1.2355 -1.5379 2.3791c 0.0000,1.0121 0.5783,2.6945 1.8796 2.6945c 0.5915,-0.0000 1.4590,-0.3549 1.4590 -2.0899c 0.0000,-1.9322 -0.7229,-2.9837 -1.8007 -2.9837ZM 308.0779,360.1625 ZM 312.8623,359.2161 v -2.8785 c 0.0000,-0.9201 -0.1577,-1.3538 -0.8544 -1.3538c -0.5783,-0.0000 -1.0778,0.2234 -1.7482 1.0121v 3.2203 c 0.0000,0.3812 0.1314,0.5783 0.5652 0.5783h 0.1840 c 0.0657,-0.0000 0.1052,0.0394 0.1052 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.8281,-0.0263 -1.3407 -0.0263c -0.4732,-0.0000 -1.3670,0.0263 -1.3670 0.0263l -0.0263,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0394,-0.1052 0.1052 -0.1052h 0.2497 c 0.4469,-0.0000 0.5652,-0.1972 0.5652 -0.5783v -3.2729 c 0.0000,-0.7098 -0.1052,-0.8018 -0.2892 -0.8018c -0.1709,-0.0000 -0.3286,0.0131 -0.5520 0.0657l -0.0657,-0.3680 c 0.5520,-0.0920 0.9464,-0.1577 1.3538 -0.3812c 0.1446,-0.0657 0.2497,-0.1052 0.3417 -0.1052h 0.1972 l -0.0394,1.1698 h 0.0394 c 0.8412,-0.9858 1.4721,-1.1698 2.1425 -1.1698c 1.1830,-0.0000 1.4327,0.9069 1.4327 2.0768v 2.7865 c 0.0000,0.3812 0.1446,0.5783 0.5652 0.5783h 0.2497 c 0.0657,-0.0000 0.1183,0.0394 0.1183 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.9069,-0.0263 -1.4196 -0.0263c -0.4600,-0.0000 -1.2881,0.0263 -1.2881 0.0263l -0.0263,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0394,-0.1052 0.1052 -0.1052h 0.1840 c 0.4338,-0.0000 0.5652,-0.1972 0.5652 -0.5783ZM 314.9128,360.1625 ZM 318.5142,357.0605 h -2.9706 c -0.1183,-0.0000 -0.1972,-0.1052 -0.1972 -0.2234c 0.0000,-0.2103 0.1709,-0.4863 0.3286 -0.4863h 3.0100 c 0.1314,-0.0000 0.1840,0.1183 0.1840 0.2366c 0.0000,0.1446 -0.1840,0.4732 -0.3549 0.4732ZM 319.2897,360.1625 ZM 320.7881,356.5216 h 2.4185 c 0.1314,-0.0000 0.1840,-0.0657 0.1840 -0.1840c 0.0000,-1.2224 -0.6178,-1.5379 -1.0910 -1.5379c -0.3023,-0.0000 -1.2881,0.1183 -1.5116 1.7219ZM 320.7881,356.5216 ZM 324.2582,358.9401 l 0.2629,0.2103 c -0.4995,0.6835 -1.2750,1.1698 -2.2213 1.1698c -1.8007,-0.0000 -2.5631,-1.3407 -2.5631 -2.7734c 0.0000,-1.9979 1.3144,-3.1940 2.5631 -3.1940c 1.7350,-0.0000 2.1425,1.3538 2.1425 2.4579c 0.0000,0.1446 -0.0920,0.2234 -0.2366 0.2234h -3.4569 c -0.0131,0.0789 -0.0131,0.1577 -0.0131 0.2629c 0.0000,1.3407 0.9332,2.3791 1.8796 2.3791c 0.7229,-0.0000 1.1830,-0.2366 1.6430 -0.7361ZM 324.9154,360.1625 ZM 329.7655,358.3223 l 0.3549,-0.0131 c 0.0394,0.3286 0.1972,0.9464 0.4732 1.2618c 0.1314,0.1446 0.3549,0.3812 0.8412 0.3812c 0.4338,-0.0000 1.0252,-0.4075 1.0252 -1.0121c 0.0000,-0.5652 -0.2629,-0.9332 -1.3013 -1.3801c -0.9595,-0.4206 -1.3933,-0.7098 -1.3933 -1.6956c 0.0000,-0.8281 0.7229,-1.5116 1.7482 -1.5116c 0.6572,-0.0000 1.0778,0.1183 1.4984 0.3286c 0.0789,0.4206 0.1183,0.8675 0.1314 1.3407l -0.3417,0.0131 c -0.2760,-1.0778 -0.9989,-1.2881 -1.2750 -1.2881c -0.4995,-0.0000 -0.9464,0.2760 -0.9464 0.9201c 0.0000,0.5258 0.1840,0.7755 0.8938 1.0384c 1.0647,0.3943 1.8665,0.8807 1.8665 1.9322c 0.0000,1.2487 -1.2881,1.6824 -1.8665 1.6824c -0.4600,-0.0000 -0.7229,-0.0526 -1.0647 -0.1446c -0.0789,-0.0131 -0.1577,-0.0263 -0.2497 -0.0263c -0.0657,-0.0000 -0.1709,0.0131 -0.3023 0.0394c 0.0000,-0.5520 -0.0394,-1.2224 -0.0920 -1.8665ZM 329.7655,358.3223 ZM 325.5463,358.3223 l 0.3549,-0.0131 c 0.0394,0.3286 0.1709,0.9595 0.4732 1.2618c 0.1314,0.1446 0.4206,0.3812 0.9069 0.3812c 0.4600,-0.0000 1.0121,-0.3943 1.0121 -1.0121c 0.0000,-0.5652 -0.1840,-0.9332 -1.2224 -1.3801c -0.9595,-0.4206 -1.3933,-0.7098 -1.3933 -1.6956c 0.0000,-0.8281 0.7755,-1.5116 1.7482 -1.5116c 0.6572,-0.0000 1.0121,0.1183 1.4196 0.3286c 0.0789,0.4206 0.1314,0.8675 0.1446 1.3407l -0.3549,0.0131 c -0.2629,-1.0778 -0.9332,-1.2881 -1.2093 -1.2881c -0.4995,-0.0000 -0.9464,0.2103 -0.9464 0.9201c 0.0000,0.5258 0.1840,0.7755 0.9069 1.0384c 1.0647,0.3943 1.8007,0.8807 1.8007 1.9322c 0.0000,1.2487 -1.2618,1.6824 -1.8796 1.6824c -0.4600,-0.0000 -0.7755,-0.0526 -1.1172 -0.1446c -0.0920,-0.0131 -0.1577,-0.0263 -0.2497 -0.0263c -0.0657,-0.0000 -0.1840,0.0131 -0.3023 0.0394c 0.0000,-0.5520 -0.0394,-1.2224 -0.0920 -1.8665ZM 333.9716,360.1625 ZM 335.4700,356.5216 h 2.4185 c 0.1314,-0.0000 0.1840,-0.0657 0.1840 -0.1840c 0.0000,-1.2224 -0.6178,-1.5379 -1.0910 -1.5379c -0.3023,-0.0000 -1.2881,0.1183 -1.5116 1.7219ZM 335.4700,356.5216 ZM 338.9401,358.9401 l 0.2629,0.2103 c -0.4995,0.6835 -1.2750,1.1698 -2.2213 1.1698c -1.8007,-0.0000 -2.5631,-1.3407 -2.5631 -2.7734c 0.0000,-1.9979 1.3144,-3.1940 2.5631 -3.1940c 1.7350,-0.0000 2.1425,1.3538 2.1425 2.4579c 0.0000,0.1446 -0.0920,0.2234 -0.2366 0.2234h -3.4569 c -0.0131,0.0789 -0.0131,0.1577 -0.0131 0.2629c 0.0000,1.3407 0.9332,2.3791 1.8796 2.3791c 0.7229,-0.0000 1.1830,-0.2366 1.6430 -0.7361ZM 339.5973,360.1625 ZM 344.3817,359.2161 v -2.8785 c 0.0000,-0.9201 -0.1577,-1.3538 -0.8544 -1.3538c -0.5783,-0.0000 -1.0778,0.2234 -1.7482 1.0121v 3.2203 c 0.0000,0.3812 0.1314,0.5783 0.5652 0.5783h 0.1840 c 0.0657,-0.0000 0.1052,0.0394 0.1052 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.8281,-0.0263 -1.3407 -0.0263c -0.4732,-0.0000 -1.3670,0.0263 -1.3670 0.0263l -0.0263,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0394,-0.1052 0.1052 -0.1052h 0.2497 c 0.4469,-0.0000 0.5652,-0.1972 0.5652 -0.5783v -3.2729 c 0.0000,-0.7098 -0.1052,-0.8018 -0.2892 -0.8018c -0.1709,-0.0000 -0.3286,0.0131 -0.5520 0.0657l -0.0657,-0.3680 c 0.5520,-0.0920 0.9464,-0.1577 1.3538 -0.3812c 0.1446,-0.0657 0.2497,-0.1052 0.3417 -0.1052h 0.1972 l -0.0394,1.1698 h 0.0394 c 0.8412,-0.9858 1.4721,-1.1698 2.1425 -1.1698c 1.1830,-0.0000 1.4327,0.9069 1.4327 2.0768v 2.7865 c 0.0000,0.3812 0.1446,0.5783 0.5652 0.5783h 0.2497 c 0.0657,-0.0000 0.1183,0.0394 0.1183 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.9069,-0.0263 -1.4196 -0.0263c -0.4600,-0.0000 -1.2881,0.0263 -1.2881 0.0263l -0.0263,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0394,-0.1052 0.1052 -0.1052h 0.1840 c 0.4338,-0.0000 0.5652,-0.1972 0.5652 -0.5783ZM 346.4322,360.1625 ZM 348.5878,355.0232 v 3.3649 c 0.0000,0.8149 0.0789,1.2093 0.4338 1.2093c 0.3417,-0.0000 0.6046,-0.1052 0.9464 -0.3680l 0.2366,0.2234 c -0.5126,0.5783 -1.0384,0.8675 -1.6430 0.8675c -0.6046,-0.0000 -0.9595,-0.3680 -0.9595 -1.3013v -3.9958 h -0.8544 c -0.0394,-0.0000 -0.0526,-0.0131 -0.0526 -0.0526v -0.4075 c 0.0000,-0.0394 0.0131,-0.0526 0.0394 -0.0526c 0.8807,-0.0000 1.0910,-0.5126 1.0910 -1.5116v -0.2497 l 0.7624,-0.2629 v 2.0242 h 1.4458 c 0.0657,-0.0000 0.1052,0.0263 0.1052 0.0789v 0.2629 c 0.0000,0.1183 -0.1840,0.1709 -0.3155 0.1709h -1.2355 ZM 350.4017,360.1625 ZM 351.4269,352.6572 c 0.0000,-0.3417 0.2760,-0.6309 0.6178 -0.6309c 0.3549,-0.0000 0.6309,0.2892 0.6309 0.6309c 0.0000,0.3549 -0.2760,0.6309 -0.6309 0.6309c -0.3417,-0.0000 -0.6178,-0.2760 -0.6178 -0.6309ZM 351.4269,352.6572 ZM 352.6756,359.2161 c 0.0000,0.3812 0.1446,0.5783 0.5652 0.5783h 0.2497 c 0.0657,-0.0000 0.1183,0.0394 0.1183 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.9069,-0.0263 -1.4196 -0.0263c -0.4600,-0.0000 -1.3538,0.0263 -1.3538 0.0263l -0.0263,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0394,-0.1052 0.1052 -0.1052h 0.2497 c 0.4338,-0.0000 0.5652,-0.1972 0.5652 -0.5783v -3.2729 c 0.0000,-0.6966 -0.1183,-0.8018 -0.3023 -0.8018c -0.1709,-0.0000 -0.3286,0.0131 -0.5520 0.0657l -0.0657,-0.3680 c 0.8412,-0.1446 0.9858,-0.1972 1.3670 -0.3812c 0.1446,-0.0526 0.2366,-0.1052 0.3286 -0.1052h 0.1972 v 4.8633 ZM 353.8717,360.1625 ZM 357.6966,356.9422 l -1.0384,0.2629 c -1.1567,0.3549 -1.3275,0.9595 -1.3275 1.5510c 0.0000,0.4075 0.1972,1.0252 1.0252 1.0252c 0.3943,-0.0000 0.9989,-0.3812 1.3407 -0.6703v -2.1688 ZM 357.6966,356.9422 ZM 358.5378,360.3202 c -0.4995,-0.0000 -0.7755,-0.4469 -0.8281 -0.7624l -0.3023,0.2103 c -0.6046,0.4206 -0.8281,0.5520 -1.4327 0.5520c -0.9201,-0.0000 -1.5904,-0.5258 -1.5904 -1.5116c 0.0000,-0.9989 0.8544,-1.6824 2.1030 -1.9979l 1.2093,-0.3023 c 0.0000,-1.4853 -0.6835,-1.7613 -1.1304 -1.7613c -0.4995,-0.0000 -1.0778,0.2234 -1.0778 0.6309c 0.0000,0.1446 0.0263,0.2234 0.0394 0.2629c 0.0263,0.0526 0.0394,0.1446 0.0394 0.2366c 0.0000,0.1709 -0.1314,0.4338 -0.5126 0.4338c -0.3155,-0.0000 -0.5258,-0.2103 -0.5258 -0.5258c 0.0000,-0.7624 1.2355,-1.4327 2.0768 -1.4327c 0.9595,-0.0000 2.0636,0.3943 2.0636 2.2608v 1.9322 c 0.0000,0.8018 0.0131,1.1435 0.3155 1.1435c 0.2892,-0.0000 0.3680,-0.3680 0.3812 -0.6572l 0.3286,0.0657 c -0.0789,0.9595 -0.4863,1.2224 -1.1567 1.2224ZM 359.7997,360.1625 ZM 361.0484,359.2161 v -6.5852 c 0.0000,-0.7492 -0.1314,-0.9595 -0.3943 -0.9595l -0.4206,0.0526 c -0.0394,-0.0000 -0.0789,-0.0263 -0.0789 -0.0657l -0.0263,-0.3286 c 0.2103,-0.0000 0.6966,-0.0789 0.9201 -0.1183c 0.2366,-0.0526 0.4206,-0.1052 0.6835 -0.2234h 0.2892 v 8.2282 c 0.0000,0.3812 0.1446,0.5783 0.5652 0.5783h 0.3155 c 0.0526,-0.0000 0.1052,0.0394 0.1052 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.9595,-0.0263 -1.4721 -0.0263c -0.4600,-0.0000 -1.4196,0.0263 -1.4196 0.0263l -0.0131,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0263,-0.1052 0.0920 -0.1052h 0.3155 c 0.4338,-0.0000 0.5652,-0.1972 0.5652 -0.5783ZM 366.5031,360.1625 ZM 371.2876,359.2161 v -2.8785 c 0.0000,-0.9201 -0.1577,-1.3538 -0.8544 -1.3538c -0.5783,-0.0000 -1.0778,0.2234 -1.7482 1.0121v 3.2203 c 0.0000,0.3812 0.1314,0.5783 0.5652 0.5783h 0.1840 c 0.0657,-0.0000 0.1052,0.0394 0.1052 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.8281,-0.0263 -1.3407 -0.0263c -0.4732,-0.0000 -1.3670,0.0263 -1.3670 0.0263l -0.0263,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0394,-0.1052 0.1052 -0.1052h 0.2497 c 0.4469,-0.0000 0.5652,-0.1972 0.5652 -0.5783v -3.2729 c 0.0000,-0.7098 -0.1052,-0.8018 -0.2892 -0.8018c -0.1709,-0.0000 -0.3286,0.0131 -0.5520 0.0657l -0.0657,-0.3680 c 0.5520,-0.0920 0.9464,-0.1577 1.3538 -0.3812c 0.1446,-0.0657 0.2497,-0.1052 0.3417 -0.1052h 0.1972 l -0.0394,1.1698 h 0.0394 c 0.8412,-0.9858 1.4721,-1.1698 2.1425 -1.1698c 1.1830,-0.0000 1.4327,0.9069 1.4327 2.0768v 2.7865 c 0.0000,0.3812 0.1446,0.5783 0.5652 0.5783h 0.2497 c 0.0657,-0.0000 0.1183,0.0394 0.1183 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.9069,-0.0263 -1.4196 -0.0263c -0.4600,-0.0000 -1.2881,0.0263 -1.2881 0.0263l -0.0263,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0394,-0.1052 0.1052 -0.1052h 0.1840 c 0.4338,-0.0000 0.5652,-0.1972 0.5652 -0.5783ZM 373.3380,360.1625 ZM 373.7849,357.4680 c 0.0000,-1.8007 0.9727,-3.1151 2.7208 -3.1151c 1.9453,-0.0000 2.6945,1.6299 2.6945 2.9968c 0.0000,1.3144 -0.8544,2.9706 -2.7208 2.9706c -1.7613,-0.0000 -2.6945,-1.5116 -2.6945 -2.8523ZM 373.7849,357.4680 ZM 376.3612,354.7866 c -1.0515,-0.0000 -1.5379,1.2355 -1.5379 2.3791c 0.0000,1.0121 0.5783,2.6945 1.8796 2.6945c 0.5915,-0.0000 1.4590,-0.3549 1.4590 -2.0899c 0.0000,-1.9322 -0.7229,-2.9837 -1.8007 -2.9837ZM 379.6340,360.1625 ZM 381.7897,355.0232 v 3.3649 c 0.0000,0.8149 0.0789,1.2093 0.4338 1.2093c 0.3417,-0.0000 0.6046,-0.1052 0.9464 -0.3680l 0.2366,0.2234 c -0.5126,0.5783 -1.0384,0.8675 -1.6430 0.8675c -0.6046,-0.0000 -0.9595,-0.3680 -0.9595 -1.3013v -3.9958 h -0.8544 c -0.0394,-0.0000 -0.0526,-0.0131 -0.0526 -0.0526v -0.4075 c 0.0000,-0.0394 0.0131,-0.0526 0.0394 -0.0526c 0.8807,-0.0000 1.0910,-0.5126 1.0910 -1.5116v -0.2497 l 0.7624,-0.2629 v 2.0242 h 1.4458 c 0.0657,-0.0000 0.1052,0.0263 0.1052 0.0789v 0.2629 c 0.0000,0.1183 -0.1840,0.1709 -0.3155 0.1709h -1.2355 ZM 383.6035,360.1625 ZM 385.1020,356.5216 h 2.4185 c 0.1314,-0.0000 0.1840,-0.0657 0.1840 -0.1840c 0.0000,-1.2224 -0.6178,-1.5379 -1.0910 -1.5379c -0.3023,-0.0000 -1.2881,0.1183 -1.5116 1.7219ZM 385.1020,356.5216 ZM 388.5720,358.9401 l 0.2629,0.2103 c -0.4995,0.6835 -1.2750,1.1698 -2.2213 1.1698c -1.8007,-0.0000 -2.5631,-1.3407 -2.5631 -2.7734c 0.0000,-1.9979 1.3144,-3.1940 2.5631 -3.1940c 1.7350,-0.0000 2.1425,1.3538 2.1425 2.4579c 0.0000,0.1446 -0.0920,0.2234 -0.2366 0.2234h -3.4569 c -0.0131,0.0789 -0.0131,0.1577 -0.0131 0.2629c 0.0000,1.3407 0.9332,2.3791 1.8796 2.3791c 0.7229,-0.0000 1.1830,-0.2366 1.6430 -0.7361Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 39.5006,208.7184 ZM 38.0811,206.8454 l -9.8777,-0.0000 c -1.1238,-0.0000 -1.4393,0.1972 -1.4393 0.5915l 0.0789,0.6309 c -0.0000,0.0591 -0.0394,0.1183 -0.0986 0.1183l -0.4929,0.0394 c 0.0000,-0.3155 -0.1183,-1.0450 -0.1774 -1.3801c -0.0789,-0.3549 -0.1577,-0.6309 -0.3352 -1.0252l 0.0000,-0.4338 l 12.3423,0.0000 c 0.5718,0.0000 0.8675,-0.2169 0.8675 -0.8478l 0.0000,-0.4732 c 0.0000,-0.0789 0.0591,-0.1577 0.1577 -0.1577l 0.3746,0.0000 l 0.0394,0.0394 c 0.0000,-0.0000 -0.0394,1.4393 -0.0394 2.2082c -0.0000,0.6901 0.0394,2.1293 0.0394 2.1293l -0.0394,0.0197 l -0.3746,-0.0000 c -0.0986,-0.0000 -0.1577,-0.0394 -0.1577 -0.1380l 0.0000,-0.4732 c 0.0000,-0.6506 -0.2957,-0.8478 -0.8675 -0.8478ZM 39.5006,203.5923 ZM 34.0393,201.3446 l 0.0000,-3.6278 c 0.0000,-0.1972 -0.0986,-0.2760 -0.2760 -0.2760c -1.8336,-0.0000 -2.3068,0.9267 -2.3068 1.6364c -0.0000,0.4535 0.1774,1.9322 2.5828 2.2673ZM 34.0393,201.3446 ZM 37.6671,196.1396 l 0.3155,-0.3943 c 1.0252,0.7492 1.7547,1.9125 1.7547 3.3320c -0.0000,2.7011 -2.0110,3.8446 -4.1601 3.8446c -2.9968,-0.0000 -4.7910,-1.9716 -4.7910 -3.8446c 0.0000,-2.6025 2.0308,-3.2137 3.6869 -3.2137c 0.2169,0.0000 0.3352,0.1380 0.3352 0.3549l -0.0000,5.1853 c 0.1183,0.0197 0.2366,0.0197 0.3943 0.0197c 2.0110,0.0000 3.5686,-1.3998 3.5686 -2.8194c 0.0000,-1.0844 -0.3549,-1.7744 -1.1041 -2.4645ZM 39.5006,195.1538 ZM 38.0811,193.3399 l -6.2894,-0.0000 l -0.0000,1.3604 c -0.0000,0.0789 -0.0197,0.0986 -0.0986 0.0986l -0.2760,-0.0000 c -0.1577,-0.0000 -0.3943,-0.0986 -0.3943 -0.4535l 0.0000,-1.0055 l -0.7689,-0.0000 c -3.0757,-0.0000 -4.5150,-1.5970 -4.5150 -3.2532c 0.0000,-0.7492 0.1972,-1.2618 0.5323 -1.7547c 0.2957,-0.3943 0.6309,-0.5718 0.9464 -0.5718c 0.4140,0.0000 0.7098,0.2957 0.7098 0.6703c -0.0000,0.3943 -0.2169,0.6506 -0.5520 0.8084c -0.6506,0.2563 -0.9661,0.6309 -0.9661 1.2224c -0.0000,0.6506 0.4732,1.3998 3.5095 1.3998l 1.1041,0.0000 l 0.0000,-2.5237 c 0.0000,-1.5379 -0.7098,-1.7153 -2.2673 -1.7153l -0.3746,-0.0000 l -0.3943,-1.1238 l 3.0363,0.0000 l 0.0000,-2.2082 l 0.7689,0.0000 l -0.0000,2.2082 l 5.0276,0.0000 c 1.2224,0.0000 1.7942,-0.1380 1.7942 -0.6703c 0.0000,-0.5520 -0.2957,-1.1041 -0.5323 -1.3998l 0.2760,-0.3155 c 0.7886,0.5126 1.3604,1.3407 1.3604 2.3265c -0.0000,0.9069 -0.5520,1.5181 -1.9716 1.5181l -5.9543,-0.0000 l -0.0000,3.9038 l 6.2894,0.0000 c 0.5718,0.0000 0.8675,-0.1972 0.8675 -0.8478l 0.0000,-0.6506 c 0.0000,-0.0789 0.0591,-0.1577 0.1577 -0.1577l 0.3746,0.0000 l 0.0394,0.0394 c 0.0000,-0.0000 -0.0394,1.6167 -0.0394 2.3856c -0.0000,0.7098 0.0394,2.0505 0.0394 2.0505l -0.0394,0.0394 l -0.3746,-0.0000 c -0.0986,-0.0000 -0.1577,-0.0591 -0.1577 -0.1577l 0.0000,-0.3746 c 0.0000,-0.6703 -0.2957,-0.8478 -0.8675 -0.8478ZM 39.5006,178.8880 ZM 34.6702,173.1507 l 0.3943,1.5576 c 0.5323,1.7350 1.4393,1.9913 2.3265 1.9913c 0.6112,0.0000 1.5379,-0.2957 1.5379 -1.5379c 0.0000,-0.5915 -0.5718,-1.4984 -1.0055 -2.0110l -3.2532,-0.0000 ZM 34.6702,173.1507 ZM 39.7372,171.8888 c -0.0000,0.7492 -0.6703,1.1632 -1.1435 1.2421l 0.3155,0.4535 c 0.6309,0.9069 0.8281,1.2421 0.8281 2.1491c -0.0000,1.3801 -0.7886,2.3856 -2.2673 2.3856c -1.4984,-0.0000 -2.5237,-1.2815 -2.9968 -3.1546l -0.4535,-1.8139 c -2.2279,-0.0000 -2.6420,1.0252 -2.6420 1.6956c -0.0000,0.7492 0.3352,1.6167 0.9464 1.6167c 0.2169,0.0000 0.3352,-0.0394 0.3943 -0.0591c 0.0789,-0.0394 0.2169,-0.0591 0.3549 -0.0591c 0.2563,0.0000 0.6506,0.1972 0.6506 0.7689c -0.0000,0.4732 -0.3155,0.7886 -0.7886 0.7886c -1.1435,-0.0000 -2.1491,-1.8533 -2.1491 -3.1151c 0.0000,-1.4393 0.5915,-3.0954 3.3912 -3.0954l 2.8983,0.0000 c 1.2027,0.0000 1.7153,-0.0197 1.7153 -0.4732c 0.0000,-0.4338 -0.5520,-0.5520 -0.9858 -0.5718l 0.0986,-0.4929 c 1.4393,0.1183 1.8336,0.7295 1.8336 1.7350ZM 39.5006,169.9961 ZM 31.5748,166.1120 c -0.0000,0.3943 0.0986,0.4732 0.2366 0.4732c 0.0986,0.0000 0.2760,-0.0789 0.6309 -0.2957l 1.7744,-1.2027 c 0.1183,-0.0591 0.1774,-0.1183 0.1774 -0.1972c 0.0000,-0.0591 -0.0394,-0.0986 -0.1380 -0.1774l -1.7942,-1.2815 c -0.2760,-0.2169 -0.4929,-0.3352 -0.6506 -0.3352c -0.1577,-0.0000 -0.2366,0.1380 -0.2366 0.4140l -0.0000,0.3155 c -0.0000,0.0591 -0.0394,0.1183 -0.1380 0.1183l -0.3746,-0.0000 l -0.0591,-0.0591 c 0.0000,-0.0000 0.0394,-0.9267 0.0394 -1.5379c 0.0000,-0.6309 -0.0394,-1.5970 -0.0394 -1.5970l 0.0394,-0.0197 l 0.3746,0.0000 c 0.1380,0.0000 0.1577,0.1183 0.1577 0.2366c -0.0000,0.7295 0.2366,1.0252 1.1632 1.7547l 2.1096,1.6561 c 0.0591,0.0394 0.0986,0.0591 0.1380 0.0591c 0.0394,0.0000 0.0986,-0.0197 0.1577 -0.0591l 2.5039,-1.7744 c 1.2815,-0.9069 1.3013,-1.1632 1.3013 -1.7942c 0.0000,-0.1972 0.0394,-0.2760 0.1577 -0.2760l 0.3746,0.0000 l 0.0394,0.0197 c 0.0000,-0.0000 -0.0394,1.0647 -0.0394 1.7350c -0.0000,0.8084 0.0394,2.0505 0.0394 2.0505l -0.0394,0.0394 l -0.3746,-0.0000 c -0.0986,-0.0000 -0.1577,-0.0394 -0.1577 -0.1380l 0.0000,-0.2366 c 0.0000,-0.3155 -0.0591,-0.4535 -0.2169 -0.4535c -0.1774,-0.0000 -0.4732,0.2169 -0.8872 0.5323l -1.5773,1.1435 c -0.0986,0.0789 -0.1380,0.1183 -0.1380 0.1774c -0.0000,0.0394 0.0591,0.0986 0.1774 0.1774l 1.7942,1.2421 c 0.3943,0.2957 0.4929,0.3549 0.6309 0.3549c 0.1380,0.0000 0.2169,-0.1183 0.2169 -0.4140l 0.0000,-0.2760 c 0.0000,-0.0986 0.0591,-0.1380 0.1577 -0.1380l 0.3746,0.0000 l 0.0394,0.0394 c 0.0000,-0.0000 -0.0394,1.0252 -0.0394 1.6561c -0.0000,0.5718 0.0394,1.4787 0.0394 1.4787l -0.0394,0.0394 l -0.3352,-0.0000 c -0.1183,-0.0000 -0.1972,-0.0789 -0.1972 -0.2563c 0.0000,-0.4732 -0.0986,-0.9267 -1.1632 -1.7547l -2.1293,-1.6561 c -0.0394,-0.0197 -0.0789,-0.0394 -0.1380 -0.0394c -0.0591,-0.0000 -0.0986,0.0197 -0.1577 0.0591l -2.5039,1.7153 c -0.8084,0.5520 -1.2815,0.9069 -1.2815 1.5970c -0.0000,0.1380 -0.0591,0.2760 -0.1380 0.2760l -0.3746,-0.0000 l -0.0591,-0.0394 l 0.0394,-1.5576 l -0.0394,-2.1885 l 0.0591,-0.0591 l 0.3549,0.0000 c 0.0986,0.0000 0.1577,0.0789 0.1577 0.1577l -0.0000,0.2957 ZM 39.5006,160.1972 ZM 28.2428,158.6593 c -0.5126,-0.0000 -0.9464,-0.4140 -0.9464 -0.9267c 0.0000,-0.5323 0.4338,-0.9464 0.9464 -0.9464c 0.5323,0.0000 0.9464,0.4140 0.9464 0.9464c -0.0000,0.5126 -0.4140,0.9267 -0.9464 0.9267ZM 28.2428,158.6593 ZM 38.0811,156.7863 c 0.5718,0.0000 0.8675,-0.2169 0.8675 -0.8478l 0.0000,-0.3746 c 0.0000,-0.0986 0.0591,-0.1774 0.1577 -0.1774l 0.3746,0.0000 l 0.0394,0.0394 c 0.0000,-0.0000 -0.0394,1.3604 -0.0394 2.1293c -0.0000,0.6901 0.0394,2.0308 0.0394 2.0308l -0.0394,0.0394 l -0.3746,-0.0000 c -0.0986,-0.0000 -0.1577,-0.0591 -0.1577 -0.1577l 0.0000,-0.3746 c 0.0000,-0.6506 -0.2957,-0.8478 -0.8675 -0.8478l -4.9093,-0.0000 c -1.0450,-0.0000 -1.2027,0.1774 -1.2027 0.4535c -0.0000,0.2563 0.0197,0.4929 0.0986 0.8281l -0.5520,0.0986 c -0.2169,-1.2618 -0.2957,-1.4787 -0.5718 -2.0505c -0.0789,-0.2169 -0.1577,-0.3549 -0.1577 -0.4929l 0.0000,-0.2957 l 7.2949,0.0000 ZM 39.5006,154.9922 ZM 36.7404,154.1444 l -0.0197,-0.5323 c 0.4929,-0.0591 1.4393,-0.2760 1.8927 -0.7098c 0.2169,-0.1972 0.5718,-0.7295 0.5718 -1.4590c 0.0000,-0.6901 -0.5520,-1.7153 -1.5181 -1.7153c -0.8478,-0.0000 -1.4196,0.4732 -2.0899 2.0308c -0.6309,1.4393 -1.0450,2.1885 -2.5237 2.1885c -1.3210,-0.0000 -2.2673,-1.1632 -2.2673 -2.7208c 0.0000,-0.9858 0.1774,-1.7153 0.4929 -2.3265c 0.6309,-0.1183 1.3013,-0.1774 2.0110 -0.2169l 0.0197,0.5323 c -1.6167,0.4140 -1.9322,1.5970 -1.9322 2.0110c -0.0000,0.7492 0.2957,1.5181 1.3801 1.5181c 0.7886,0.0000 1.1830,-0.3746 1.5773 -1.4590c 0.5915,-1.5970 1.3013,-2.8785 2.8785 -2.8785c 1.9519,0.0000 2.5237,2.0702 2.5237 2.9968c -0.0000,0.6901 -0.0789,1.2618 -0.2169 1.7744c -0.0197,0.1380 -0.0394,0.2366 -0.0394 0.3746c -0.0000,0.0986 0.0197,0.2563 0.0591 0.4535c -0.8281,-0.0000 -1.8336,0.0591 -2.7997 0.1380ZM 39.5006,142.7485 ZM 31.7917,139.5150 l 5.0473,0.0000 c 1.2224,0.0000 1.8139,-0.1183 1.8139 -0.6506c 0.0000,-0.5126 -0.1577,-0.9069 -0.5520 -1.4196l 0.3352,-0.3549 c 0.8675,0.7689 1.3013,1.5576 1.3013 2.4645c -0.0000,0.9069 -0.5520,1.4393 -1.9519 1.4393l -5.9937,-0.0000 l -0.0000,1.2815 c -0.0000,0.0591 -0.0197,0.0789 -0.0789 0.0789l -0.6112,-0.0000 c -0.0591,-0.0000 -0.0789,-0.0197 -0.0789 -0.0591c 0.0000,-1.3210 -0.7689,-1.6364 -2.2673 -1.6364l -0.3746,-0.0000 l -0.3943,-1.1435 l 3.0363,0.0000 l 0.0000,-2.1688 c 0.0000,-0.0986 0.0394,-0.1577 0.1183 -0.1577l 0.3943,0.0000 c 0.1774,0.0000 0.2563,0.2760 0.2563 0.4732l -0.0000,1.8533 ZM 39.5006,136.7942 ZM 28.2428,135.2564 c -0.5126,-0.0000 -0.9464,-0.4140 -0.9464 -0.9267c 0.0000,-0.5323 0.4338,-0.9464 0.9464 -0.9464c 0.5323,0.0000 0.9464,0.4140 0.9464 0.9464c -0.0000,0.5126 -0.4140,0.9267 -0.9464 0.9267ZM 28.2428,135.2564 ZM 38.0811,133.3834 c 0.5718,0.0000 0.8675,-0.2169 0.8675 -0.8478l 0.0000,-0.3746 c 0.0000,-0.0986 0.0591,-0.1774 0.1577 -0.1774l 0.3746,0.0000 l 0.0394,0.0394 c 0.0000,-0.0000 -0.0394,1.3604 -0.0394 2.1293c -0.0000,0.6901 0.0394,2.0308 0.0394 2.0308l -0.0394,0.0394 l -0.3746,-0.0000 c -0.0986,-0.0000 -0.1577,-0.0591 -0.1577 -0.1577l 0.0000,-0.3746 c 0.0000,-0.6506 -0.2957,-0.8478 -0.8675 -0.8478l -4.9093,-0.0000 c -1.0450,-0.0000 -1.2027,0.1774 -1.2027 0.4535c -0.0000,0.2563 0.0197,0.4929 0.0986 0.8281l -0.5520,0.0986 c -0.2169,-1.2618 -0.2957,-1.4787 -0.5718 -2.0505c -0.0789,-0.2169 -0.1577,-0.3549 -0.1577 -0.4929l 0.0000,-0.2957 l 7.2949,0.0000 ZM 39.5006,131.5892 ZM 31.7917,128.3558 l 5.0473,0.0000 c 1.2224,0.0000 1.8139,-0.1183 1.8139 -0.6506c 0.0000,-0.5126 -0.1577,-0.9069 -0.5520 -1.4196l 0.3352,-0.3549 c 0.8675,0.7689 1.3013,1.5576 1.3013 2.4645c -0.0000,0.9069 -0.5520,1.4393 -1.9519 1.4393l -5.9937,-0.0000 l -0.0000,1.2815 c -0.0000,0.0591 -0.0197,0.0789 -0.0789 0.0789l -0.6112,-0.0000 c -0.0591,-0.0000 -0.0789,-0.0197 -0.0789 -0.0591c 0.0000,-1.3210 -0.7689,-1.6364 -2.2673 -1.6364l -0.3746,-0.0000 l -0.3943,-1.1435 l 3.0363,0.0000 l 0.0000,-2.1688 c 0.0000,-0.0986 0.0394,-0.1577 0.1183 -0.1577l 0.3943,0.0000 c 0.1774,0.0000 0.2563,0.2760 0.2563 0.4732l -0.0000,1.8533 ZM 39.5006,125.6349 ZM 38.0811,123.7619 l -9.8777,-0.0000 c -1.1238,-0.0000 -1.4393,0.1972 -1.4393 0.5915l 0.0789,0.6309 c -0.0000,0.0591 -0.0394,0.1183 -0.0986 0.1183l -0.4929,0.0394 c 0.0000,-0.3155 -0.1183,-1.0450 -0.1774 -1.3801c -0.0789,-0.3549 -0.1577,-0.6309 -0.3352 -1.0252l 0.0000,-0.4338 l 12.3423,0.0000 c 0.5718,0.0000 0.8675,-0.2169 0.8675 -0.8478l 0.0000,-0.4732 c 0.0000,-0.0789 0.0591,-0.1577 0.1577 -0.1577l 0.3746,0.0000 l 0.0394,0.0394 c 0.0000,-0.0000 -0.0394,1.4393 -0.0394 2.2082c -0.0000,0.6901 0.0394,2.1293 0.0394 2.1293l -0.0394,0.0197 l -0.3746,-0.0000 c -0.0986,-0.0000 -0.1577,-0.0394 -0.1577 -0.1380l 0.0000,-0.4732 c 0.0000,-0.6506 -0.2957,-0.8478 -0.8675 -0.8478ZM 39.5006,120.5088 ZM 34.0393,118.2611 l 0.0000,-3.6278 c 0.0000,-0.1972 -0.0986,-0.2760 -0.2760 -0.2760c -1.8336,-0.0000 -2.3068,0.9267 -2.3068 1.6364c -0.0000,0.4535 0.1774,1.9322 2.5828 2.2673ZM 34.0393,118.2611 ZM 37.6671,113.0561 l 0.3155,-0.3943 c 1.0252,0.7492 1.7547,1.9125 1.7547 3.3320c -0.0000,2.7011 -2.0110,3.8446 -4.1601 3.8446c -2.9968,-0.0000 -4.7910,-1.9716 -4.7910 -3.8446c 0.0000,-2.6025 2.0308,-3.2137 3.6869 -3.2137c 0.2169,0.0000 0.3352,0.1380 0.3352 0.3549l -0.0000,5.1853 c 0.1183,0.0197 0.2366,0.0197 0.3943 0.0197c 2.0110,0.0000 3.5686,-1.3998 3.5686 -2.8194c 0.0000,-1.0844 -0.3549,-1.7744 -1.1041 -2.4645Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 181.9049,54.9479 ZM 188.8646,43.0000 h -2.6617 c -0.4732,-0.0000 -0.7098,0.1577 -0.7098 0.6309v 4.1995 h 2.7011 c 0.6901,-0.0000 0.8675,-0.3155 0.9858 -0.8675l 0.1380,-0.5915 c 0.0000,-0.0789 0.0591,-0.1577 0.1380 -0.1577h 0.4338 c 0.0591,-0.0000 0.0789,0.0394 0.0789 0.0789c -0.0789,0.4929 -0.1577,1.2224 -0.1577 1.8730c 0.0000,0.6703 0.0986,1.5576 0.1577 1.8927l -0.0591,0.0591 h -0.4535 c -0.0986,-0.0000 -0.1577,-0.0789 -0.1577 -0.1380l -0.1183,-0.6112 c -0.0986,-0.5718 -0.3155,-0.8675 -0.9858 -0.8675h -2.7011 v 5.0276 c 0.0000,0.5323 0.2760,0.6506 0.7098 0.6506h 3.2729 c 1.4984,-0.0000 2.0702,-1.1632 2.4645 -2.5828l 0.6112,0.0986 c -0.2366,1.0252 -0.4338,2.1491 -0.5323 3.2532h -5.7965 l -1.5181,-0.0197 l -2.5237,0.0394 l -0.0394,-0.0394 v -0.3943 c 0.0000,-0.0591 0.0394,-0.1380 0.1577 -0.1380h 0.5915 c 0.7886,-0.0000 1.0252,-0.3155 1.0252 -0.8675v -9.8777 c 0.0000,-0.6112 -0.2760,-0.8872 -1.0252 -0.8872h -0.5915 c -0.1380,-0.0000 -0.1577,-0.0789 -0.1577 -0.1380v -0.3943 l 0.0394,-0.0197 l 2.5237,0.0197 l 1.5379,-0.0197 h 5.0473 c 0.0789,1.0450 0.2563,2.2476 0.4140 3.0560l -0.5718,0.0986 c -0.4338,-1.3604 -0.7886,-2.3659 -2.2673 -2.3659ZM 193.1233,54.9479 ZM 197.0074,47.0220 c -0.3943,-0.0000 -0.4732,0.0986 -0.4732 0.2366c 0.0000,0.0986 0.0789,0.2760 0.2957 0.6309l 1.2027,1.7744 c 0.0591,0.1183 0.1183,0.1774 0.1972 0.1774c 0.0591,-0.0000 0.0986,-0.0394 0.1774 -0.1380l 1.2815,-1.7942 c 0.2169,-0.2760 0.3352,-0.4929 0.3352 -0.6506c 0.0000,-0.1577 -0.1380,-0.2366 -0.4140 -0.2366h -0.3155 c -0.0591,-0.0000 -0.1183,-0.0394 -0.1183 -0.1380v -0.3746 l 0.0591,-0.0591 c 0.0000,-0.0000 0.9267,0.0394 1.5379 0.0394c 0.6309,-0.0000 1.5970,-0.0394 1.5970 -0.0394l 0.0197,0.0394 v 0.3746 c 0.0000,0.1380 -0.1183,0.1577 -0.2366 0.1577c -0.7295,-0.0000 -1.0252,0.2366 -1.7547 1.1632l -1.6561,2.1096 c -0.0394,0.0591 -0.0591,0.0986 -0.0591 0.1380c 0.0000,0.0394 0.0197,0.0986 0.0591 0.1577l 1.7744,2.5039 c 0.9069,1.2815 1.1632,1.3013 1.7942 1.3013c 0.1972,-0.0000 0.2760,0.0394 0.2760 0.1577v 0.3746 l -0.0197,0.0394 c 0.0000,-0.0000 -1.0647,-0.0394 -1.7350 -0.0394c -0.8084,-0.0000 -2.0505,0.0394 -2.0505 0.0394l -0.0394,-0.0394 v -0.3746 c 0.0000,-0.0986 0.0394,-0.1577 0.1380 -0.1577h 0.2366 c 0.3155,-0.0000 0.4535,-0.0591 0.4535 -0.2169c 0.0000,-0.1774 -0.2169,-0.4732 -0.5323 -0.8872l -1.1435,-1.5773 c -0.0789,-0.0986 -0.1183,-0.1380 -0.1774 -0.1380c -0.0394,-0.0000 -0.0986,0.0591 -0.1774 0.1774l -1.2421,1.7942 c -0.2957,0.3943 -0.3549,0.4929 -0.3549 0.6309c 0.0000,0.1380 0.1183,0.2169 0.4140 0.2169h 0.2760 c 0.0986,-0.0000 0.1380,0.0591 0.1380 0.1577v 0.3746 l -0.0394,0.0394 c 0.0000,-0.0000 -1.0252,-0.0394 -1.6561 -0.0394c -0.5718,-0.0000 -1.4787,0.0394 -1.4787 0.0394l -0.0394,-0.0394 v -0.3352 c 0.0000,-0.1183 0.0789,-0.1972 0.2563 -0.1972c 0.4732,-0.0000 0.9267,-0.0986 1.7547 -1.1632l 1.6561,-2.1293 c 0.0197,-0.0394 0.0394,-0.0789 0.0394 -0.1380c 0.0000,-0.0591 -0.0197,-0.0986 -0.0591 -0.1577l -1.7153,-2.5039 c -0.5520,-0.8084 -0.9069,-1.2815 -1.5970 -1.2815c -0.1380,-0.0000 -0.2760,-0.0591 -0.2760 -0.1380v -0.3746 l 0.0394,-0.0591 l 1.5576,0.0394 l 2.1885,-0.0394 l 0.0591,0.0591 v 0.3549 c 0.0000,0.0986 -0.0789,0.1577 -0.1577 0.1577h -0.2957 ZM 202.9222,54.9479 ZM 208.6596,50.1175 l -1.5576,0.3943 c -1.7350,0.5323 -1.9913,1.4393 -1.9913 2.3265c 0.0000,0.6112 0.2957,1.5379 1.5379 1.5379c 0.5915,-0.0000 1.4984,-0.5718 2.0110 -1.0055v -3.2532 ZM 208.6596,50.1175 ZM 209.9214,55.1845 c -0.7492,-0.0000 -1.1632,-0.6703 -1.2421 -1.1435l -0.4535,0.3155 c -0.9069,0.6309 -1.2421,0.8281 -2.1491 0.8281c -1.3801,-0.0000 -2.3856,-0.7886 -2.3856 -2.2673c 0.0000,-1.4984 1.2815,-2.5237 3.1546 -2.9968l 1.8139,-0.4535 c 0.0000,-2.2279 -1.0252,-2.6420 -1.6956 -2.6420c -0.7492,-0.0000 -1.6167,0.3352 -1.6167 0.9464c 0.0000,0.2169 0.0394,0.3352 0.0591 0.3943c 0.0394,0.0789 0.0591,0.2169 0.0591 0.3549c 0.0000,0.2563 -0.1972,0.6506 -0.7689 0.6506c -0.4732,-0.0000 -0.7886,-0.3155 -0.7886 -0.7886c 0.0000,-1.1435 1.8533,-2.1491 3.1151 -2.1491c 1.4393,-0.0000 3.0954,0.5915 3.0954 3.3912v 2.8983 c 0.0000,1.2027 0.0197,1.7153 0.4732 1.7153c 0.4338,-0.0000 0.5520,-0.5520 0.5718 -0.9858l 0.4929,0.0986 c -0.1183,1.4393 -0.7295,1.8336 -1.7350 1.8336ZM 211.8142,54.9479 ZM 223.7029,53.5283 v -4.5347 c 0.0000,-1.3210 -0.5126,-1.8139 -1.2618 -1.8139c -0.7689,-0.0000 -1.3801,0.3943 -2.3265 1.4393c 0.0394,0.2366 0.0394,0.5126 0.0394 0.7886v 4.1207 c 0.0000,0.5718 0.1972,0.8675 0.8478 0.8675h 0.3352 c 0.0986,-0.0000 0.1774,0.0591 0.1774 0.1577v 0.3746 l -0.0394,0.0394 c 0.0000,-0.0000 -1.3210,-0.0394 -2.0899 -0.0394c -0.7098,-0.0000 -2.0702,0.0394 -2.0702 0.0394l -0.0394,-0.0394 v -0.3746 c 0.0000,-0.0986 0.0591,-0.1577 0.1577 -0.1577h 0.3943 c 0.6703,-0.0000 0.8478,-0.2957 0.8478 -0.8675v -4.4953 c 0.0000,-1.3210 -0.5323,-1.8533 -1.2815 -1.8533c -0.6901,-0.0000 -1.3407,0.4929 -2.2673 1.4590v 4.8896 c 0.0000,0.5718 0.1972,0.8675 0.8478 0.8675h 0.3746 c 0.0789,-0.0000 0.1577,0.0591 0.1577 0.1577v 0.3746 l -0.0394,0.0394 c 0.0000,-0.0000 -1.3407,-0.0394 -2.1096 -0.0394c -0.7098,-0.0000 -2.0505,0.0394 -2.0505 0.0394l -0.0394,-0.0394 v -0.3746 c 0.0000,-0.0986 0.0591,-0.1577 0.1577 -0.1577h 0.3746 c 0.6703,-0.0000 0.8478,-0.2957 0.8478 -0.8675v -4.9093 c 0.0000,-1.1238 -0.1774,-1.2027 -0.4338 -1.2027c -0.2563,-0.0000 -0.4929,0.0197 -0.8281 0.0986l -0.0986,-0.5520 c 1.2421,-0.2169 1.5181,-0.2957 2.0505 -0.5718c 0.1972,-0.0986 0.3549,-0.1577 0.4929 -0.1577h 0.2957 l -0.0591,1.7153 h 0.0591 c 0.9267,-0.9858 1.7547,-1.7153 2.9771 -1.7153c 1.1041,-0.0000 1.7942,0.8084 1.9125 1.6956c 1.1435,-1.1830 2.0702,-1.6956 3.1349 -1.6956c 1.7350,-0.0000 2.0308,1.4393 2.0308 3.1940v 4.1009 c 0.0000,0.5718 0.1972,0.8675 0.8478 0.8675h 0.3746 c 0.0789,-0.0000 0.1577,0.0591 0.1577 0.1577v 0.3746 l -0.0394,0.0394 c 0.0000,-0.0000 -1.3407,-0.0394 -2.1096 -0.0394c -0.7098,-0.0000 -2.0505,0.0394 -2.0505 0.0394l -0.0394,-0.0394 v -0.3746 c 0.0000,-0.0986 0.0591,-0.1577 0.1577 -0.1577h 0.3746 c 0.6506,-0.0000 0.8478,-0.2957 0.8478 -0.8675ZM 226.7984,54.9479 ZM 229.7361,48.7571 v 4.9093 c 0.6901,0.8084 1.3407,0.8478 1.6561 0.8478c 2.1096,-0.0000 2.5828,-1.9716 2.5828 -3.6672c 0.0000,-2.3856 -0.9661,-3.7066 -2.1688 -3.7066c -0.6703,-0.0000 -1.6364,0.5718 -2.0702 1.6167ZM 229.7361,48.7571 ZM 228.2771,58.0630 v -9.7595 c 0.0000,-0.7492 -0.1774,-0.8872 -0.4535 -0.8872c -0.2563,-0.0000 -0.4929,0.0197 -0.8281 0.0986l -0.0986,-0.5520 c 1.2618,-0.2169 1.4984,-0.2957 2.0505 -0.5718c 0.2169,-0.0986 0.3549,-0.1577 0.4929 -0.1577h 0.2957 l -0.0591,1.5773 h 0.0591 c 0.9069,-1.3801 1.9716,-1.5773 2.6025 -1.5773c 1.9125,-0.0000 3.1743,1.9913 3.1743 4.0812c 0.0000,1.5970 -0.4929,2.8194 -1.3801 3.7263c -0.7689,0.7689 -1.5773,1.1435 -2.6222 1.1435c -0.7098,-0.0000 -1.2618,-0.1577 -1.7744 -0.4338v 3.3123 c 0.0000,0.5718 0.2169,0.8675 0.8478 0.8675h 0.3746 c 0.0986,-0.0000 0.1774,0.0591 0.1774 0.1577v 0.3746 l -0.0394,0.0394 c 0.0000,-0.0000 -1.3604,-0.0394 -2.1293 -0.0394c -0.6901,-0.0000 -2.0308,0.0394 -2.0308 0.0394l -0.0394,-0.0394 v -0.3746 c 0.0000,-0.0986 0.0591,-0.1577 0.1577 -0.1577h 0.3746 c 0.6506,-0.0000 0.8478,-0.2957 0.8478 -0.8675ZM 236.2424,54.9479 ZM 238.1154,53.5283 v -9.8777 c 0.0000,-1.1238 -0.1972,-1.4393 -0.5915 -1.4393l -0.6309,0.0789 c -0.0591,-0.0000 -0.1183,-0.0394 -0.1183 -0.0986l -0.0394,-0.4929 c 0.3155,-0.0000 1.0450,-0.1183 1.3801 -0.1774c 0.3549,-0.0789 0.6309,-0.1577 1.0252 -0.3352h 0.4338 v 12.3423 c 0.0000,0.5718 0.2169,0.8675 0.8478 0.8675h 0.4732 c 0.0789,-0.0000 0.1577,0.0591 0.1577 0.1577v 0.3746 l -0.0394,0.0394 c 0.0000,-0.0000 -1.4393,-0.0394 -2.2082 -0.0394c -0.6901,-0.0000 -2.1293,0.0394 -2.1293 0.0394l -0.0197,-0.0394 v -0.3746 c 0.0000,-0.0986 0.0394,-0.1577 0.1380 -0.1577h 0.4732 c 0.6506,-0.0000 0.8478,-0.2957 0.8478 -0.8675ZM 241.3685,54.9479 ZM 243.6162,49.4866 h 3.6278 c 0.1972,-0.0000 0.2760,-0.0986 0.2760 -0.2760c 0.0000,-1.8336 -0.9267,-2.3068 -1.6364 -2.3068c -0.4535,-0.0000 -1.9322,0.1774 -2.2673 2.5828ZM 243.6162,49.4866 ZM 248.8212,53.1143 l 0.3943,0.3155 c -0.7492,1.0252 -1.9125,1.7547 -3.3320 1.7547c -2.7011,-0.0000 -3.8446,-2.0110 -3.8446 -4.1601c 0.0000,-2.9968 1.9716,-4.7910 3.8446 -4.7910c 2.6025,-0.0000 3.2137,2.0308 3.2137 3.6869c 0.0000,0.2169 -0.1380,0.3352 -0.3549 0.3352h -5.1853 c -0.0197,0.1183 -0.0197,0.2366 -0.0197 0.3943c 0.0000,2.0110 1.3998,3.5686 2.8194 3.5686c 1.0844,-0.0000 1.7744,-0.3549 2.4645 -1.1041ZM 254.7360,54.9479 ZM 261.7352,55.1845 c -4.2390,-0.0000 -6.2697,-3.2729 -6.2697 -6.4472c 0.0000,-3.8841 3.0166,-6.7626 6.2894 -6.7626c 2.4251,-0.0000 3.1940,0.8281 4.3178 0.8872c 0.0591,1.0844 0.2366,2.0308 0.4338 3.0560l -0.5915,0.0789 c -0.5126,-1.6956 -1.6561,-3.2926 -4.3770 -3.2926c -1.5576,-0.0000 -4.3573,1.6561 -4.3573 5.6585c 0.0000,2.8785 1.4787,6.0134 4.5347 6.0134c 1.8336,-0.0000 3.1743,-0.6506 4.5741 -2.1885l 0.4535,0.2957 c -1.3407,1.7547 -3.0954,2.7011 -5.0079 2.7011ZM 267.4332,54.9479 ZM 270.6469,41.1861 v 6.6837 c 1.3210,-1.3210 2.4842,-1.6364 3.2532 -1.6364c 1.4196,-0.0000 2.1293,1.0844 2.1293 3.1151v 4.1798 c 0.0000,0.5718 0.1972,0.8675 0.8478 0.8675h 0.3746 c 0.0789,-0.0000 0.1577,0.0591 0.1577 0.1577v 0.3746 l -0.0394,0.0394 c 0.0000,-0.0000 -1.3407,-0.0394 -2.1293 -0.0394c -0.6901,-0.0000 -2.0308,0.0394 -2.0308 0.0394l -0.0394,-0.0394 v -0.3746 c 0.0000,-0.0986 0.0591,-0.1577 0.1577 -0.1577h 0.3746 c 0.6703,-0.0000 0.8478,-0.2957 0.8478 -0.8675v -4.3967 c 0.0000,-1.5970 -0.4338,-1.9716 -1.5379 -1.9716c -0.5718,-0.0000 -1.4196,0.5126 -2.3659 1.4393v 4.9290 c 0.0000,0.5718 0.1972,0.8675 0.8478 0.8675h 0.3746 c 0.0789,-0.0000 0.1577,0.0591 0.1577 0.1577v 0.3746 l -0.0394,0.0394 c 0.0000,-0.0000 -1.3407,-0.0394 -2.1096 -0.0394c -0.7098,-0.0000 -2.0308,0.0394 -2.0308 0.0394l -0.0394,-0.0394 v -0.3746 c 0.0000,-0.0986 0.0394,-0.1577 0.1380 -0.1577h 0.3746 c 0.6703,-0.0000 0.8478,-0.2957 0.8478 -0.8675v -9.8777 c 0.0000,-1.1238 -0.1774,-1.4393 -0.5718 -1.4393l -0.6506,0.0789 c -0.0591,-0.0000 -0.0986,-0.0394 -0.0986 -0.0986l -0.0394,-0.4929 c 0.3155,-0.0000 1.0252,-0.1183 1.3604 -0.1774c 0.3549,-0.0789 0.6506,-0.1577 1.0450 -0.3352h 0.4338 ZM 277.6461,54.9479 ZM 283.3835,50.1175 l -1.5576,0.3943 c -1.7350,0.5323 -1.9913,1.4393 -1.9913 2.3265c 0.0000,0.6112 0.2957,1.5379 1.5379 1.5379c 0.5915,-0.0000 1.4984,-0.5718 2.0110 -1.0055v -3.2532 ZM 283.3835,50.1175 ZM 284.6453,55.1845 c -0.7492,-0.0000 -1.1632,-0.6703 -1.2421 -1.1435l -0.4535,0.3155 c -0.9069,0.6309 -1.2421,0.8281 -2.1491 0.8281c -1.3801,-0.0000 -2.3856,-0.7886 -2.3856 -2.2673c 0.0000,-1.4984 1.2815,-2.5237 3.1546 -2.9968l 1.8139,-0.4535 c 0.0000,-2.2279 -1.0252,-2.6420 -1.6956 -2.6420c -0.7492,-0.0000 -1.6167,0.3352 -1.6167 0.9464c 0.0000,0.2169 0.0394,0.3352 0.0591 0.3943c 0.0394,0.0789 0.0591,0.2169 0.0591 0.3549c 0.0000,0.2563 -0.1972,0.6506 -0.7689 0.6506c -0.4732,-0.0000 -0.7886,-0.3155 -0.7886 -0.7886c 0.0000,-1.1435 1.8533,-2.1491 3.1151 -2.1491c 1.4393,-0.0000 3.0954,0.5915 3.0954 3.3912v 2.8983 c 0.0000,1.2027 0.0197,1.7153 0.4732 1.7153c 0.4338,-0.0000 0.5520,-0.5520 0.5718 -0.9858l 0.4929,0.0986 c -0.1183,1.4393 -0.7295,1.8336 -1.7350 1.8336ZM 286.5380,54.9479 ZM 288.2928,53.5283 v -4.9093 c 0.0000,-0.9858 -0.1380,-1.2027 -0.4338 -1.2027c -0.2563,-0.0000 -0.4929,0.0197 -0.8281 0.0986l -0.0986,-0.5520 c 1.2421,-0.2169 1.4590,-0.2760 2.0505 -0.5718c 0.1972,-0.0986 0.3549,-0.1577 0.4929 -0.1577h 0.2957 l -0.0591,1.7744 h 0.0591 c 0.5126,-0.7689 1.3801,-1.7744 2.3068 -1.7744c 0.8084,-0.0000 1.1041,0.3943 1.1041 0.9069c 0.0000,0.5126 -0.3352,0.8281 -0.8478 0.8281c -0.3943,-0.0000 -0.6112,-0.1577 -0.8084 -0.3549c -0.1183,-0.1183 -0.2563,-0.1774 -0.3943 -0.1774c -0.2169,-0.0000 -0.6506,0.3549 -1.1238 1.0252c -0.1380,0.1774 -0.2366,0.4338 -0.2366 0.6901v 4.3770 c 0.0000,0.5718 0.1972,0.8675 0.8478 0.8675h 0.5718 c 0.0986,-0.0000 0.1774,0.0591 0.1774 0.1577v 0.3746 l -0.0394,0.0394 c 0.0000,-0.0000 -1.5576,-0.0394 -2.3265 -0.0394c -0.7098,-0.0000 -2.0505,0.0394 -2.0505 0.0394l -0.0197,-0.0394 v -0.3746 c 0.0000,-0.0986 0.0394,-0.1577 0.1380 -0.1577h 0.3746 c 0.6703,-0.0000 0.8478,-0.2957 0.8478 -0.8675ZM 293.3795,54.9479 ZM 296.6130,47.2389 v 5.0473 c 0.0000,1.2224 0.1183,1.8139 0.6506 1.8139c 0.5126,-0.0000 0.9069,-0.1577 1.4196 -0.5520l 0.3549,0.3352 c -0.7689,0.8675 -1.5576,1.3013 -2.4645 1.3013c -0.9069,-0.0000 -1.4393,-0.5520 -1.4393 -1.9519v -5.9937 h -1.2815 c -0.0591,-0.0000 -0.0789,-0.0197 -0.0789 -0.0789v -0.6112 c 0.0000,-0.0591 0.0197,-0.0789 0.0591 -0.0789c 1.3210,-0.0000 1.6364,-0.7689 1.6364 -2.2673v -0.3746 l 1.1435,-0.3943 v 3.0363 h 2.1688 c 0.0986,-0.0000 0.1577,0.0394 0.1577 0.1183v 0.3943 c 0.0000,0.1774 -0.2760,0.2563 -0.4732 0.2563h -1.8533 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 477.1512,296.1035 ZM 478.2438,295.2754 v -5.7620 c 0.0000,-0.6556 -0.1150,-0.8396 -0.3450 -0.8396l -0.3680,0.0460 c -0.0345,-0.0000 -0.0690,-0.0230 -0.0690 -0.0575l -0.0230,-0.2875 c 0.1840,-0.0000 0.6096,-0.0690 0.8051 -0.1035c 0.2070,-0.0460 0.3680,-0.0920 0.5981 -0.1955h 0.2530 v 7.1997 c 0.0000,0.3335 0.1265,0.5060 0.4945 0.5060h 0.2760 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.8396,-0.0230 -1.2881 -0.0230c -0.4025,-0.0000 -1.2421,0.0230 -1.2421 0.0230l -0.0115,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0230,-0.0920 0.0805 -0.0920h 0.2760 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 480.1415,296.1035 ZM 481.0385,289.5364 c 0.0000,-0.2990 0.2415,-0.5520 0.5405 -0.5520c 0.3105,-0.0000 0.5520,0.2530 0.5520 0.5520c 0.0000,0.3105 -0.2415,0.5520 -0.5520 0.5520c -0.2990,-0.0000 -0.5405,-0.2415 -0.5405 -0.5520ZM 481.0385,289.5364 ZM 482.1311,295.2754 c 0.0000,0.3335 0.1265,0.5060 0.4945 0.5060h 0.2185 c 0.0575,-0.0000 0.1035,0.0345 0.1035 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7936,-0.0230 -1.2421 -0.0230c -0.4025,-0.0000 -1.1846,0.0230 -1.1846 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060v -2.8638 c 0.0000,-0.6096 -0.1035,-0.7016 -0.2645 -0.7016c -0.1495,-0.0000 -0.2875,0.0115 -0.4830 0.0575l -0.0575,-0.3220 c 0.7361,-0.1265 0.8626,-0.1725 1.1961 -0.3335c 0.1265,-0.0460 0.2070,-0.0920 0.2875 -0.0920h 0.1725 v 4.2554 ZM 483.1777,296.1035 ZM 487.3641,295.2754 v -2.5187 c 0.0000,-0.8051 -0.1380,-1.1846 -0.7476 -1.1846c -0.5060,-0.0000 -0.9431,0.1955 -1.5296 0.8856v 2.8178 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.1610 c 0.0575,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7246,-0.0230 -1.1731 -0.0230c -0.4140,-0.0000 -1.1961,0.0230 -1.1961 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060v -2.8638 c 0.0000,-0.6211 -0.0920,-0.7016 -0.2530 -0.7016c -0.1495,-0.0000 -0.2875,0.0115 -0.4830 0.0575l -0.0575,-0.3220 c 0.4830,-0.0805 0.8281,-0.1380 1.1846 -0.3335c 0.1265,-0.0575 0.2185,-0.0920 0.2990 -0.0920h 0.1725 l -0.0345,1.0236 h 0.0345 c 0.7361,-0.8626 1.2881,-1.0236 1.8747 -1.0236c 1.0351,-0.0000 1.2536,0.7936 1.2536 1.8172v 2.4382 c 0.0000,0.3335 0.1265,0.5060 0.4945 0.5060h 0.2185 c 0.0575,-0.0000 0.1035,0.0345 0.1035 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7936,-0.0230 -1.2421 -0.0230c -0.4025,-0.0000 -1.1271,0.0230 -1.1271 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.1610 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 489.1583,296.1035 ZM 490.4694,292.9177 h 2.1162 c 0.1150,-0.0000 0.1610,-0.0575 0.1610 -0.1610c 0.0000,-1.0696 -0.5405,-1.3456 -0.9546 -1.3456c -0.2645,-0.0000 -1.1271,0.1035 -1.3226 1.5066ZM 490.4694,292.9177 ZM 493.5057,295.0339 l 0.2300,0.1840 c -0.4370,0.5981 -1.1156,1.0236 -1.9437 1.0236c -1.5756,-0.0000 -2.2427,-1.1731 -2.2427 -2.4267c 0.0000,-1.7482 1.1501,-2.7948 2.2427 -2.7948c 1.5181,-0.0000 1.8747,1.1846 1.8747 2.1507c 0.0000,0.1265 -0.0805,0.1955 -0.2070 0.1955h -3.0248 c -0.0115,0.0690 -0.0115,0.1380 -0.0115 0.2300c 0.0000,1.1731 0.8166,2.0817 1.6446 2.0817c 0.6326,-0.0000 1.0351,-0.2070 1.4376 -0.6441ZM 496.9560,296.1035 ZM 499.4402,289.8124 c -0.2875,-0.0000 -1.1271,0.1610 -1.1271 0.8626c 0.0000,0.2070 -0.0805,0.5636 -0.3910 0.5636c -0.2990,-0.0000 -0.3220,-0.3335 -0.3220 -0.3680c 0.0000,-0.3565 0.4715,-1.4146 2.0702 -1.4146c 1.1156,-0.0000 1.4491,0.7016 1.4491 1.1616c 0.0000,0.2875 -0.0920,0.8626 -1.1271 1.5181c 0.6441,0.1035 1.4951,0.5751 1.4951 1.7712c 0.0000,1.5181 -1.1501,2.3347 -2.4497 2.3347c -0.6556,-0.0000 -1.5756,-0.2875 -1.5756 -0.7246c 0.0000,-0.1725 0.1725,-0.3680 0.4025 -0.3680c 0.2185,-0.0000 0.3220,0.1150 0.4255 0.2645c 0.1265,0.1955 0.3335,0.4715 0.8856 0.4715c 0.3795,-0.0000 1.4606,-0.3795 1.4606 -1.8287c 0.0000,-1.2306 -0.8626,-1.4261 -1.4836 -1.4261c -0.1035,-0.0000 -0.2300,0.0230 -0.3565 0.0460l -0.0460,-0.3450 c 0.8856,-0.1495 1.6216,-1.0121 1.6216 -1.5411c 0.0000,-0.6556 -0.4600,-0.9776 -0.9316 -0.9776Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 463.2809,296.1035 h 9.9073 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 477.1512,276.2889 ZM 484.0863,275.4608 v -2.6452 c 0.0000,-0.7706 -0.2990,-1.0581 -0.7361 -1.0581c -0.4485,-0.0000 -0.8051,0.2300 -1.3571 0.8396c 0.0230,0.1380 0.0230,0.2990 0.0230 0.4600v 2.4037 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.1955 c 0.0575,-0.0000 0.1035,0.0345 0.1035 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7706,-0.0230 -1.2191 -0.0230c -0.4140,-0.0000 -1.2076,0.0230 -1.2076 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2300 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060v -2.6222 c 0.0000,-0.7706 -0.3105,-1.0811 -0.7476 -1.0811c -0.4025,-0.0000 -0.7821,0.2875 -1.3226 0.8511v 2.8523 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.2185 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7821,-0.0230 -1.2306 -0.0230c -0.4140,-0.0000 -1.1961,0.0230 -1.1961 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060v -2.8638 c 0.0000,-0.6556 -0.1035,-0.7016 -0.2530 -0.7016c -0.1495,-0.0000 -0.2875,0.0115 -0.4830 0.0575l -0.0575,-0.3220 c 0.7246,-0.1265 0.8856,-0.1725 1.1961 -0.3335c 0.1150,-0.0575 0.2070,-0.0920 0.2875 -0.0920h 0.1725 l -0.0345,1.0006 h 0.0345 c 0.5405,-0.5751 1.0236,-1.0006 1.7367 -1.0006c 0.6441,-0.0000 1.0466,0.4715 1.1156 0.9891c 0.6671,-0.6901 1.2076,-0.9891 1.8287 -0.9891c 1.0121,-0.0000 1.1846,0.8396 1.1846 1.8632v 2.3922 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.2185 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7821,-0.0230 -1.2306 -0.0230c -0.4140,-0.0000 -1.1961,0.0230 -1.1961 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 485.8920,276.2889 ZM 490.8259,274.9547 c 0.0000,0.5751 0.0575,0.7591 0.2875 0.7591c 0.1380,-0.0000 0.3910,-0.0230 0.5866 -0.0575l 0.0460,0.3220 c -0.7016,0.1265 -1.2651,0.2415 -1.5296 0.4485h -0.2530 l 0.0345,-0.8511 h -0.0345 c -0.6326,0.6901 -1.1501,0.8511 -1.6216 0.8511c -1.1386,-0.0000 -1.4376,-0.7706 -1.4376 -1.5641v -2.6222 c 0.0000,-0.3795 -0.0805,-0.5751 -0.5060 -0.5751c -0.0460,-0.0000 -0.1265,0.0115 -0.1955 0.0115l -0.0345,-0.0115 v -0.2990 l 0.0345,-0.0345 c 0.0000,-0.0000 0.7821,0.0230 1.1501 0.0230c 0.1610,-0.0000 0.4255,-0.0230 0.4255 -0.0230l -0.0115,0.9201 v 2.4497 c 0.0000,1.0236 0.5290,1.2076 0.8741 1.2076c 0.2645,-0.0000 0.5060,-0.1035 0.7476 -0.2760c 0.2760,-0.2070 0.4600,-0.3680 0.5751 -0.5175v -2.8408 c 0.0000,-0.4140 -0.0575,-0.6096 -0.4830 -0.6096c -0.0690,-0.0000 -0.1955,0.0115 -0.2300 0.0115l -0.0230,-0.0230 v -0.2875 l 0.0230,-0.0345 c 0.0000,-0.0000 0.8166,0.0230 1.1386 0.0230c 0.2645,-0.0000 0.4485,-0.0230 0.4485 -0.0230l -0.0115,0.9086 v 2.7142 ZM 491.8380,276.2889 ZM 500.0843,275.4608 v -2.3462 c 0.0000,-0.9316 -0.2415,-1.3686 -0.7706 -1.3686c -0.3335,-0.0000 -0.8281,0.1955 -1.5066 0.8396v 2.8753 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.2185 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7821,-0.0230 -1.2306 -0.0230c -0.4140,-0.0000 -0.8741,0.0230 -0.8741 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.0230 c 0.2990,-0.0000 0.3680,-0.1725 0.3680 -0.5060v -5.8195 c 0.0000,-0.5405 -0.1035,-0.7821 -0.3335 -0.7821l -0.3795,0.0460 c -0.0345,-0.0000 -0.0575,-0.0230 -0.0575 -0.0575l -0.0230,-0.2875 c 0.1840,-0.0000 0.5981,-0.0690 0.7936 -0.1035c 0.2070,-0.0460 0.3795,-0.0920 0.6096 -0.1955h 0.2530 v 3.8989 c 0.7706,-0.7706 1.5641,-0.9546 2.0127 -0.9546c 0.8396,-0.0000 1.1271,0.6326 1.1271 1.8172v 2.4382 c 0.0000,0.3335 0.1150,0.5060 0.4830 0.5060h 0.2300 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7821,-0.0230 -1.2421 -0.0230c -0.4025,-0.0000 -1.1846,0.0230 -1.1846 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 500.0843,275.4608 ZM 496.1394,275.2078 c -0.5060,0.8741 -1.0581,1.1846 -1.7367 1.1846c -1.3801,-0.0000 -2.1392,-1.0581 -2.1392 -2.5417c 0.0000,-1.6331 0.9201,-2.6682 2.1507 -2.6682c 1.1041,-0.0000 1.6907,0.5636 1.6907 1.1731c 0.0000,0.3450 -0.2070,0.5060 -0.4370 0.5060c -0.2530,-0.0000 -0.4830,-0.1265 -0.5175 -0.4025c -0.0345,-0.3910 -0.1150,-0.8856 -0.7936 -0.8856c -0.7591,-0.0000 -1.2076,0.7821 -1.2076 2.0242c 0.0000,1.3456 0.6096,2.2887 1.5066 2.2887c 0.4945,-0.0000 0.9201,-0.3220 1.2766 -0.8396ZM 504.7652,276.2889 ZM 505.8578,275.4608 v -5.7620 c 0.0000,-0.6556 -0.1150,-0.8396 -0.3450 -0.8396l -0.3680,0.0460 c -0.0345,-0.0000 -0.0690,-0.0230 -0.0690 -0.0575l -0.0230,-0.2875 c 0.1840,-0.0000 0.6096,-0.0690 0.8051 -0.1035c 0.2070,-0.0460 0.3680,-0.0920 0.5981 -0.1955h 0.2530 v 7.1997 c 0.0000,0.3335 0.1265,0.5060 0.4945 0.5060h 0.2760 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.8396,-0.0230 -1.2881 -0.0230c -0.4025,-0.0000 -1.2421,0.0230 -1.2421 0.0230l -0.0115,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0230,-0.0920 0.0805 -0.0920h 0.2760 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 507.7555,276.2889 ZM 508.1465,273.9311 c 0.0000,-1.5756 0.8511,-2.7257 2.3807 -2.7257c 1.7022,-0.0000 2.3577,1.4261 2.3577 2.6222c 0.0000,1.1501 -0.7476,2.5992 -2.3807 2.5992c -1.5411,-0.0000 -2.3577,-1.3226 -2.3577 -2.4957ZM 508.1465,273.9311 ZM 510.4007,271.5849 c -0.9201,-0.0000 -1.3456,1.0811 -1.3456 2.0817c 0.0000,0.8856 0.5060,2.3577 1.6446 2.3577c 0.5175,-0.0000 1.2766,-0.3105 1.2766 -1.8287c 0.0000,-1.6907 -0.6326,-2.6107 -1.5756 -2.6107ZM 513.2645,276.2889 ZM 517.4508,275.4608 v -2.5187 c 0.0000,-0.8051 -0.1380,-1.1846 -0.7476 -1.1846c -0.5060,-0.0000 -0.9431,0.1955 -1.5296 0.8856v 2.8178 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.1610 c 0.0575,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7246,-0.0230 -1.1731 -0.0230c -0.4140,-0.0000 -1.1961,0.0230 -1.1961 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060v -2.8638 c 0.0000,-0.6211 -0.0920,-0.7016 -0.2530 -0.7016c -0.1495,-0.0000 -0.2875,0.0115 -0.4830 0.0575l -0.0575,-0.3220 c 0.4830,-0.0805 0.8281,-0.1380 1.1846 -0.3335c 0.1265,-0.0575 0.2185,-0.0920 0.2990 -0.0920h 0.1725 l -0.0345,1.0236 h 0.0345 c 0.7361,-0.8626 1.2881,-1.0236 1.8747 -1.0236c 1.0351,-0.0000 1.2536,0.7936 1.2536 1.8172v 2.4382 c 0.0000,0.3335 0.1265,0.5060 0.4945 0.5060h 0.2185 c 0.0575,-0.0000 0.1035,0.0345 0.1035 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7936,-0.0230 -1.2421 -0.0230c -0.4025,-0.0000 -1.1271,0.0230 -1.1271 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.1610 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 519.2450,276.2889 ZM 522.8793,273.0341 c 0.0000,-0.9546 -0.4485,-1.5066 -1.1386 -1.5066c -0.5981,-0.0000 -1.0006,0.4140 -1.0006 1.3111c 0.0000,0.5981 0.2300,1.5411 1.1501 1.5411c 0.4025,-0.0000 0.9891,-0.1955 0.9891 -1.3456ZM 522.8793,273.0341 ZM 520.7286,276.3694 c -0.3565,0.3335 -0.4370,0.6901 -0.4370 1.0811c 0.0000,0.8626 1.0351,1.1156 1.4261 1.1156c 0.9891,-0.0000 2.2427,-0.3450 2.2427 -1.1731c 0.0000,-0.2990 -0.1610,-0.4945 -0.6096 -0.7131c -0.3220,-0.1610 -0.7936,-0.2875 -1.3456 -0.2875c -0.0920,-0.0000 -0.2185,0.0115 -0.3795 0.0230c -0.1610,0.0115 -0.3335,0.0115 -0.4600 0.0115c -0.1840,-0.0000 -0.2760,-0.0230 -0.4370 -0.0575ZM 520.7286,276.3694 ZM 524.2249,271.8265 c -0.1840,-0.0000 -0.2990,-0.1035 -0.3450 -0.1955c -0.0690,-0.1035 -0.1150,-0.1380 -0.1955 -0.1380c -0.1380,-0.0000 -0.3565,0.1610 -0.4370 0.2760c 0.3220,0.3450 0.4715,0.6786 0.4715 1.2191c 0.0000,1.1271 -0.9201,1.7367 -1.8862 1.7367c -0.4255,-0.0000 -0.7706,-0.0805 -1.0351 -0.2415c -0.1265,0.1955 -0.1955,0.4370 -0.1955 0.6671c 0.0000,0.4945 0.3795,0.6211 0.7016 0.6211c 0.0575,-0.0000 0.1955,-0.0115 0.3565 -0.0230c 0.2645,-0.0345 0.5520,-0.0575 0.7476 -0.0575c 0.4025,-0.0000 1.1616,0.0805 1.6216 0.4715c 0.3105,0.2875 0.4830,0.5636 0.4830 0.9316c 0.0000,1.2421 -1.6331,1.8977 -3.1168 1.8977c -0.8396,-0.0000 -1.7712,-0.3105 -1.7712 -1.3111c 0.0000,-0.4945 0.3105,-1.0236 0.8971 -1.3916c -0.2875,-0.1495 -0.4945,-0.4370 -0.4945 -0.8511c 0.0000,-0.3910 0.1725,-0.8856 0.4830 -1.1616c -0.3105,-0.3105 -0.5751,-0.7016 -0.5751 -1.3341c 0.0000,-1.0581 0.9316,-1.7367 1.9092 -1.7367c 0.6441,-0.0000 1.0466,0.2645 1.1731 0.3565c 0.2875,-0.3910 0.8051,-0.5866 1.0926 -0.5866c 0.2990,-0.0000 0.5060,0.1955 0.5060 0.4370c 0.0000,0.2530 -0.1610,0.4140 -0.3910 0.4140ZM 524.8115,276.2889 ZM 526.1226,273.1031 h 2.1162 c 0.1150,-0.0000 0.1610,-0.0575 0.1610 -0.1610c 0.0000,-1.0696 -0.5405,-1.3456 -0.9546 -1.3456c -0.2645,-0.0000 -1.1271,0.1035 -1.3226 1.5066ZM 526.1226,273.1031 ZM 529.1589,275.2193 l 0.2300,0.1840 c -0.4370,0.5981 -1.1156,1.0236 -1.9437 1.0236c -1.5756,-0.0000 -2.2427,-1.1731 -2.2427 -2.4267c 0.0000,-1.7482 1.1501,-2.7948 2.2427 -2.7948c 1.5181,-0.0000 1.8747,1.1846 1.8747 2.1507c 0.0000,0.1265 -0.0805,0.1955 -0.2070 0.1955h -3.0248 c -0.0115,0.0690 -0.0115,0.1380 -0.0115 0.2300c 0.0000,1.1731 0.8166,2.0817 1.6446 2.0817c 0.6326,-0.0000 1.0351,-0.2070 1.4376 -0.6441ZM 529.7339,276.2889 ZM 530.7575,275.4608 v -2.8638 c 0.0000,-0.5751 -0.0805,-0.7016 -0.2530 -0.7016c -0.1495,-0.0000 -0.2875,0.0115 -0.4830 0.0575l -0.0575,-0.3220 c 0.7246,-0.1265 0.8511,-0.1610 1.1961 -0.3335c 0.1150,-0.0575 0.2070,-0.0920 0.2875 -0.0920h 0.1725 l -0.0345,1.0351 h 0.0345 c 0.2990,-0.4485 0.8051,-1.0351 1.3456 -1.0351c 0.4715,-0.0000 0.6441,0.2300 0.6441 0.5290c 0.0000,0.2990 -0.1955,0.4830 -0.4945 0.4830c -0.2300,-0.0000 -0.3565,-0.0920 -0.4715 -0.2070c -0.0690,-0.0690 -0.1495,-0.1035 -0.2300 -0.1035c -0.1265,-0.0000 -0.3795,0.2070 -0.6556 0.5981c -0.0805,0.1035 -0.1380,0.2530 -0.1380 0.4025v 2.5532 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.3335 c 0.0575,-0.0000 0.1035,0.0345 0.1035 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.9086,-0.0230 -1.3571 -0.0230c -0.4140,-0.0000 -1.1961,0.0230 -1.1961 0.0230l -0.0115,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0230,-0.0920 0.0805 -0.0920h 0.2185 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 536.6001,276.2889 ZM 540.7864,275.4608 v -2.5187 c 0.0000,-0.8051 -0.1380,-1.1846 -0.7476 -1.1846c -0.5060,-0.0000 -0.9431,0.1955 -1.5296 0.8856v 2.8178 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.1610 c 0.0575,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7246,-0.0230 -1.1731 -0.0230c -0.4140,-0.0000 -1.1961,0.0230 -1.1961 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060v -2.8638 c 0.0000,-0.6211 -0.0920,-0.7016 -0.2530 -0.7016c -0.1495,-0.0000 -0.2875,0.0115 -0.4830 0.0575l -0.0575,-0.3220 c 0.4830,-0.0805 0.8281,-0.1380 1.1846 -0.3335c 0.1265,-0.0575 0.2185,-0.0920 0.2990 -0.0920h 0.1725 l -0.0345,1.0236 h 0.0345 c 0.7361,-0.8626 1.2881,-1.0236 1.8747 -1.0236c 1.0351,-0.0000 1.2536,0.7936 1.2536 1.8172v 2.4382 c 0.0000,0.3335 0.1265,0.5060 0.4945 0.5060h 0.2185 c 0.0575,-0.0000 0.1035,0.0345 0.1035 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7936,-0.0230 -1.2421 -0.0230c -0.4025,-0.0000 -1.1271,0.0230 -1.1271 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.1610 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 542.5806,276.2889 ZM 545.9274,273.4711 l -0.9086,0.2300 c -1.0121,0.3105 -1.1616,0.8396 -1.1616 1.3571c 0.0000,0.3565 0.1725,0.8971 0.8971 0.8971c 0.3450,-0.0000 0.8741,-0.3335 1.1731 -0.5866v -1.8977 ZM 545.9274,273.4711 ZM 546.6635,276.4269 c -0.4370,-0.0000 -0.6786,-0.3910 -0.7246 -0.6671l -0.2645,0.1840 c -0.5290,0.3680 -0.7246,0.4830 -1.2536 0.4830c -0.8051,-0.0000 -1.3916,-0.4600 -1.3916 -1.3226c 0.0000,-0.8741 0.7476,-1.4721 1.8402 -1.7482l 1.0581,-0.2645 c 0.0000,-1.2996 -0.5981,-1.5411 -0.9891 -1.5411c -0.4370,-0.0000 -0.9431,0.1955 -0.9431 0.5520c 0.0000,0.1265 0.0230,0.1955 0.0345 0.2300c 0.0230,0.0460 0.0345,0.1265 0.0345 0.2070c 0.0000,0.1495 -0.1150,0.3795 -0.4485 0.3795c -0.2760,-0.0000 -0.4600,-0.1840 -0.4600 -0.4600c 0.0000,-0.6671 1.0811,-1.2536 1.8172 -1.2536c 0.8396,-0.0000 1.8057,0.3450 1.8057 1.9782v 1.6907 c 0.0000,0.7016 0.0115,1.0006 0.2760 1.0006c 0.2530,-0.0000 0.3220,-0.3220 0.3335 -0.5751l 0.2875,0.0575 c -0.0690,0.8396 -0.4255,1.0696 -1.0121 1.0696ZM 547.7676,276.2889 ZM 554.7027,275.4608 v -2.6452 c 0.0000,-0.7706 -0.2990,-1.0581 -0.7361 -1.0581c -0.4485,-0.0000 -0.8051,0.2300 -1.3571 0.8396c 0.0230,0.1380 0.0230,0.2990 0.0230 0.4600v 2.4037 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.1955 c 0.0575,-0.0000 0.1035,0.0345 0.1035 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7706,-0.0230 -1.2191 -0.0230c -0.4140,-0.0000 -1.2076,0.0230 -1.2076 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2300 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060v -2.6222 c 0.0000,-0.7706 -0.3105,-1.0811 -0.7476 -1.0811c -0.4025,-0.0000 -0.7821,0.2875 -1.3226 0.8511v 2.8523 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.2185 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7821,-0.0230 -1.2306 -0.0230c -0.4140,-0.0000 -1.1961,0.0230 -1.1961 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060v -2.8638 c 0.0000,-0.6556 -0.1035,-0.7016 -0.2530 -0.7016c -0.1495,-0.0000 -0.2875,0.0115 -0.4830 0.0575l -0.0575,-0.3220 c 0.7246,-0.1265 0.8856,-0.1725 1.1961 -0.3335c 0.1150,-0.0575 0.2070,-0.0920 0.2875 -0.0920h 0.1725 l -0.0345,1.0006 h 0.0345 c 0.5405,-0.5751 1.0236,-1.0006 1.7367 -1.0006c 0.6441,-0.0000 1.0466,0.4715 1.1156 0.9891c 0.6671,-0.6901 1.2076,-0.9891 1.8287 -0.9891c 1.0121,-0.0000 1.1846,0.8396 1.1846 1.8632v 2.3922 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.2185 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7821,-0.0230 -1.2306 -0.0230c -0.4140,-0.0000 -1.1961,0.0230 -1.1961 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 556.5084,276.2889 ZM 557.8195,273.1031 h 2.1162 c 0.1150,-0.0000 0.1610,-0.0575 0.1610 -0.1610c 0.0000,-1.0696 -0.5405,-1.3456 -0.9546 -1.3456c -0.2645,-0.0000 -1.1271,0.1035 -1.3226 1.5066ZM 557.8195,273.1031 ZM 560.8558,275.2193 l 0.2300,0.1840 c -0.4370,0.5981 -1.1156,1.0236 -1.9437 1.0236c -1.5756,-0.0000 -2.2427,-1.1731 -2.2427 -2.4267c 0.0000,-1.7482 1.1501,-2.7948 2.2427 -2.7948c 1.5181,-0.0000 1.8747,1.1846 1.8747 2.1507c 0.0000,0.1265 -0.0805,0.1955 -0.2070 0.1955h -3.0248 c -0.0115,0.0690 -0.0115,0.1380 -0.0115 0.2300c 0.0000,1.1731 0.8166,2.0817 1.6446 2.0817c 0.6326,-0.0000 1.0351,-0.2070 1.4376 -0.6441Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.290457865275467" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 463.2809,276.2889 h 9.9073 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 477.1512,256.4742 ZM 477.6457,254.8641 l 0.3105,-0.0115 c 0.0345,0.2875 0.1610,0.8396 0.4140 1.1041c 0.1150,0.1265 0.4255,0.3335 0.8511 0.3335c 0.4025,-0.0000 1.0006,-0.3220 1.0006 -0.8856c 0.0000,-0.4945 -0.2760,-0.8281 -1.1846 -1.2191c -0.8396,-0.3680 -1.2766,-0.6096 -1.2766 -1.4721c 0.0000,-0.7706 0.6786,-1.3226 1.5871 -1.3226c 0.5751,-0.0000 1.0006,0.1035 1.3571 0.2875c 0.0690,0.3680 0.1035,0.7591 0.1265 1.1731l -0.3105,0.0115 c -0.2415,-0.9431 -0.9316,-1.1271 -1.1731 -1.1271c -0.4370,-0.0000 -0.8856,0.1725 -0.8856 0.8051c 0.0000,0.4600 0.2185,0.6901 0.8511 0.9201c 0.9316,0.3450 1.6792,0.7591 1.6792 1.6792c 0.0000,1.1386 -1.2076,1.4721 -1.7482 1.4721c -0.4025,-0.0000 -0.7361,-0.0460 -1.0351 -0.1265c -0.0805,-0.0115 -0.1380,-0.0230 -0.2185 -0.0230c -0.0575,-0.0000 -0.1495,0.0115 -0.2645 0.0345c 0.0000,-0.4830 -0.0345,-1.0696 -0.0805 -1.6331ZM 481.4181,256.4742 ZM 483.2927,248.4465 v 3.8989 c 0.7706,-0.7706 1.4491,-0.9546 1.8977 -0.9546c 0.8281,-0.0000 1.2421,0.6326 1.2421 1.8172v 2.4382 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.2185 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7821,-0.0230 -1.2421 -0.0230c -0.4025,-0.0000 -1.1846,0.0230 -1.1846 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060v -2.5647 c 0.0000,-0.9316 -0.2530,-1.1501 -0.8971 -1.1501c -0.3335,-0.0000 -0.8281,0.2990 -1.3801 0.8396v 2.8753 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.2185 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7821,-0.0230 -1.2306 -0.0230c -0.4140,-0.0000 -1.1846,0.0230 -1.1846 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0230,-0.0920 0.0805 -0.0920h 0.2185 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060v -5.7620 c 0.0000,-0.6556 -0.1035,-0.8396 -0.3335 -0.8396l -0.3795,0.0460 c -0.0345,-0.0000 -0.0575,-0.0230 -0.0575 -0.0575l -0.0230,-0.2875 c 0.1840,-0.0000 0.5981,-0.0690 0.7936 -0.1035c 0.2070,-0.0460 0.3795,-0.0920 0.6096 -0.1955h 0.2530 ZM 487.3756,256.4742 ZM 487.7666,254.1165 c 0.0000,-1.5756 0.8511,-2.7257 2.3807 -2.7257c 1.7022,-0.0000 2.3577,1.4261 2.3577 2.6222c 0.0000,1.1501 -0.7476,2.5992 -2.3807 2.5992c -1.5411,-0.0000 -2.3577,-1.3226 -2.3577 -2.4957ZM 487.7666,254.1165 ZM 490.0208,251.7703 c -0.9201,-0.0000 -1.3456,1.0811 -1.3456 2.0817c 0.0000,0.8856 0.5060,2.3577 1.6446 2.3577c 0.5175,-0.0000 1.2766,-0.3105 1.2766 -1.8287c 0.0000,-1.6907 -0.6326,-2.6107 -1.5756 -2.6107ZM 492.8846,256.4742 ZM 493.9082,255.6461 v -2.8638 c 0.0000,-0.5751 -0.0805,-0.7016 -0.2530 -0.7016c -0.1495,-0.0000 -0.2875,0.0115 -0.4830 0.0575l -0.0575,-0.3220 c 0.7246,-0.1265 0.8511,-0.1610 1.1961 -0.3335c 0.1150,-0.0575 0.2070,-0.0920 0.2875 -0.0920h 0.1725 l -0.0345,1.0351 h 0.0345 c 0.2990,-0.4485 0.8051,-1.0351 1.3456 -1.0351c 0.4715,-0.0000 0.6441,0.2300 0.6441 0.5290c 0.0000,0.2990 -0.1955,0.4830 -0.4945 0.4830c -0.2300,-0.0000 -0.3565,-0.0920 -0.4715 -0.2070c -0.0690,-0.0690 -0.1495,-0.1035 -0.2300 -0.1035c -0.1265,-0.0000 -0.3795,0.2070 -0.6556 0.5981c -0.0805,0.1035 -0.1380,0.2530 -0.1380 0.4025v 2.5532 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.3335 c 0.0575,-0.0000 0.1035,0.0345 0.1035 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.9086,-0.0230 -1.3571 -0.0230c -0.4140,-0.0000 -1.1961,0.0230 -1.1961 0.0230l -0.0115,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0230,-0.0920 0.0805 -0.0920h 0.2185 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 496.8755,256.4742 ZM 498.7616,251.9773 v 2.9443 c 0.0000,0.7131 0.0690,1.0581 0.3795 1.0581c 0.2990,-0.0000 0.5290,-0.0920 0.8281 -0.3220l 0.2070,0.1955 c -0.4485,0.5060 -0.9086,0.7591 -1.4376 0.7591c -0.5290,-0.0000 -0.8396,-0.3220 -0.8396 -1.1386v -3.4963 h -0.7476 c -0.0345,-0.0000 -0.0460,-0.0115 -0.0460 -0.0460v -0.3565 c 0.0000,-0.0345 0.0115,-0.0460 0.0345 -0.0460c 0.7706,-0.0000 0.9546,-0.4485 0.9546 -1.3226v -0.2185 l 0.6671,-0.2300 v 1.7712 h 1.2651 c 0.0575,-0.0000 0.0920,0.0230 0.0920 0.0690v 0.2300 c 0.0000,0.1035 -0.1610,0.1495 -0.2760 0.1495h -1.0811 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.645228932637734" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 463.2809,256.4742 h 9.9073 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 473.1883,234.3035 ZM 474.3844,227.7364 c 0.0000,-0.2990 0.2415,-0.5520 0.5520 -0.5520c 0.2990,-0.0000 0.5520,0.2530 0.5520 0.5520c 0.0000,0.3105 -0.2530,0.5520 -0.5520 0.5520c -0.3105,-0.0000 -0.5520,-0.2415 -0.5520 -0.5520ZM 474.3844,227.7364 ZM 473.7748,236.5347 c 0.5060,-0.0000 0.8511,-0.9086 0.8511 -2.5302v -3.3928 c 0.0000,-0.6096 -0.1035,-0.7016 -0.2530 -0.7016c -0.1610,-0.0000 -0.2875,0.0115 -0.4830 0.0575l -0.0575,-0.3220 c 0.8396,-0.1380 1.0926,-0.2760 1.2421 -0.3565c 0.0805,-0.0345 0.1265,-0.0690 0.2415 -0.0690h 0.1725 v 4.4279 c 0.0000,1.5066 -0.1150,2.1392 -0.7476 2.7833c -0.3105,0.2990 -0.6441,0.4370 -0.9201 0.4370c -0.4715,-0.0000 -1.0811,-0.2415 -1.0811 -0.5866c 0.0000,-0.2875 0.1725,-0.4370 0.3680 -0.4370c 0.2760,-0.0000 0.4255,0.2645 0.4830 0.5060c 0.0345,0.1150 0.0920,0.1840 0.1840 0.1840ZM 476.3740,234.3035 ZM 481.3080,232.9694 c 0.0000,0.5751 0.0575,0.7591 0.2875 0.7591c 0.1380,-0.0000 0.3910,-0.0230 0.5866 -0.0575l 0.0460,0.3220 c -0.7016,0.1265 -1.2651,0.2415 -1.5296 0.4485h -0.2530 l 0.0345,-0.8511 h -0.0345 c -0.6326,0.6901 -1.1501,0.8511 -1.6216 0.8511c -1.1386,-0.0000 -1.4376,-0.7706 -1.4376 -1.5641v -2.6222 c 0.0000,-0.3795 -0.0805,-0.5751 -0.5060 -0.5751c -0.0460,-0.0000 -0.1265,0.0115 -0.1955 0.0115l -0.0345,-0.0115 v -0.2990 l 0.0345,-0.0345 c 0.0000,-0.0000 0.7821,0.0230 1.1501 0.0230c 0.1610,-0.0000 0.4255,-0.0230 0.4255 -0.0230l -0.0115,0.9201 v 2.4497 c 0.0000,1.0236 0.5290,1.2076 0.8741 1.2076c 0.2645,-0.0000 0.5060,-0.1035 0.7476 -0.2760c 0.2760,-0.2070 0.4600,-0.3680 0.5751 -0.5175v -2.8408 c 0.0000,-0.4140 -0.0575,-0.6096 -0.4830 -0.6096c -0.0690,-0.0000 -0.1955,0.0115 -0.2300 0.0115l -0.0230,-0.0230 v -0.2875 l 0.0230,-0.0345 c 0.0000,-0.0000 0.8166,0.0230 1.1386 0.0230c 0.2645,-0.0000 0.4485,-0.0230 0.4485 -0.0230l -0.0115,0.9086 v 2.7142 ZM 482.3201,234.3035 ZM 482.8146,232.6933 l 0.3105,-0.0115 c 0.0345,0.2875 0.1610,0.8396 0.4140 1.1041c 0.1150,0.1265 0.4255,0.3335 0.8511 0.3335c 0.4025,-0.0000 1.0006,-0.3220 1.0006 -0.8856c 0.0000,-0.4945 -0.2760,-0.8281 -1.1846 -1.2191c -0.8396,-0.3680 -1.2766,-0.6096 -1.2766 -1.4721c 0.0000,-0.7706 0.6786,-1.3226 1.5871 -1.3226c 0.5751,-0.0000 1.0006,0.1035 1.3571 0.2875c 0.0690,0.3680 0.1035,0.7591 0.1265 1.1731l -0.3105,0.0115 c -0.2415,-0.9431 -0.9316,-1.1271 -1.1731 -1.1271c -0.4370,-0.0000 -0.8856,0.1725 -0.8856 0.8051c 0.0000,0.4600 0.2185,0.6901 0.8511 0.9201c 0.9316,0.3450 1.6792,0.7591 1.6792 1.6792c 0.0000,1.1386 -1.2076,1.4721 -1.7482 1.4721c -0.4025,-0.0000 -0.7361,-0.0460 -1.0351 -0.1265c -0.0805,-0.0115 -0.1380,-0.0230 -0.2185 -0.0230c -0.0575,-0.0000 -0.1495,0.0115 -0.2645 0.0345c 0.0000,-0.4830 -0.0345,-1.0696 -0.0805 -1.6331ZM 486.5870,234.3035 ZM 488.4731,229.8066 v 2.9443 c 0.0000,0.7131 0.0690,1.0581 0.3795 1.0581c 0.2990,-0.0000 0.5290,-0.0920 0.8281 -0.3220l 0.2070,0.1955 c -0.4485,0.5060 -0.9086,0.7591 -1.4376 0.7591c -0.5290,-0.0000 -0.8396,-0.3220 -0.8396 -1.1386v -3.4963 h -0.7476 c -0.0345,-0.0000 -0.0460,-0.0115 -0.0460 -0.0460v -0.3565 c 0.0000,-0.0345 0.0115,-0.0460 0.0345 -0.0460c 0.7706,-0.0000 0.9546,-0.4485 0.9546 -1.3226v -0.2185 l 0.6671,-0.2300 v 1.7712 h 1.2651 c 0.0575,-0.0000 0.0920,0.0230 0.0920 0.0690v 0.2300 c 0.0000,0.1035 -0.1610,0.1495 -0.2760 0.1495h -1.0811 ZM 492.9355,234.3035 ZM 496.2823,231.4857 l -0.9086,0.2300 c -1.0121,0.3105 -1.1616,0.8396 -1.1616 1.3571c 0.0000,0.3565 0.1725,0.8971 0.8971 0.8971c 0.3450,-0.0000 0.8741,-0.3335 1.1731 -0.5866v -1.8977 ZM 496.2823,231.4857 ZM 497.0184,234.4415 c -0.4370,-0.0000 -0.6786,-0.3910 -0.7246 -0.6671l -0.2645,0.1840 c -0.5290,0.3680 -0.7246,0.4830 -1.2536 0.4830c -0.8051,-0.0000 -1.3916,-0.4600 -1.3916 -1.3226c 0.0000,-0.8741 0.7476,-1.4721 1.8402 -1.7482l 1.0581,-0.2645 c 0.0000,-1.2996 -0.5981,-1.5411 -0.9891 -1.5411c -0.4370,-0.0000 -0.9431,0.1955 -0.9431 0.5520c 0.0000,0.1265 0.0230,0.1955 0.0345 0.2300c 0.0230,0.0460 0.0345,0.1265 0.0345 0.2070c 0.0000,0.1495 -0.1150,0.3795 -0.4485 0.3795c -0.2760,-0.0000 -0.4600,-0.1840 -0.4600 -0.4600c 0.0000,-0.6671 1.0811,-1.2536 1.8172 -1.2536c 0.8396,-0.0000 1.8057,0.3450 1.8057 1.9782v 1.6907 c 0.0000,0.7016 0.0115,1.0006 0.2760 1.0006c 0.2530,-0.0000 0.3220,-0.3220 0.3335 -0.5751l 0.2875,0.0575 c -0.0690,0.8396 -0.4255,1.0696 -1.0121 1.0696ZM 500.9978,234.3035 ZM 504.6321,231.0487 c 0.0000,-0.9546 -0.4485,-1.5066 -1.1386 -1.5066c -0.5981,-0.0000 -1.0006,0.4140 -1.0006 1.3111c 0.0000,0.5981 0.2300,1.5411 1.1501 1.5411c 0.4025,-0.0000 0.9891,-0.1955 0.9891 -1.3456ZM 504.6321,231.0487 ZM 502.4814,234.3840 c -0.3565,0.3335 -0.4370,0.6901 -0.4370 1.0811c 0.0000,0.8626 1.0351,1.1156 1.4261 1.1156c 0.9891,-0.0000 2.2427,-0.3450 2.2427 -1.1731c 0.0000,-0.2990 -0.1610,-0.4945 -0.6096 -0.7131c -0.3220,-0.1610 -0.7936,-0.2875 -1.3456 -0.2875c -0.0920,-0.0000 -0.2185,0.0115 -0.3795 0.0230c -0.1610,0.0115 -0.3335,0.0115 -0.4600 0.0115c -0.1840,-0.0000 -0.2760,-0.0230 -0.4370 -0.0575ZM 502.4814,234.3840 ZM 505.9777,229.8411 c -0.1840,-0.0000 -0.2990,-0.1035 -0.3450 -0.1955c -0.0690,-0.1035 -0.1150,-0.1380 -0.1955 -0.1380c -0.1380,-0.0000 -0.3565,0.1610 -0.4370 0.2760c 0.3220,0.3450 0.4715,0.6786 0.4715 1.2191c 0.0000,1.1271 -0.9201,1.7367 -1.8862 1.7367c -0.4255,-0.0000 -0.7706,-0.0805 -1.0351 -0.2415c -0.1265,0.1955 -0.1955,0.4370 -0.1955 0.6671c 0.0000,0.4945 0.3795,0.6211 0.7016 0.6211c 0.0575,-0.0000 0.1955,-0.0115 0.3565 -0.0230c 0.2645,-0.0345 0.5520,-0.0575 0.7476 -0.0575c 0.4025,-0.0000 1.1616,0.0805 1.6216 0.4715c 0.3105,0.2875 0.4830,0.5636 0.4830 0.9316c 0.0000,1.2421 -1.6331,1.8977 -3.1168 1.8977c -0.8396,-0.0000 -1.7712,-0.3105 -1.7712 -1.3111c 0.0000,-0.4945 0.3105,-1.0236 0.8971 -1.3916c -0.2875,-0.1495 -0.4945,-0.4370 -0.4945 -0.8511c 0.0000,-0.3910 0.1725,-0.8856 0.4830 -1.1616c -0.3105,-0.3105 -0.5751,-0.7016 -0.5751 -1.3341c 0.0000,-1.0581 0.9316,-1.7367 1.9092 -1.7367c 0.6441,-0.0000 1.0466,0.2645 1.1731 0.3565c 0.2875,-0.3910 0.8051,-0.5866 1.0926 -0.5866c 0.2990,-0.0000 0.5060,0.1955 0.5060 0.4370c 0.0000,0.2530 -0.1610,0.4140 -0.3910 0.4140ZM 506.5068,234.3035 ZM 507.5994,233.4754 v -5.7620 c 0.0000,-0.6556 -0.1150,-0.8396 -0.3450 -0.8396l -0.3680,0.0460 c -0.0345,-0.0000 -0.0690,-0.0230 -0.0690 -0.0575l -0.0230,-0.2875 c 0.1840,-0.0000 0.6096,-0.0690 0.8051 -0.1035c 0.2070,-0.0460 0.3680,-0.0920 0.5981 -0.1955h 0.2530 v 7.1997 c 0.0000,0.3335 0.1265,0.5060 0.4945 0.5060h 0.2760 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.8396,-0.0230 -1.2881 -0.0230c -0.4025,-0.0000 -1.2421,0.0230 -1.2421 0.0230l -0.0115,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0230,-0.0920 0.0805 -0.0920h 0.2760 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 509.4970,234.3035 ZM 511.8893,229.5881 c 0.0000,0.0575 -0.0690,0.0920 -0.1265 0.0920c -0.3450,-0.0000 -0.4945,0.0690 -0.4945 0.2530c 0.0000,0.0690 0.0230,0.1610 0.0690 0.2645l 1.2651,2.9673 l 1.2766,-2.9213 c 0.0575,-0.1035 0.0805,-0.1955 0.0805 -0.2645c 0.0000,-0.2415 -0.2300,-0.2990 -0.4830 -0.2990h -0.0460 c -0.0575,-0.0000 -0.1150,-0.0460 -0.1150 -0.0805v -0.2185 l 0.0230,-0.0345 c 0.0000,-0.0000 0.6786,0.0230 1.0811 0.0230c 0.3220,-0.0000 0.7936,-0.0230 0.7936 -0.0230l 0.0345,0.0230 v 0.2185 c 0.0000,0.0575 -0.0460,0.0920 -0.1265 0.0920c -0.4370,-0.0000 -0.6556,0.4485 -0.8166 0.7821c -0.6096,1.2881 -1.1156,2.4727 -2.0357 4.6924c -0.3450,0.8281 -0.7591,1.7942 -1.5756 1.7942c -0.2185,-0.0000 -0.6671,-0.1265 -0.6671 -0.5405c 0.0000,-0.3450 0.2530,-0.4485 0.4370 -0.4485c 0.1725,-0.0000 0.2875,0.0690 0.3565 0.1610c 0.1150,0.1150 0.1955,0.1955 0.3105 0.1955c 0.1725,-0.0000 0.5751,-0.9891 0.8626 -1.6907c 0.0690,-0.1380 0.0920,-0.2530 0.0920 -0.3565c 0.0000,-0.1150 -0.1035,-0.4255 -0.1955 -0.6556l -1.4491,-3.3698 c -0.1840,-0.4370 -0.3105,-0.5636 -0.7016 -0.5636c -0.0690,-0.0000 -0.1150,-0.0345 -0.1150 -0.0805v -0.2300 l 0.0230,-0.0230 c 0.0000,-0.0000 0.5060,0.0230 0.8511 0.0230c 0.5405,-0.0000 1.3686,-0.0230 1.3686 -0.0230l 0.0230,0.0345 v 0.2070 ZM 515.3511,234.3035 ZM 517.0647,230.6922 v 2.8638 c 0.4025,0.4715 0.7821,0.4945 0.9661 0.4945c 1.2306,-0.0000 1.5066,-1.1501 1.5066 -2.1392c 0.0000,-1.3916 -0.5636,-2.1622 -1.2651 -2.1622c -0.3910,-0.0000 -0.9546,0.3335 -1.2076 0.9431ZM 517.0647,230.6922 ZM 516.2136,236.1207 v -5.6930 c 0.0000,-0.4370 -0.1035,-0.5175 -0.2645 -0.5175c -0.1495,-0.0000 -0.2875,0.0115 -0.4830 0.0575l -0.0575,-0.3220 c 0.7361,-0.1265 0.8741,-0.1725 1.1961 -0.3335c 0.1265,-0.0575 0.2070,-0.0920 0.2875 -0.0920h 0.1725 l -0.0345,0.9201 h 0.0345 c 0.5290,-0.8051 1.1501,-0.9201 1.5181 -0.9201c 1.1156,-0.0000 1.8517,1.1616 1.8517 2.3807c 0.0000,0.9316 -0.2875,1.6446 -0.8051 2.1737c -0.4485,0.4485 -0.9201,0.6671 -1.5296 0.6671c -0.4140,-0.0000 -0.7361,-0.0920 -1.0351 -0.2530v 1.9322 c 0.0000,0.3335 0.1265,0.5060 0.4945 0.5060h 0.2185 c 0.0575,-0.0000 0.1035,0.0345 0.1035 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7936,-0.0230 -1.2421 -0.0230c -0.4025,-0.0000 -1.1846,0.0230 -1.1846 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 520.8601,234.3035 ZM 522.7347,226.2758 v 3.8989 c 0.7706,-0.7706 1.4491,-0.9546 1.8977 -0.9546c 0.8281,-0.0000 1.2421,0.6326 1.2421 1.8172v 2.4382 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.2185 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7821,-0.0230 -1.2421 -0.0230c -0.4025,-0.0000 -1.1846,0.0230 -1.1846 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060v -2.5647 c 0.0000,-0.9316 -0.2530,-1.1501 -0.8971 -1.1501c -0.3335,-0.0000 -0.8281,0.2990 -1.3801 0.8396v 2.8753 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.2185 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7821,-0.0230 -1.2306 -0.0230c -0.4140,-0.0000 -1.1846,0.0230 -1.1846 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0230,-0.0920 0.0805 -0.0920h 0.2185 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060v -5.7620 c 0.0000,-0.6556 -0.1035,-0.8396 -0.3335 -0.8396l -0.3795,0.0460 c -0.0345,-0.0000 -0.0575,-0.0230 -0.0575 -0.0575l -0.0230,-0.2875 c 0.1840,-0.0000 0.5981,-0.0690 0.7936 -0.1035c 0.2070,-0.0460 0.3795,-0.0920 0.6096 -0.1955h 0.2530 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="6.9678433989565995" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 469.2253,234.3035 c 0.0000,-3.2830 -2.6614,-5.9444 -5.9444 -5.9444c -3.2830,-0.0000 -5.9444,2.6614 -5.9444 5.9444c -0.0000,3.2830 2.6614,5.9444 5.9444 5.9444c 3.2830,0.0000 5.9444,-2.6614 5.9444 -5.9444Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 487.0585,212.1328 ZM 490.6928,208.8780 c 0.0000,-0.9546 -0.4485,-1.5066 -1.1386 -1.5066c -0.5981,-0.0000 -1.0006,0.4140 -1.0006 1.3111c 0.0000,0.5981 0.2300,1.5411 1.1501 1.5411c 0.4025,-0.0000 0.9891,-0.1955 0.9891 -1.3456ZM 490.6928,208.8780 ZM 488.5421,212.2133 c -0.3565,0.3335 -0.4370,0.6901 -0.4370 1.0811c 0.0000,0.8626 1.0351,1.1156 1.4261 1.1156c 0.9891,-0.0000 2.2427,-0.3450 2.2427 -1.1731c 0.0000,-0.2990 -0.1610,-0.4945 -0.6096 -0.7131c -0.3220,-0.1610 -0.7936,-0.2875 -1.3456 -0.2875c -0.0920,-0.0000 -0.2185,0.0115 -0.3795 0.0230c -0.1610,0.0115 -0.3335,0.0115 -0.4600 0.0115c -0.1840,-0.0000 -0.2760,-0.0230 -0.4370 -0.0575ZM 488.5421,212.2133 ZM 492.0385,207.6704 c -0.1840,-0.0000 -0.2990,-0.1035 -0.3450 -0.1955c -0.0690,-0.1035 -0.1150,-0.1380 -0.1955 -0.1380c -0.1380,-0.0000 -0.3565,0.1610 -0.4370 0.2760c 0.3220,0.3450 0.4715,0.6786 0.4715 1.2191c 0.0000,1.1271 -0.9201,1.7367 -1.8862 1.7367c -0.4255,-0.0000 -0.7706,-0.0805 -1.0351 -0.2415c -0.1265,0.1955 -0.1955,0.4370 -0.1955 0.6671c 0.0000,0.4945 0.3795,0.6211 0.7016 0.6211c 0.0575,-0.0000 0.1955,-0.0115 0.3565 -0.0230c 0.2645,-0.0345 0.5520,-0.0575 0.7476 -0.0575c 0.4025,-0.0000 1.1616,0.0805 1.6216 0.4715c 0.3105,0.2875 0.4830,0.5636 0.4830 0.9316c 0.0000,1.2421 -1.6331,1.8977 -3.1168 1.8977c -0.8396,-0.0000 -1.7712,-0.3105 -1.7712 -1.3111c 0.0000,-0.4945 0.3105,-1.0236 0.8971 -1.3916c -0.2875,-0.1495 -0.4945,-0.4370 -0.4945 -0.8511c 0.0000,-0.3910 0.1725,-0.8856 0.4830 -1.1616c -0.3105,-0.3105 -0.5751,-0.7016 -0.5751 -1.3341c 0.0000,-1.0581 0.9316,-1.7367 1.9092 -1.7367c 0.6441,-0.0000 1.0466,0.2645 1.1731 0.3565c 0.2875,-0.3910 0.8051,-0.5866 1.0926 -0.5866c 0.2990,-0.0000 0.5060,0.1955 0.5060 0.4370c 0.0000,0.2530 -0.1610,0.4140 -0.3910 0.4140ZM 492.5675,212.1328 ZM 493.6601,211.3047 v -5.7620 c 0.0000,-0.6556 -0.1150,-0.8396 -0.3450 -0.8396l -0.3680,0.0460 c -0.0345,-0.0000 -0.0690,-0.0230 -0.0690 -0.0575l -0.0230,-0.2875 c 0.1840,-0.0000 0.6096,-0.0690 0.8051 -0.1035c 0.2070,-0.0460 0.3680,-0.0920 0.5981 -0.1955h 0.2530 v 7.1997 c 0.0000,0.3335 0.1265,0.5060 0.4945 0.5060h 0.2760 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.8396,-0.0230 -1.2881 -0.0230c -0.4025,-0.0000 -1.2421,0.0230 -1.2421 0.0230l -0.0115,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0230,-0.0920 0.0805 -0.0920h 0.2760 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 495.5578,212.1328 ZM 497.9500,207.4173 c 0.0000,0.0575 -0.0690,0.0920 -0.1265 0.0920c -0.3450,-0.0000 -0.4945,0.0690 -0.4945 0.2530c 0.0000,0.0690 0.0230,0.1610 0.0690 0.2645l 1.2651,2.9673 l 1.2766,-2.9213 c 0.0575,-0.1035 0.0805,-0.1955 0.0805 -0.2645c 0.0000,-0.2415 -0.2300,-0.2990 -0.4830 -0.2990h -0.0460 c -0.0575,-0.0000 -0.1150,-0.0460 -0.1150 -0.0805v -0.2185 l 0.0230,-0.0345 c 0.0000,-0.0000 0.6786,0.0230 1.0811 0.0230c 0.3220,-0.0000 0.7936,-0.0230 0.7936 -0.0230l 0.0345,0.0230 v 0.2185 c 0.0000,0.0575 -0.0460,0.0920 -0.1265 0.0920c -0.4370,-0.0000 -0.6556,0.4485 -0.8166 0.7821c -0.6096,1.2881 -1.1156,2.4727 -2.0357 4.6924c -0.3450,0.8281 -0.7591,1.7942 -1.5756 1.7942c -0.2185,-0.0000 -0.6671,-0.1265 -0.6671 -0.5405c 0.0000,-0.3450 0.2530,-0.4485 0.4370 -0.4485c 0.1725,-0.0000 0.2875,0.0690 0.3565 0.1610c 0.1150,0.1150 0.1955,0.1955 0.3105 0.1955c 0.1725,-0.0000 0.5751,-0.9891 0.8626 -1.6907c 0.0690,-0.1380 0.0920,-0.2530 0.0920 -0.3565c 0.0000,-0.1150 -0.1035,-0.4255 -0.1955 -0.6556l -1.4491,-3.3698 c -0.1840,-0.4370 -0.3105,-0.5636 -0.7016 -0.5636c -0.0690,-0.0000 -0.1150,-0.0345 -0.1150 -0.0805v -0.2300 l 0.0230,-0.0230 c 0.0000,-0.0000 0.5060,0.0230 0.8511 0.0230c 0.5405,-0.0000 1.3686,-0.0230 1.3686 -0.0230l 0.0230,0.0345 v 0.2070 ZM 501.4118,212.1328 ZM 503.1255,208.5214 v 2.8638 c 0.4025,0.4715 0.7821,0.4945 0.9661 0.4945c 1.2306,-0.0000 1.5066,-1.1501 1.5066 -2.1392c 0.0000,-1.3916 -0.5636,-2.1622 -1.2651 -2.1622c -0.3910,-0.0000 -0.9546,0.3335 -1.2076 0.9431ZM 503.1255,208.5214 ZM 502.2744,213.9499 v -5.6930 c 0.0000,-0.4370 -0.1035,-0.5175 -0.2645 -0.5175c -0.1495,-0.0000 -0.2875,0.0115 -0.4830 0.0575l -0.0575,-0.3220 c 0.7361,-0.1265 0.8741,-0.1725 1.1961 -0.3335c 0.1265,-0.0575 0.2070,-0.0920 0.2875 -0.0920h 0.1725 l -0.0345,0.9201 h 0.0345 c 0.5290,-0.8051 1.1501,-0.9201 1.5181 -0.9201c 1.1156,-0.0000 1.8517,1.1616 1.8517 2.3807c 0.0000,0.9316 -0.2875,1.6446 -0.8051 2.1737c -0.4485,0.4485 -0.9201,0.6671 -1.5296 0.6671c -0.4140,-0.0000 -0.7361,-0.0920 -1.0351 -0.2530v 1.9322 c 0.0000,0.3335 0.1265,0.5060 0.4945 0.5060h 0.2185 c 0.0575,-0.0000 0.1035,0.0345 0.1035 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7936,-0.0230 -1.2421 -0.0230c -0.4025,-0.0000 -1.1846,0.0230 -1.1846 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 506.9208,212.1328 ZM 508.7955,204.1050 v 3.8989 c 0.7706,-0.7706 1.4491,-0.9546 1.8977 -0.9546c 0.8281,-0.0000 1.2421,0.6326 1.2421 1.8172v 2.4382 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.2185 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7821,-0.0230 -1.2421 -0.0230c -0.4025,-0.0000 -1.1846,0.0230 -1.1846 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060v -2.5647 c 0.0000,-0.9316 -0.2530,-1.1501 -0.8971 -1.1501c -0.3335,-0.0000 -0.8281,0.2990 -1.3801 0.8396v 2.8753 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.2185 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7821,-0.0230 -1.2306 -0.0230c -0.4140,-0.0000 -1.1846,0.0230 -1.1846 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0230,-0.0920 0.0805 -0.0920h 0.2185 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060v -5.7620 c 0.0000,-0.6556 -0.1035,-0.8396 -0.3335 -0.8396l -0.3795,0.0460 c -0.0345,-0.0000 -0.0575,-0.0230 -0.0575 -0.0575l -0.0230,-0.2875 c 0.1840,-0.0000 0.5981,-0.0690 0.7936 -0.1035c 0.2070,-0.0460 0.3795,-0.0920 0.6096 -0.1955h 0.2530 ZM 512.8783,212.1328 ZM 516.2021,209.1885 h 1.9782 v 0.5636 h -1.9782 v 1.9897 h -0.5751 v -1.9897 h -1.9897 v -0.5636 h 1.9897 v -2.0012 h 0.5751 v 2.0012 ZM 518.9394,212.1328 ZM 520.0320,211.3047 v -5.7620 c 0.0000,-0.6556 -0.1150,-0.8396 -0.3450 -0.8396l -0.3680,0.0460 c -0.0345,-0.0000 -0.0690,-0.0230 -0.0690 -0.0575l -0.0230,-0.2875 c 0.1840,-0.0000 0.6096,-0.0690 0.8051 -0.1035c 0.2070,-0.0460 0.3680,-0.0920 0.5981 -0.1955h 0.2530 v 7.1997 c 0.0000,0.3335 0.1265,0.5060 0.4945 0.5060h 0.2760 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.8396,-0.0230 -1.2881 -0.0230c -0.4025,-0.0000 -1.2421,0.0230 -1.2421 0.0230l -0.0115,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0230,-0.0920 0.0805 -0.0920h 0.2760 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 521.9297,212.1328 ZM 522.8267,205.5657 c 0.0000,-0.2990 0.2415,-0.5520 0.5405 -0.5520c 0.3105,-0.0000 0.5520,0.2530 0.5520 0.5520c 0.0000,0.3105 -0.2415,0.5520 -0.5520 0.5520c -0.2990,-0.0000 -0.5405,-0.2415 -0.5405 -0.5520ZM 522.8267,205.5657 ZM 523.9193,211.3047 c 0.0000,0.3335 0.1265,0.5060 0.4945 0.5060h 0.2185 c 0.0575,-0.0000 0.1035,0.0345 0.1035 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7936,-0.0230 -1.2421 -0.0230c -0.4025,-0.0000 -1.1846,0.0230 -1.1846 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060v -2.8638 c 0.0000,-0.6096 -0.1035,-0.7016 -0.2645 -0.7016c -0.1495,-0.0000 -0.2875,0.0115 -0.4830 0.0575l -0.0575,-0.3220 c 0.7361,-0.1265 0.8626,-0.1725 1.1961 -0.3335c 0.1265,-0.0460 0.2070,-0.0920 0.2875 -0.0920h 0.1725 v 4.2554 ZM 524.9659,212.1328 ZM 529.1523,211.3047 v -2.5187 c 0.0000,-0.8051 -0.1380,-1.1846 -0.7476 -1.1846c -0.5060,-0.0000 -0.9431,0.1955 -1.5296 0.8856v 2.8178 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.1610 c 0.0575,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7246,-0.0230 -1.1731 -0.0230c -0.4140,-0.0000 -1.1961,0.0230 -1.1961 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060v -2.8638 c 0.0000,-0.6211 -0.0920,-0.7016 -0.2530 -0.7016c -0.1495,-0.0000 -0.2875,0.0115 -0.4830 0.0575l -0.0575,-0.3220 c 0.4830,-0.0805 0.8281,-0.1380 1.1846 -0.3335c 0.1265,-0.0575 0.2185,-0.0920 0.2990 -0.0920h 0.1725 l -0.0345,1.0236 h 0.0345 c 0.7361,-0.8626 1.2881,-1.0236 1.8747 -1.0236c 1.0351,-0.0000 1.2536,0.7936 1.2536 1.8172v 2.4382 c 0.0000,0.3335 0.1265,0.5060 0.4945 0.5060h 0.2185 c 0.0575,-0.0000 0.1035,0.0345 0.1035 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7936,-0.0230 -1.2421 -0.0230c -0.4025,-0.0000 -1.1271,0.0230 -1.1271 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.1610 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 530.9465,212.1328 ZM 532.2576,208.9470 h 2.1162 c 0.1150,-0.0000 0.1610,-0.0575 0.1610 -0.1610c 0.0000,-1.0696 -0.5405,-1.3456 -0.9546 -1.3456c -0.2645,-0.0000 -1.1271,0.1035 -1.3226 1.5066ZM 532.2576,208.9470 ZM 535.2939,211.0632 l 0.2300,0.1840 c -0.4370,0.5981 -1.1156,1.0236 -1.9437 1.0236c -1.5756,-0.0000 -2.2427,-1.1731 -2.2427 -2.4267c 0.0000,-1.7482 1.1501,-2.7948 2.2427 -2.7948c 1.5181,-0.0000 1.8747,1.1846 1.8747 2.1507c 0.0000,0.1265 -0.0805,0.1955 -0.2070 0.1955h -3.0248 c -0.0115,0.0690 -0.0115,0.1380 -0.0115 0.2300c 0.0000,1.1731 0.8166,2.0817 1.6446 2.0817c 0.6326,-0.0000 1.0351,-0.2070 1.4376 -0.6441Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="9.290457865275467" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 443.4663,212.1328 h 39.6293 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="6.9678433989565995" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 469.2253,212.1328 c 0.0000,-3.2830 -2.6614,-5.9444 -5.9444 -5.9444c -3.2830,-0.0000 -5.9444,2.6614 -5.9444 5.9444c -0.0000,3.2830 2.6614,5.9444 5.9444 5.9444c 3.2830,0.0000 5.9444,-2.6614 5.9444 -5.9444Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 472.1975,190.9528 ZM 473.2211,190.1247 v -2.8638 c 0.0000,-0.5751 -0.0805,-0.7016 -0.2530 -0.7016c -0.1495,-0.0000 -0.2875,0.0115 -0.4830 0.0575l -0.0575,-0.3220 c 0.7246,-0.1265 0.8511,-0.1610 1.1961 -0.3335c 0.1150,-0.0575 0.2070,-0.0920 0.2875 -0.0920h 0.1725 l -0.0345,1.0351 h 0.0345 c 0.2990,-0.4485 0.8051,-1.0351 1.3456 -1.0351c 0.4715,-0.0000 0.6441,0.2300 0.6441 0.5290c 0.0000,0.2990 -0.1955,0.4830 -0.4945 0.4830c -0.2300,-0.0000 -0.3565,-0.0920 -0.4715 -0.2070c -0.0690,-0.0690 -0.1495,-0.1035 -0.2300 -0.1035c -0.1265,-0.0000 -0.3795,0.2070 -0.6556 0.5981c -0.0805,0.1035 -0.1380,0.2530 -0.1380 0.4025v 2.5532 c 0.0000,0.3335 0.1150,0.5060 0.4945 0.5060h 0.3335 c 0.0575,-0.0000 0.1035,0.0345 0.1035 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.9086,-0.0230 -1.3571 -0.0230c -0.4140,-0.0000 -1.1961,0.0230 -1.1961 0.0230l -0.0115,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0230,-0.0920 0.0805 -0.0920h 0.2185 c 0.3910,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 476.1884,190.9528 ZM 477.4995,187.7670 h 2.1162 c 0.1150,-0.0000 0.1610,-0.0575 0.1610 -0.1610c 0.0000,-1.0696 -0.5405,-1.3456 -0.9546 -1.3456c -0.2645,-0.0000 -1.1271,0.1035 -1.3226 1.5066ZM 477.4995,187.7670 ZM 480.5358,189.8832 l 0.2300,0.1840 c -0.4370,0.5981 -1.1156,1.0236 -1.9437 1.0236c -1.5756,-0.0000 -2.2427,-1.1731 -2.2427 -2.4267c 0.0000,-1.7482 1.1501,-2.7948 2.2427 -2.7948c 1.5181,-0.0000 1.8747,1.1846 1.8747 2.1507c 0.0000,0.1265 -0.0805,0.1955 -0.2070 0.1955h -3.0248 c -0.0115,0.0690 -0.0115,0.1380 -0.0115 0.2300c 0.0000,1.1731 0.8166,2.0817 1.6446 2.0817c 0.6326,-0.0000 1.0351,-0.2070 1.4376 -0.6441ZM 481.1108,190.9528 ZM 485.5272,189.9062 c -0.5060,0.8741 -1.0581,1.1846 -1.7482 1.1846c -1.3801,-0.0000 -2.2427,-1.0466 -2.2427 -2.5302c 0.0000,-1.6331 1.0236,-2.6912 2.2657 -2.6912c 1.1041,-0.0000 1.6907,0.5636 1.6907 1.1731c 0.0000,0.3335 -0.2070,0.5060 -0.4485 0.5060c -0.2415,-0.0000 -0.4715,-0.1265 -0.5060 -0.4140c -0.0460,-0.3795 -0.1150,-0.8741 -0.7936 -0.8741c -0.7591,-0.0000 -1.3226,0.8051 -1.3226 2.0472c 0.0000,1.3456 0.7246,2.2772 1.6101 2.2772c 0.4945,-0.0000 0.9316,-0.3220 1.2881 -0.8396ZM 485.7457,190.9528 ZM 487.6319,186.4559 v 2.9443 c 0.0000,0.7131 0.0690,1.0581 0.3795 1.0581c 0.2990,-0.0000 0.5290,-0.0920 0.8281 -0.3220l 0.2070,0.1955 c -0.4485,0.5060 -0.9086,0.7591 -1.4376 0.7591c -0.5290,-0.0000 -0.8396,-0.3220 -0.8396 -1.1386v -3.4963 h -0.7476 c -0.0345,-0.0000 -0.0460,-0.0115 -0.0460 -0.0460v -0.3565 c 0.0000,-0.0345 0.0115,-0.0460 0.0345 -0.0460c 0.7706,-0.0000 0.9546,-0.4485 0.9546 -1.3226v -0.2185 l 0.6671,-0.2300 v 1.7712 h 1.2651 c 0.0575,-0.0000 0.0920,0.0230 0.0920 0.0690v 0.2300 c 0.0000,0.1035 -0.1610,0.1495 -0.2760 0.1495h -1.0811 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="2.322614466318867" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 468.2346,195.9065 l -0.0000,-9.9073 h -9.9073 l -0.0000,9.9073 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 472.1975,169.7728 ZM 473.9112,166.1615 v 2.8638 c 0.4025,0.4715 0.7821,0.4945 0.9661 0.4945c 1.2306,-0.0000 1.5066,-1.1501 1.5066 -2.1392c 0.0000,-1.3916 -0.5636,-2.1622 -1.2651 -2.1622c -0.3910,-0.0000 -0.9546,0.3335 -1.2076 0.9431ZM 473.9112,166.1615 ZM 473.0601,171.5900 v -5.6930 c 0.0000,-0.4370 -0.1035,-0.5175 -0.2645 -0.5175c -0.1495,-0.0000 -0.2875,0.0115 -0.4830 0.0575l -0.0575,-0.3220 c 0.7361,-0.1265 0.8741,-0.1725 1.1961 -0.3335c 0.1265,-0.0575 0.2070,-0.0920 0.2875 -0.0920h 0.1725 l -0.0345,0.9201 h 0.0345 c 0.5290,-0.8051 1.1501,-0.9201 1.5181 -0.9201c 1.1156,-0.0000 1.8517,1.1616 1.8517 2.3807c 0.0000,0.9316 -0.2875,1.6446 -0.8051 2.1737c -0.4485,0.4485 -0.9201,0.6671 -1.5296 0.6671c -0.4140,-0.0000 -0.7361,-0.0920 -1.0351 -0.2530v 1.9322 c 0.0000,0.3335 0.1265,0.5060 0.4945 0.5060h 0.2185 c 0.0575,-0.0000 0.1035,0.0345 0.1035 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7936,-0.0230 -1.2421 -0.0230c -0.4025,-0.0000 -1.1846,0.0230 -1.1846 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060ZM 477.7065,169.7728 ZM 478.6036,163.2057 c 0.0000,-0.2990 0.2415,-0.5520 0.5405 -0.5520c 0.3105,-0.0000 0.5520,0.2530 0.5520 0.5520c 0.0000,0.3105 -0.2415,0.5520 -0.5520 0.5520c -0.2990,-0.0000 -0.5405,-0.2415 -0.5405 -0.5520ZM 478.6036,163.2057 ZM 479.6962,168.9447 c 0.0000,0.3335 0.1265,0.5060 0.4945 0.5060h 0.2185 c 0.0575,-0.0000 0.1035,0.0345 0.1035 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.7936,-0.0230 -1.2421 -0.0230c -0.4025,-0.0000 -1.1846,0.0230 -1.1846 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0345,-0.0920 0.0920 -0.0920h 0.2185 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060v -2.8638 c 0.0000,-0.6096 -0.1035,-0.7016 -0.2645 -0.7016c -0.1495,-0.0000 -0.2875,0.0115 -0.4830 0.0575l -0.0575,-0.3220 c 0.7361,-0.1265 0.8626,-0.1725 1.1961 -0.3335c 0.1265,-0.0460 0.2070,-0.0920 0.2875 -0.0920h 0.1725 v 4.2554 ZM 480.7428,169.7728 ZM 483.0085,165.1494 c -0.2300,-0.0000 -0.2760,0.0575 -0.2760 0.1380c 0.0000,0.0575 0.0460,0.1610 0.1725 0.3680l 0.7016,1.0351 c 0.0345,0.0690 0.0690,0.1035 0.1150 0.1035c 0.0345,-0.0000 0.0575,-0.0230 0.1035 -0.0805l 0.7476,-1.0466 c 0.1265,-0.1610 0.1955,-0.2875 0.1955 -0.3795c 0.0000,-0.0920 -0.0805,-0.1380 -0.2415 -0.1380h -0.1840 c -0.0345,-0.0000 -0.0690,-0.0230 -0.0690 -0.0805v -0.2185 l 0.0345,-0.0345 c 0.0000,-0.0000 0.5405,0.0230 0.8971 0.0230c 0.3680,-0.0000 0.9316,-0.0230 0.9316 -0.0230l 0.0115,0.0230 v 0.2185 c 0.0000,0.0805 -0.0690,0.0920 -0.1380 0.0920c -0.4255,-0.0000 -0.5981,0.1380 -1.0236 0.6786l -0.9661,1.2306 c -0.0230,0.0345 -0.0345,0.0575 -0.0345 0.0805c 0.0000,0.0230 0.0115,0.0575 0.0345 0.0920l 1.0351,1.4606 c 0.5290,0.7476 0.6786,0.7591 1.0466 0.7591c 0.1150,-0.0000 0.1610,0.0230 0.1610 0.0920v 0.2185 l -0.0115,0.0230 c 0.0000,-0.0000 -0.6211,-0.0230 -1.0121 -0.0230c -0.4715,-0.0000 -1.1961,0.0230 -1.1961 0.0230l -0.0230,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0230,-0.0920 0.0805 -0.0920h 0.1380 c 0.1840,-0.0000 0.2645,-0.0345 0.2645 -0.1265c 0.0000,-0.1035 -0.1265,-0.2760 -0.3105 -0.5175l -0.6671,-0.9201 c -0.0460,-0.0575 -0.0690,-0.0805 -0.1035 -0.0805c -0.0230,-0.0000 -0.0575,0.0345 -0.1035 0.1035l -0.7246,1.0466 c -0.1725,0.2300 -0.2070,0.2875 -0.2070 0.3680c 0.0000,0.0805 0.0690,0.1265 0.2415 0.1265h 0.1610 c 0.0575,-0.0000 0.0805,0.0345 0.0805 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.5981,-0.0230 -0.9661 -0.0230c -0.3335,-0.0000 -0.8626,0.0230 -0.8626 0.0230l -0.0230,-0.0230 v -0.1955 c 0.0000,-0.0690 0.0460,-0.1150 0.1495 -0.1150c 0.2760,-0.0000 0.5405,-0.0575 1.0236 -0.6786l 0.9661,-1.2421 c 0.0115,-0.0230 0.0230,-0.0460 0.0230 -0.0805c 0.0000,-0.0345 -0.0115,-0.0575 -0.0345 -0.0920l -1.0006,-1.4606 c -0.3220,-0.4715 -0.5290,-0.7476 -0.9316 -0.7476c -0.0805,-0.0000 -0.1610,-0.0345 -0.1610 -0.0805v -0.2185 l 0.0230,-0.0345 l 0.9086,0.0230 l 1.2766,-0.0230 l 0.0345,0.0345 v 0.2070 c 0.0000,0.0575 -0.0460,0.0920 -0.0920 0.0920h -0.1725 ZM 486.4588,169.7728 ZM 487.7699,166.5870 h 2.1162 c 0.1150,-0.0000 0.1610,-0.0575 0.1610 -0.1610c 0.0000,-1.0696 -0.5405,-1.3456 -0.9546 -1.3456c -0.2645,-0.0000 -1.1271,0.1035 -1.3226 1.5066ZM 487.7699,166.5870 ZM 490.8062,168.7032 l 0.2300,0.1840 c -0.4370,0.5981 -1.1156,1.0236 -1.9437 1.0236c -1.5756,-0.0000 -2.2427,-1.1731 -2.2427 -2.4267c 0.0000,-1.7482 1.1501,-2.7948 2.2427 -2.7948c 1.5181,-0.0000 1.8747,1.1846 1.8747 2.1507c 0.0000,0.1265 -0.0805,0.1955 -0.2070 0.1955h -3.0248 c -0.0115,0.0690 -0.0115,0.1380 -0.0115 0.2300c 0.0000,1.1731 0.8166,2.0817 1.6446 2.0817c 0.6326,-0.0000 1.0351,-0.2070 1.4376 -0.6441ZM 491.3813,169.7728 ZM 492.4739,168.9447 v -5.7620 c 0.0000,-0.6556 -0.1150,-0.8396 -0.3450 -0.8396l -0.3680,0.0460 c -0.0345,-0.0000 -0.0690,-0.0230 -0.0690 -0.0575l -0.0230,-0.2875 c 0.1840,-0.0000 0.6096,-0.0690 0.8051 -0.1035c 0.2070,-0.0460 0.3680,-0.0920 0.5981 -0.1955h 0.2530 v 7.1997 c 0.0000,0.3335 0.1265,0.5060 0.4945 0.5060h 0.2760 c 0.0460,-0.0000 0.0920,0.0345 0.0920 0.0920v 0.2185 l -0.0230,0.0230 c 0.0000,-0.0000 -0.8396,-0.0230 -1.2881 -0.0230c -0.4025,-0.0000 -1.2421,0.0230 -1.2421 0.0230l -0.0115,-0.0230 v -0.2185 c 0.0000,-0.0575 0.0230,-0.0920 0.0805 -0.0920h 0.2760 c 0.3795,-0.0000 0.4945,-0.1725 0.4945 -0.5060Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 468.2346,174.7265 l -0.0000,-9.9073 h -9.9073 l -0.0000,9.9073 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 446.1017,149.4455 ZM 447.3503,148.4992 v -6.5852 c 0.0000,-0.7492 -0.1314,-0.9595 -0.3943 -0.9595l -0.4206,0.0526 c -0.0394,-0.0000 -0.0789,-0.0263 -0.0789 -0.0657l -0.0263,-0.3286 c 0.2103,-0.0000 0.6966,-0.0789 0.9201 -0.1183c 0.2366,-0.0526 0.4206,-0.1052 0.6835 -0.2234h 0.2892 v 8.2282 c 0.0000,0.3812 0.1446,0.5783 0.5652 0.5783h 0.3155 c 0.0526,-0.0000 0.1052,0.0394 0.1052 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.9595,-0.0263 -1.4721 -0.0263c -0.4600,-0.0000 -1.4196,0.0263 -1.4196 0.0263l -0.0131,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0263,-0.1052 0.0920 -0.1052h 0.3155 c 0.4338,-0.0000 0.5652,-0.1972 0.5652 -0.5783ZM 449.5191,149.4455 ZM 451.0175,145.8046 h 2.4185 c 0.1314,-0.0000 0.1840,-0.0657 0.1840 -0.1840c 0.0000,-1.2224 -0.6178,-1.5379 -1.0910 -1.5379c -0.3023,-0.0000 -1.2881,0.1183 -1.5116 1.7219ZM 451.0175,145.8046 ZM 454.4876,148.2231 l 0.2629,0.2103 c -0.4995,0.6835 -1.2750,1.1698 -2.2213 1.1698c -1.8007,-0.0000 -2.5631,-1.3407 -2.5631 -2.7734c 0.0000,-1.9979 1.3144,-3.1940 2.5631 -3.1940c 1.7350,-0.0000 2.1425,1.3538 2.1425 2.4579c 0.0000,0.1446 -0.0920,0.2234 -0.2366 0.2234h -3.4569 c -0.0131,0.0789 -0.0131,0.1577 -0.0131 0.2629c 0.0000,1.3407 0.9332,2.3791 1.8796 2.3791c 0.7229,-0.0000 1.1830,-0.2366 1.6430 -0.7361ZM 455.1448,149.4455 ZM 459.2983,145.7258 c 0.0000,-1.0910 -0.5126,-1.7219 -1.3013 -1.7219c -0.6835,-0.0000 -1.1435,0.4732 -1.1435 1.4984c 0.0000,0.6835 0.2629,1.7613 1.3144 1.7613c 0.4600,-0.0000 1.1304,-0.2234 1.1304 -1.5379ZM 459.2983,145.7258 ZM 456.8404,149.5375 c -0.4075,0.3812 -0.4995,0.7886 -0.4995 1.2355c 0.0000,0.9858 1.1830,1.2750 1.6299 1.2750c 1.1304,-0.0000 2.5631,-0.3943 2.5631 -1.3407c 0.0000,-0.3417 -0.1840,-0.5652 -0.6966 -0.8149c -0.3680,-0.1840 -0.9069,-0.3286 -1.5379 -0.3286c -0.1052,-0.0000 -0.2497,0.0131 -0.4338 0.0263c -0.1840,0.0131 -0.3812,0.0131 -0.5258 0.0131c -0.2103,-0.0000 -0.3155,-0.0263 -0.4995 -0.0657ZM 456.8404,149.5375 ZM 460.8361,144.3456 c -0.2103,-0.0000 -0.3417,-0.1183 -0.3943 -0.2234c -0.0789,-0.1183 -0.1314,-0.1577 -0.2234 -0.1577c -0.1577,-0.0000 -0.4075,0.1840 -0.4995 0.3155c 0.3680,0.3943 0.5389,0.7755 0.5389 1.3933c 0.0000,1.2881 -1.0515,1.9848 -2.1556 1.9848c -0.4863,-0.0000 -0.8807,-0.0920 -1.1830 -0.2760c -0.1446,0.2234 -0.2234,0.4995 -0.2234 0.7624c 0.0000,0.5652 0.4338,0.7098 0.8018 0.7098c 0.0657,-0.0000 0.2234,-0.0131 0.4075 -0.0263c 0.3023,-0.0394 0.6309,-0.0657 0.8544 -0.0657c 0.4600,-0.0000 1.3275,0.0920 1.8533 0.5389c 0.3549,0.3286 0.5520,0.6441 0.5520 1.0647c 0.0000,1.4196 -1.8665,2.1688 -3.5620 2.1688c -0.9595,-0.0000 -2.0242,-0.3549 -2.0242 -1.4984c 0.0000,-0.5652 0.3549,-1.1698 1.0252 -1.5904c -0.3286,-0.1709 -0.5652,-0.4995 -0.5652 -0.9727c 0.0000,-0.4469 0.1972,-1.0121 0.5520 -1.3275c -0.3549,-0.3549 -0.6572,-0.8018 -0.6572 -1.5247c 0.0000,-1.2093 1.0647,-1.9848 2.1819 -1.9848c 0.7361,-0.0000 1.1961,0.3023 1.3407 0.4075c 0.3286,-0.4469 0.9201,-0.6703 1.2487 -0.6703c 0.3417,-0.0000 0.5783,0.2234 0.5783 0.4995c 0.0000,0.2892 -0.1840,0.4732 -0.4469 0.4732ZM 461.5065,149.4455 ZM 463.0049,145.8046 h 2.4185 c 0.1314,-0.0000 0.1840,-0.0657 0.1840 -0.1840c 0.0000,-1.2224 -0.6178,-1.5379 -1.0910 -1.5379c -0.3023,-0.0000 -1.2881,0.1183 -1.5116 1.7219ZM 463.0049,145.8046 ZM 466.4749,148.2231 l 0.2629,0.2103 c -0.4995,0.6835 -1.2750,1.1698 -2.2213 1.1698c -1.8007,-0.0000 -2.5631,-1.3407 -2.5631 -2.7734c 0.0000,-1.9979 1.3144,-3.1940 2.5631 -3.1940c 1.7350,-0.0000 2.1425,1.3538 2.1425 2.4579c 0.0000,0.1446 -0.0920,0.2234 -0.2366 0.2234h -3.4569 c -0.0131,0.0789 -0.0131,0.1577 -0.0131 0.2629c 0.0000,1.3407 0.9332,2.3791 1.8796 2.3791c 0.7229,-0.0000 1.1830,-0.2366 1.6430 -0.7361ZM 467.1321,149.4455 ZM 471.9166,148.4992 v -2.8785 c 0.0000,-0.9201 -0.1577,-1.3538 -0.8544 -1.3538c -0.5783,-0.0000 -1.0778,0.2234 -1.7482 1.0121v 3.2203 c 0.0000,0.3812 0.1314,0.5783 0.5652 0.5783h 0.1840 c 0.0657,-0.0000 0.1052,0.0394 0.1052 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.8281,-0.0263 -1.3407 -0.0263c -0.4732,-0.0000 -1.3670,0.0263 -1.3670 0.0263l -0.0263,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0394,-0.1052 0.1052 -0.1052h 0.2497 c 0.4469,-0.0000 0.5652,-0.1972 0.5652 -0.5783v -3.2729 c 0.0000,-0.7098 -0.1052,-0.8018 -0.2892 -0.8018c -0.1709,-0.0000 -0.3286,0.0131 -0.5520 0.0657l -0.0657,-0.3680 c 0.5520,-0.0920 0.9464,-0.1577 1.3538 -0.3812c 0.1446,-0.0657 0.2497,-0.1052 0.3417 -0.1052h 0.1972 l -0.0394,1.1698 h 0.0394 c 0.8412,-0.9858 1.4721,-1.1698 2.1425 -1.1698c 1.1830,-0.0000 1.4327,0.9069 1.4327 2.0768v 2.7865 c 0.0000,0.3812 0.1446,0.5783 0.5652 0.5783h 0.2497 c 0.0657,-0.0000 0.1183,0.0394 0.1183 0.1052v 0.2497 l -0.0263,0.0263 c 0.0000,-0.0000 -0.9069,-0.0263 -1.4196 -0.0263c -0.4600,-0.0000 -1.2881,0.0263 -1.2881 0.0263l -0.0263,-0.0263 v -0.2497 c 0.0000,-0.0657 0.0394,-0.1052 0.1052 -0.1052h 0.1840 c 0.4338,-0.0000 0.5652,-0.1972 0.5652 -0.5783ZM 473.9670,149.4455 ZM 478.3572,148.2757 v -3.4043 c -0.3155,-0.4995 -0.6703,-0.7755 -1.2881 -0.7755c -0.2629,-0.0000 -0.8018,0.0394 -1.2224 0.6572c -0.1840,0.2760 -0.4075,0.8412 -0.4075 1.7876c 0.0000,1.7219 0.8938,2.5105 1.6036 2.5105c 0.4338,-0.0000 0.7886,-0.2629 1.3144 -0.7755ZM 478.3572,148.2757 ZM 479.3430,140.2710 v 7.5973 c 0.0000,0.3943 0.0263,0.6046 0.0526 0.6966c 0.0394,0.1183 0.1840,0.1972 0.2892 0.1972c 0.1577,-0.0000 0.4469,-0.0000 0.6441 -0.0394l 0.0526,0.3680 c -0.7624,0.1314 -1.4458,0.2760 -1.7219 0.5126h -0.3155 l 0.0394,-0.9069 c -0.4995,0.5126 -1.0121,0.9069 -1.6824 0.9069c -1.4196,-0.0000 -2.2871,-1.2093 -2.2871 -2.8260c 0.0000,-0.9727 0.2629,-1.7876 0.8281 -2.3528c 0.5258,-0.4995 1.1041,-0.7886 1.9716 -0.7886c 0.2629,-0.0000 0.8412,0.1183 1.1435 0.2892v -2.0110 c 0.0000,-0.7492 -0.1183,-0.9595 -0.3812 -0.9595l -0.4338,0.0526 c -0.0263,-0.0000 -0.0657,-0.0263 -0.0657 -0.0657l -0.0263,-0.3286 c 0.2103,-0.0000 0.6835,-0.0789 0.9069 -0.1183c 0.2497,-0.0526 0.4338,-0.1052 0.6966 -0.2234h 0.2892 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.2" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9290457865275467" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 567.3290,307.7917 l -0.0000,-178.1968 h -129.7610 l -0.0000,178.1968 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 408.3143,311.6166 l -0.0000,-198.1465 h -3.9629 l -0.0000,198.1465 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 413.2680,113.4701 ZM 417.3295,111.2488 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322ZM 419.0251,113.4701 ZM 419.7743,112.9312 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 421.9036,113.4701 ZM 424.7822,106.3329 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 424.7822,106.3329 ZM 424.7296,113.6279 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.3514,113.4701 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 413.2680,133.2848 ZM 416.6592,128.6186 c 0.0000,-0.0920 0.0131,-0.1972 0.1314 -0.2629c 0.1446,-0.1052 0.3812,-0.2234 0.5783 -0.2234c 0.1709,-0.0000 0.1840,0.1446 0.1840 0.4075v 2.1162 h 1.0647 l -0.0789,0.6178 h -0.9858 v 1.0910 c 0.0000,0.3680 0.0526,0.5520 0.4338 0.5520h 0.3549 c 0.0789,-0.0000 0.0920,0.0657 0.0920 0.0920v 0.2892 c 0.0000,-0.0000 -0.8412,-0.0263 -1.3933 -0.0263c -0.4995,-0.0000 -1.2750,0.0263 -1.2750 0.0263v -0.2892 c 0.0000,-0.0263 0.0131,-0.0920 0.0920 -0.0920h 0.3549 c 0.4075,-0.0000 0.4469,-0.1709 0.4469 -0.5520v -1.0910 h -2.5762 c -0.0526,-0.0000 -0.0789,-0.0263 -0.1183 -0.0789l -0.1052,-0.1446 l -0.1577,-0.2760 c -0.0131,-0.0000 -0.0131,-0.0131 -0.0131 -0.0263c 0.0000,-0.0131 0.0131,-0.0263 0.0263 -0.0394c 0.8544,-0.9464 2.3659,-3.8775 2.8391 -4.9553c 0.0131,-0.0526 0.0394,-0.0657 0.0920 -0.0657c 0.0131,-0.0000 0.3023,0.1183 0.4600 0.1446c -0.5915,1.5904 -1.5641,3.2992 -2.5237 4.8239h 2.0768 v -2.0373 ZM 419.0251,133.2848 ZM 419.7743,132.7459 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 421.9036,133.2848 ZM 425.9652,131.0634 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.3514,133.2848 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 413.2680,153.0994 ZM 416.6592,148.4333 c 0.0000,-0.0920 0.0131,-0.1972 0.1314 -0.2629c 0.1446,-0.1052 0.3812,-0.2234 0.5783 -0.2234c 0.1709,-0.0000 0.1840,0.1446 0.1840 0.4075v 2.1162 h 1.0647 l -0.0789,0.6178 h -0.9858 v 1.0910 c 0.0000,0.3680 0.0526,0.5520 0.4338 0.5520h 0.3549 c 0.0789,-0.0000 0.0920,0.0657 0.0920 0.0920v 0.2892 c 0.0000,-0.0000 -0.8412,-0.0263 -1.3933 -0.0263c -0.4995,-0.0000 -1.2750,0.0263 -1.2750 0.0263v -0.2892 c 0.0000,-0.0263 0.0131,-0.0920 0.0920 -0.0920h 0.3549 c 0.4075,-0.0000 0.4469,-0.1709 0.4469 -0.5520v -1.0910 h -2.5762 c -0.0526,-0.0000 -0.0789,-0.0263 -0.1183 -0.0789l -0.1052,-0.1446 l -0.1577,-0.2760 c -0.0131,-0.0000 -0.0131,-0.0131 -0.0131 -0.0263c 0.0000,-0.0131 0.0131,-0.0263 0.0263 -0.0394c 0.8544,-0.9464 2.3659,-3.8775 2.8391 -4.9553c 0.0131,-0.0526 0.0394,-0.0657 0.0920 -0.0657c 0.0131,-0.0000 0.3023,0.1183 0.4600 0.1446c -0.5915,1.5904 -1.5641,3.2992 -2.5237 4.8239h 2.0768 v -2.0373 ZM 419.0251,153.0994 ZM 419.7743,152.5605 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 421.9036,153.0994 ZM 424.7822,145.9622 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 424.7822,145.9622 ZM 424.7296,153.2571 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.3514,153.0994 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 413.2680,172.9141 ZM 416.1071,165.7243 c -0.3286,-0.0000 -1.2881,0.1840 -1.2881 0.9858c 0.0000,0.2366 -0.0920,0.6441 -0.4469 0.6441c -0.3417,-0.0000 -0.3680,-0.3812 -0.3680 -0.4206c 0.0000,-0.4075 0.5389,-1.6167 2.3659 -1.6167c 1.2750,-0.0000 1.6561,0.8018 1.6561 1.3275c 0.0000,0.3286 -0.1052,0.9858 -1.2881 1.7350c 0.7361,0.1183 1.7087,0.6572 1.7087 2.0242c 0.0000,1.7350 -1.3144,2.6682 -2.7997 2.6682c -0.7492,-0.0000 -1.8007,-0.3286 -1.8007 -0.8281c 0.0000,-0.1972 0.1972,-0.4206 0.4600 -0.4206c 0.2497,-0.0000 0.3680,0.1314 0.4863 0.3023c 0.1446,0.2234 0.3812,0.5389 1.0121 0.5389c 0.4338,-0.0000 1.6693,-0.4338 1.6693 -2.0899c 0.0000,-1.4064 -0.9858,-1.6299 -1.6956 -1.6299c -0.1183,-0.0000 -0.2629,0.0263 -0.4075 0.0526l -0.0526,-0.3943 c 1.0121,-0.1709 1.8533,-1.1567 1.8533 -1.7613c 0.0000,-0.7492 -0.5258,-1.1172 -1.0647 -1.1172ZM 419.0251,172.9141 ZM 419.7743,172.3752 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 421.9036,172.9141 ZM 425.9652,170.6927 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.3514,172.9141 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 413.2680,192.7287 ZM 416.1071,185.5389 c -0.3286,-0.0000 -1.2881,0.1840 -1.2881 0.9858c 0.0000,0.2366 -0.0920,0.6441 -0.4469 0.6441c -0.3417,-0.0000 -0.3680,-0.3812 -0.3680 -0.4206c 0.0000,-0.4075 0.5389,-1.6167 2.3659 -1.6167c 1.2750,-0.0000 1.6561,0.8018 1.6561 1.3275c 0.0000,0.3286 -0.1052,0.9858 -1.2881 1.7350c 0.7361,0.1183 1.7087,0.6572 1.7087 2.0242c 0.0000,1.7350 -1.3144,2.6682 -2.7997 2.6682c -0.7492,-0.0000 -1.8007,-0.3286 -1.8007 -0.8281c 0.0000,-0.1972 0.1972,-0.4206 0.4600 -0.4206c 0.2497,-0.0000 0.3680,0.1314 0.4863 0.3023c 0.1446,0.2234 0.3812,0.5389 1.0121 0.5389c 0.4338,-0.0000 1.6693,-0.4338 1.6693 -2.0899c 0.0000,-1.4064 -0.9858,-1.6299 -1.6956 -1.6299c -0.1183,-0.0000 -0.2629,0.0263 -0.4075 0.0526l -0.0526,-0.3943 c 1.0121,-0.1709 1.8533,-1.1567 1.8533 -1.7613c 0.0000,-0.7492 -0.5258,-1.1172 -1.0647 -1.1172ZM 419.0251,192.7287 ZM 419.7743,192.1898 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 421.9036,192.7287 ZM 424.7822,185.5915 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 424.7822,185.5915 ZM 424.7296,192.8864 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.3514,192.7287 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 413.2680,212.5434 ZM 414.0304,206.7206 c 0.0000,-0.7492 0.7229,-1.7744 2.1030 -1.7744c 1.0121,-0.0000 2.1951,0.3812 2.1951 1.8927c 0.0000,0.9989 -0.5126,1.4984 -1.2224 2.1819l -1.2487,1.2093 c -0.0657,0.0657 -0.9464,0.9332 -0.9464 1.5510h 2.2345 c 0.4469,-0.0000 0.6835,-0.2234 0.8675 -0.9464l 0.3286,0.0526 l -0.2629,1.6561 h -4.0615 c 0.0000,-0.7361 0.1183,-1.3013 1.3407 -2.5499l 0.9201,-0.9069 c 0.7361,-0.7492 1.0384,-1.3933 1.0384 -2.1951c 0.0000,-1.1961 -0.8149,-1.5379 -1.2618 -1.5379c -0.9069,-0.0000 -1.1567,0.4732 -1.1567 0.7886c 0.0000,0.1052 0.0263,0.2103 0.0526 0.3023c 0.0263,0.0920 0.0526,0.1840 0.0526 0.2892c 0.0000,0.3417 -0.2629,0.4732 -0.4732 0.4732c -0.2892,-0.0000 -0.4995,-0.2234 -0.4995 -0.4863ZM 419.0251,212.5434 ZM 419.7743,212.0045 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 421.9036,212.5434 ZM 425.9652,210.3220 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.3514,212.5434 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 413.2680,232.3580 ZM 414.0304,226.5352 c 0.0000,-0.7492 0.7229,-1.7744 2.1030 -1.7744c 1.0121,-0.0000 2.1951,0.3812 2.1951 1.8927c 0.0000,0.9989 -0.5126,1.4984 -1.2224 2.1819l -1.2487,1.2093 c -0.0657,0.0657 -0.9464,0.9332 -0.9464 1.5510h 2.2345 c 0.4469,-0.0000 0.6835,-0.2234 0.8675 -0.9464l 0.3286,0.0526 l -0.2629,1.6561 h -4.0615 c 0.0000,-0.7361 0.1183,-1.3013 1.3407 -2.5499l 0.9201,-0.9069 c 0.7361,-0.7492 1.0384,-1.3933 1.0384 -2.1951c 0.0000,-1.1961 -0.8149,-1.5379 -1.2618 -1.5379c -0.9069,-0.0000 -1.1567,0.4732 -1.1567 0.7886c 0.0000,0.1052 0.0263,0.2103 0.0526 0.3023c 0.0263,0.0920 0.0526,0.1840 0.0526 0.2892c 0.0000,0.3417 -0.2629,0.4732 -0.4732 0.4732c -0.2892,-0.0000 -0.4995,-0.2234 -0.4995 -0.4863ZM 419.0251,232.3580 ZM 419.7743,231.8191 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 421.9036,232.3580 ZM 424.7822,225.2208 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 424.7822,225.2208 ZM 424.7296,232.5157 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.3514,232.3580 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 413.2680,252.1727 ZM 415.7391,245.9029 c -0.2497,-0.0000 -0.8281,0.2366 -1.1172 0.3680l -0.1577,-0.4075 c 1.1567,-0.5389 1.6036,-0.8149 2.2608 -1.2881h 0.2497 v 6.6115 c 0.0000,0.4732 0.0657,0.6046 0.4995 0.6046h 0.6835 c 0.0394,-0.0000 0.1052,0.0263 0.1052 0.1052v 0.2892 l -1.8007,-0.0263 l -1.8270,0.0263 v -0.2892 c 0.0131,-0.0394 0.0263,-0.1052 0.1052 -0.1052h 0.7886 c 0.4995,-0.0000 0.4995,-0.2234 0.4995 -0.6046v -4.5216 c 0.0000,-0.4469 0.0000,-0.7624 -0.2892 -0.7624ZM 419.0251,252.1727 ZM 419.7743,251.6338 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 421.9036,252.1727 ZM 425.9652,249.9513 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.3514,252.1727 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 413.2680,271.9873 ZM 415.7391,265.7176 c -0.2497,-0.0000 -0.8281,0.2366 -1.1172 0.3680l -0.1577,-0.4075 c 1.1567,-0.5389 1.6036,-0.8149 2.2608 -1.2881h 0.2497 v 6.6115 c 0.0000,0.4732 0.0657,0.6046 0.4995 0.6046h 0.6835 c 0.0394,-0.0000 0.1052,0.0263 0.1052 0.1052v 0.2892 l -1.8007,-0.0263 l -1.8270,0.0263 v -0.2892 c 0.0131,-0.0394 0.0263,-0.1052 0.1052 -0.1052h 0.7886 c 0.4995,-0.0000 0.4995,-0.2234 0.4995 -0.6046v -4.5216 c 0.0000,-0.4469 0.0000,-0.7624 -0.2892 -0.7624ZM 419.0251,271.9873 ZM 419.7743,271.4484 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 421.9036,271.9873 ZM 424.7822,264.8501 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 424.7822,264.8501 ZM 424.7296,272.1450 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.3514,271.9873 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 413.2680,291.8020 ZM 416.1466,284.6647 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 416.1466,284.6647 ZM 416.0940,291.9597 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301ZM 419.0251,291.8020 ZM 419.7743,291.2630 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 421.9036,291.8020 ZM 425.9652,289.5806 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.3514,291.8020 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 413.2680,311.6166 ZM 416.1466,304.4794 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 416.1466,304.4794 ZM 416.0940,311.7743 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301ZM 419.0251,311.6166 ZM 419.7743,311.0777 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 421.9036,311.6166 ZM 424.7822,304.4794 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 424.7822,304.4794 ZM 424.7296,311.7743 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.3514,311.6166 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.2292,93.7935 l -0.0000,-3.9629 h -297.2197 l -0.0000,3.9629 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 382.0328,80.7760 ZM 384.8719,73.5862 c -0.3286,-0.0000 -1.2881,0.1840 -1.2881 0.9858c 0.0000,0.2366 -0.0920,0.6441 -0.4469 0.6441c -0.3417,-0.0000 -0.3680,-0.3812 -0.3680 -0.4206c 0.0000,-0.4075 0.5389,-1.6167 2.3659 -1.6167c 1.2750,-0.0000 1.6561,0.8018 1.6561 1.3275c 0.0000,0.3286 -0.1052,0.9858 -1.2881 1.7350c 0.7361,0.1183 1.7087,0.6572 1.7087 2.0242c 0.0000,1.7350 -1.3144,2.6682 -2.7997 2.6682c -0.7492,-0.0000 -1.8007,-0.3286 -1.8007 -0.8281c 0.0000,-0.1972 0.1972,-0.4206 0.4600 -0.4206c 0.2497,-0.0000 0.3680,0.1314 0.4863 0.3023c 0.1446,0.2234 0.3812,0.5389 1.0121 0.5389c 0.4338,-0.0000 1.6693,-0.4338 1.6693 -2.0899c 0.0000,-1.4064 -0.9858,-1.6299 -1.6956 -1.6299c -0.1183,-0.0000 -0.2629,0.0263 -0.4075 0.0526l -0.0526,-0.3943 c 1.0121,-0.1709 1.8533,-1.1567 1.8533 -1.7613c 0.0000,-0.7492 -0.5258,-1.1172 -1.0647 -1.1172ZM 387.7899,80.7760 ZM 388.5391,80.2370 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 390.6685,80.7760 ZM 393.5470,73.6387 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 393.5470,73.6387 ZM 393.4944,80.9337 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.2292,87.8491 v 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.4962,80.7760 ZM 333.2586,74.9531 c 0.0000,-0.7492 0.7229,-1.7744 2.1030 -1.7744c 1.0121,-0.0000 2.1951,0.3812 2.1951 1.8927c 0.0000,0.9989 -0.5126,1.4984 -1.2224 2.1819l -1.2487,1.2093 c -0.0657,0.0657 -0.9464,0.9332 -0.9464 1.5510h 2.2345 c 0.4469,-0.0000 0.6835,-0.2234 0.8675 -0.9464l 0.3286,0.0526 l -0.2629,1.6561 h -4.0615 c 0.0000,-0.7361 0.1183,-1.3013 1.3407 -2.5499l 0.9201,-0.9069 c 0.7361,-0.7492 1.0384,-1.3933 1.0384 -2.1951c 0.0000,-1.1961 -0.8149,-1.5379 -1.2618 -1.5379c -0.9069,-0.0000 -1.1567,0.4732 -1.1567 0.7886c 0.0000,0.1052 0.0263,0.2103 0.0526 0.3023c 0.0263,0.0920 0.0526,0.1840 0.0526 0.2892c 0.0000,0.3417 -0.2629,0.4732 -0.4732 0.4732c -0.2892,-0.0000 -0.4995,-0.2234 -0.4995 -0.4863ZM 338.2533,80.7760 ZM 339.0025,80.2370 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 341.1318,80.7760 ZM 345.1934,78.5546 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 339.6926,87.8491 v 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 282.9596,80.7760 ZM 283.7219,74.9531 c 0.0000,-0.7492 0.7229,-1.7744 2.1030 -1.7744c 1.0121,-0.0000 2.1951,0.3812 2.1951 1.8927c 0.0000,0.9989 -0.5126,1.4984 -1.2224 2.1819l -1.2487,1.2093 c -0.0657,0.0657 -0.9464,0.9332 -0.9464 1.5510h 2.2345 c 0.4469,-0.0000 0.6835,-0.2234 0.8675 -0.9464l 0.3286,0.0526 l -0.2629,1.6561 h -4.0615 c 0.0000,-0.7361 0.1183,-1.3013 1.3407 -2.5499l 0.9201,-0.9069 c 0.7361,-0.7492 1.0384,-1.3933 1.0384 -2.1951c 0.0000,-1.1961 -0.8149,-1.5379 -1.2618 -1.5379c -0.9069,-0.0000 -1.1567,0.4732 -1.1567 0.7886c 0.0000,0.1052 0.0263,0.2103 0.0526 0.3023c 0.0263,0.0920 0.0526,0.1840 0.0526 0.2892c 0.0000,0.3417 -0.2629,0.4732 -0.4732 0.4732c -0.2892,-0.0000 -0.4995,-0.2234 -0.4995 -0.4863ZM 288.7167,80.7760 ZM 289.4659,80.2370 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 291.5952,80.7760 ZM 294.4738,73.6387 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 294.4738,73.6387 ZM 294.4212,80.9337 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 290.1559,87.8491 v 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 233.4230,80.7760 ZM 235.8940,74.5062 c -0.2497,-0.0000 -0.8281,0.2366 -1.1172 0.3680l -0.1577,-0.4075 c 1.1567,-0.5389 1.6036,-0.8149 2.2608 -1.2881h 0.2497 v 6.6115 c 0.0000,0.4732 0.0657,0.6046 0.4995 0.6046h 0.6835 c 0.0394,-0.0000 0.1052,0.0263 0.1052 0.1052v 0.2892 l -1.8007,-0.0263 l -1.8270,0.0263 v -0.2892 c 0.0131,-0.0394 0.0263,-0.1052 0.1052 -0.1052h 0.7886 c 0.4995,-0.0000 0.4995,-0.2234 0.4995 -0.6046v -4.5216 c 0.0000,-0.4469 0.0000,-0.7624 -0.2892 -0.7624ZM 239.1801,80.7760 ZM 239.9293,80.2370 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 242.0586,80.7760 ZM 246.1201,78.5546 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.6193,87.8491 v 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 183.8863,80.7760 ZM 186.3574,74.5062 c -0.2497,-0.0000 -0.8281,0.2366 -1.1172 0.3680l -0.1577,-0.4075 c 1.1567,-0.5389 1.6036,-0.8149 2.2608 -1.2881h 0.2497 v 6.6115 c 0.0000,0.4732 0.0657,0.6046 0.4995 0.6046h 0.6835 c 0.0394,-0.0000 0.1052,0.0263 0.1052 0.1052v 0.2892 l -1.8007,-0.0263 l -1.8270,0.0263 v -0.2892 c 0.0131,-0.0394 0.0263,-0.1052 0.1052 -0.1052h 0.7886 c 0.4995,-0.0000 0.4995,-0.2234 0.4995 -0.6046v -4.5216 c 0.0000,-0.4469 0.0000,-0.7624 -0.2892 -0.7624ZM 189.6434,80.7760 ZM 190.3926,80.2370 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 192.5220,80.7760 ZM 195.4005,73.6387 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 195.4005,73.6387 ZM 195.3479,80.9337 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 191.0827,87.8491 v 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 134.3497,80.7760 ZM 137.2283,73.6387 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 137.2283,73.6387 ZM 137.1757,80.9337 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301ZM 140.1068,80.7760 ZM 140.8560,80.2370 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 142.9854,80.7760 ZM 147.0469,78.5546 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 141.5461,87.8491 v 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 84.8131,80.7760 ZM 87.6916,73.6387 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 87.6916,73.6387 ZM 87.6391,80.9337 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301ZM 90.5702,80.7760 ZM 91.3194,80.2370 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 93.4487,80.7760 ZM 96.3273,73.6387 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 96.3273,73.6387 ZM 96.2747,80.9337 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 92.0095,87.8491 v 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 76.8872,311.6166 l -0.0000,-198.1465 h -3.9629 l -0.0000,198.1465 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 53.5779,113.4701 ZM 57.6394,111.2488 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322ZM 59.3350,113.4701 ZM 60.0842,112.9312 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 62.2136,113.4701 ZM 65.0921,106.3329 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 65.0921,106.3329 ZM 65.0395,113.6279 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 70.9428,113.4701 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 53.5779,133.2848 ZM 56.9691,128.6186 c 0.0000,-0.0920 0.0131,-0.1972 0.1314 -0.2629c 0.1446,-0.1052 0.3812,-0.2234 0.5783 -0.2234c 0.1709,-0.0000 0.1840,0.1446 0.1840 0.4075v 2.1162 h 1.0647 l -0.0789,0.6178 h -0.9858 v 1.0910 c 0.0000,0.3680 0.0526,0.5520 0.4338 0.5520h 0.3549 c 0.0789,-0.0000 0.0920,0.0657 0.0920 0.0920v 0.2892 c 0.0000,-0.0000 -0.8412,-0.0263 -1.3933 -0.0263c -0.4995,-0.0000 -1.2750,0.0263 -1.2750 0.0263v -0.2892 c 0.0000,-0.0263 0.0131,-0.0920 0.0920 -0.0920h 0.3549 c 0.4075,-0.0000 0.4469,-0.1709 0.4469 -0.5520v -1.0910 h -2.5762 c -0.0526,-0.0000 -0.0789,-0.0263 -0.1183 -0.0789l -0.1052,-0.1446 l -0.1577,-0.2760 c -0.0131,-0.0000 -0.0131,-0.0131 -0.0131 -0.0263c 0.0000,-0.0131 0.0131,-0.0263 0.0263 -0.0394c 0.8544,-0.9464 2.3659,-3.8775 2.8391 -4.9553c 0.0131,-0.0526 0.0394,-0.0657 0.0920 -0.0657c 0.0131,-0.0000 0.3023,0.1183 0.4600 0.1446c -0.5915,1.5904 -1.5641,3.2992 -2.5237 4.8239h 2.0768 v -2.0373 ZM 59.3350,133.2848 ZM 60.0842,132.7459 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 62.2136,133.2848 ZM 66.2751,131.0634 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 70.9428,133.2848 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 53.5779,153.0994 ZM 56.9691,148.4333 c 0.0000,-0.0920 0.0131,-0.1972 0.1314 -0.2629c 0.1446,-0.1052 0.3812,-0.2234 0.5783 -0.2234c 0.1709,-0.0000 0.1840,0.1446 0.1840 0.4075v 2.1162 h 1.0647 l -0.0789,0.6178 h -0.9858 v 1.0910 c 0.0000,0.3680 0.0526,0.5520 0.4338 0.5520h 0.3549 c 0.0789,-0.0000 0.0920,0.0657 0.0920 0.0920v 0.2892 c 0.0000,-0.0000 -0.8412,-0.0263 -1.3933 -0.0263c -0.4995,-0.0000 -1.2750,0.0263 -1.2750 0.0263v -0.2892 c 0.0000,-0.0263 0.0131,-0.0920 0.0920 -0.0920h 0.3549 c 0.4075,-0.0000 0.4469,-0.1709 0.4469 -0.5520v -1.0910 h -2.5762 c -0.0526,-0.0000 -0.0789,-0.0263 -0.1183 -0.0789l -0.1052,-0.1446 l -0.1577,-0.2760 c -0.0131,-0.0000 -0.0131,-0.0131 -0.0131 -0.0263c 0.0000,-0.0131 0.0131,-0.0263 0.0263 -0.0394c 0.8544,-0.9464 2.3659,-3.8775 2.8391 -4.9553c 0.0131,-0.0526 0.0394,-0.0657 0.0920 -0.0657c 0.0131,-0.0000 0.3023,0.1183 0.4600 0.1446c -0.5915,1.5904 -1.5641,3.2992 -2.5237 4.8239h 2.0768 v -2.0373 ZM 59.3350,153.0994 ZM 60.0842,152.5605 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 62.2136,153.0994 ZM 65.0921,145.9622 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 65.0921,145.9622 ZM 65.0395,153.2571 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 70.9428,153.0994 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 53.5779,172.9141 ZM 56.4170,165.7243 c -0.3286,-0.0000 -1.2881,0.1840 -1.2881 0.9858c 0.0000,0.2366 -0.0920,0.6441 -0.4469 0.6441c -0.3417,-0.0000 -0.3680,-0.3812 -0.3680 -0.4206c 0.0000,-0.4075 0.5389,-1.6167 2.3659 -1.6167c 1.2750,-0.0000 1.6561,0.8018 1.6561 1.3275c 0.0000,0.3286 -0.1052,0.9858 -1.2881 1.7350c 0.7361,0.1183 1.7087,0.6572 1.7087 2.0242c 0.0000,1.7350 -1.3144,2.6682 -2.7997 2.6682c -0.7492,-0.0000 -1.8007,-0.3286 -1.8007 -0.8281c 0.0000,-0.1972 0.1972,-0.4206 0.4600 -0.4206c 0.2497,-0.0000 0.3680,0.1314 0.4863 0.3023c 0.1446,0.2234 0.3812,0.5389 1.0121 0.5389c 0.4338,-0.0000 1.6693,-0.4338 1.6693 -2.0899c 0.0000,-1.4064 -0.9858,-1.6299 -1.6956 -1.6299c -0.1183,-0.0000 -0.2629,0.0263 -0.4075 0.0526l -0.0526,-0.3943 c 1.0121,-0.1709 1.8533,-1.1567 1.8533 -1.7613c 0.0000,-0.7492 -0.5258,-1.1172 -1.0647 -1.1172ZM 59.3350,172.9141 ZM 60.0842,172.3752 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 62.2136,172.9141 ZM 66.2751,170.6927 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 70.9428,172.9141 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 53.5779,192.7287 ZM 56.4170,185.5389 c -0.3286,-0.0000 -1.2881,0.1840 -1.2881 0.9858c 0.0000,0.2366 -0.0920,0.6441 -0.4469 0.6441c -0.3417,-0.0000 -0.3680,-0.3812 -0.3680 -0.4206c 0.0000,-0.4075 0.5389,-1.6167 2.3659 -1.6167c 1.2750,-0.0000 1.6561,0.8018 1.6561 1.3275c 0.0000,0.3286 -0.1052,0.9858 -1.2881 1.7350c 0.7361,0.1183 1.7087,0.6572 1.7087 2.0242c 0.0000,1.7350 -1.3144,2.6682 -2.7997 2.6682c -0.7492,-0.0000 -1.8007,-0.3286 -1.8007 -0.8281c 0.0000,-0.1972 0.1972,-0.4206 0.4600 -0.4206c 0.2497,-0.0000 0.3680,0.1314 0.4863 0.3023c 0.1446,0.2234 0.3812,0.5389 1.0121 0.5389c 0.4338,-0.0000 1.6693,-0.4338 1.6693 -2.0899c 0.0000,-1.4064 -0.9858,-1.6299 -1.6956 -1.6299c -0.1183,-0.0000 -0.2629,0.0263 -0.4075 0.0526l -0.0526,-0.3943 c 1.0121,-0.1709 1.8533,-1.1567 1.8533 -1.7613c 0.0000,-0.7492 -0.5258,-1.1172 -1.0647 -1.1172ZM 59.3350,192.7287 ZM 60.0842,192.1898 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 62.2136,192.7287 ZM 65.0921,185.5915 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 65.0921,185.5915 ZM 65.0395,192.8864 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 70.9428,192.7287 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 53.5779,212.5434 ZM 54.3403,206.7206 c 0.0000,-0.7492 0.7229,-1.7744 2.1030 -1.7744c 1.0121,-0.0000 2.1951,0.3812 2.1951 1.8927c 0.0000,0.9989 -0.5126,1.4984 -1.2224 2.1819l -1.2487,1.2093 c -0.0657,0.0657 -0.9464,0.9332 -0.9464 1.5510h 2.2345 c 0.4469,-0.0000 0.6835,-0.2234 0.8675 -0.9464l 0.3286,0.0526 l -0.2629,1.6561 h -4.0615 c 0.0000,-0.7361 0.1183,-1.3013 1.3407 -2.5499l 0.9201,-0.9069 c 0.7361,-0.7492 1.0384,-1.3933 1.0384 -2.1951c 0.0000,-1.1961 -0.8149,-1.5379 -1.2618 -1.5379c -0.9069,-0.0000 -1.1567,0.4732 -1.1567 0.7886c 0.0000,0.1052 0.0263,0.2103 0.0526 0.3023c 0.0263,0.0920 0.0526,0.1840 0.0526 0.2892c 0.0000,0.3417 -0.2629,0.4732 -0.4732 0.4732c -0.2892,-0.0000 -0.4995,-0.2234 -0.4995 -0.4863ZM 59.3350,212.5434 ZM 60.0842,212.0045 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 62.2136,212.5434 ZM 66.2751,210.3220 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 70.9428,212.5434 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 53.5779,232.3580 ZM 54.3403,226.5352 c 0.0000,-0.7492 0.7229,-1.7744 2.1030 -1.7744c 1.0121,-0.0000 2.1951,0.3812 2.1951 1.8927c 0.0000,0.9989 -0.5126,1.4984 -1.2224 2.1819l -1.2487,1.2093 c -0.0657,0.0657 -0.9464,0.9332 -0.9464 1.5510h 2.2345 c 0.4469,-0.0000 0.6835,-0.2234 0.8675 -0.9464l 0.3286,0.0526 l -0.2629,1.6561 h -4.0615 c 0.0000,-0.7361 0.1183,-1.3013 1.3407 -2.5499l 0.9201,-0.9069 c 0.7361,-0.7492 1.0384,-1.3933 1.0384 -2.1951c 0.0000,-1.1961 -0.8149,-1.5379 -1.2618 -1.5379c -0.9069,-0.0000 -1.1567,0.4732 -1.1567 0.7886c 0.0000,0.1052 0.0263,0.2103 0.0526 0.3023c 0.0263,0.0920 0.0526,0.1840 0.0526 0.2892c 0.0000,0.3417 -0.2629,0.4732 -0.4732 0.4732c -0.2892,-0.0000 -0.4995,-0.2234 -0.4995 -0.4863ZM 59.3350,232.3580 ZM 60.0842,231.8191 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 62.2136,232.3580 ZM 65.0921,225.2208 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 65.0921,225.2208 ZM 65.0395,232.5157 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 70.9428,232.3580 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 53.5779,252.1727 ZM 56.0490,245.9029 c -0.2497,-0.0000 -0.8281,0.2366 -1.1172 0.3680l -0.1577,-0.4075 c 1.1567,-0.5389 1.6036,-0.8149 2.2608 -1.2881h 0.2497 v 6.6115 c 0.0000,0.4732 0.0657,0.6046 0.4995 0.6046h 0.6835 c 0.0394,-0.0000 0.1052,0.0263 0.1052 0.1052v 0.2892 l -1.8007,-0.0263 l -1.8270,0.0263 v -0.2892 c 0.0131,-0.0394 0.0263,-0.1052 0.1052 -0.1052h 0.7886 c 0.4995,-0.0000 0.4995,-0.2234 0.4995 -0.6046v -4.5216 c 0.0000,-0.4469 0.0000,-0.7624 -0.2892 -0.7624ZM 59.3350,252.1727 ZM 60.0842,251.6338 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 62.2136,252.1727 ZM 66.2751,249.9513 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 70.9428,252.1727 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 53.5779,271.9873 ZM 56.0490,265.7176 c -0.2497,-0.0000 -0.8281,0.2366 -1.1172 0.3680l -0.1577,-0.4075 c 1.1567,-0.5389 1.6036,-0.8149 2.2608 -1.2881h 0.2497 v 6.6115 c 0.0000,0.4732 0.0657,0.6046 0.4995 0.6046h 0.6835 c 0.0394,-0.0000 0.1052,0.0263 0.1052 0.1052v 0.2892 l -1.8007,-0.0263 l -1.8270,0.0263 v -0.2892 c 0.0131,-0.0394 0.0263,-0.1052 0.1052 -0.1052h 0.7886 c 0.4995,-0.0000 0.4995,-0.2234 0.4995 -0.6046v -4.5216 c 0.0000,-0.4469 0.0000,-0.7624 -0.2892 -0.7624ZM 59.3350,271.9873 ZM 60.0842,271.4484 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 62.2136,271.9873 ZM 65.0921,264.8501 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 65.0921,264.8501 ZM 65.0395,272.1450 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 70.9428,271.9873 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 53.5779,291.8020 ZM 56.4565,284.6647 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 56.4565,284.6647 ZM 56.4039,291.9597 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301ZM 59.3350,291.8020 ZM 60.0842,291.2630 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 62.2136,291.8020 ZM 66.2751,289.5806 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 70.9428,291.8020 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 53.5779,311.6166 ZM 56.4565,304.4794 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 56.4565,304.4794 ZM 56.4039,311.7743 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301ZM 59.3350,311.6166 ZM 60.0842,311.0777 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 62.2136,311.6166 ZM 65.0921,304.4794 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 65.0921,304.4794 ZM 65.0395,311.7743 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 70.9428,311.6166 h 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.2292,319.6805 l -0.0000,-3.9629 h -297.2197 l -0.0000,3.9629 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 382.0328,336.3849 ZM 384.8719,329.1951 c -0.3286,-0.0000 -1.2881,0.1840 -1.2881 0.9858c 0.0000,0.2366 -0.0920,0.6441 -0.4469 0.6441c -0.3417,-0.0000 -0.3680,-0.3812 -0.3680 -0.4206c 0.0000,-0.4075 0.5389,-1.6167 2.3659 -1.6167c 1.2750,-0.0000 1.6561,0.8018 1.6561 1.3275c 0.0000,0.3286 -0.1052,0.9858 -1.2881 1.7350c 0.7361,0.1183 1.7087,0.6572 1.7087 2.0242c 0.0000,1.7350 -1.3144,2.6682 -2.7997 2.6682c -0.7492,-0.0000 -1.8007,-0.3286 -1.8007 -0.8281c 0.0000,-0.1972 0.1972,-0.4206 0.4600 -0.4206c 0.2497,-0.0000 0.3680,0.1314 0.4863 0.3023c 0.1446,0.2234 0.3812,0.5389 1.0121 0.5389c 0.4338,-0.0000 1.6693,-0.4338 1.6693 -2.0899c 0.0000,-1.4064 -0.9858,-1.6299 -1.6956 -1.6299c -0.1183,-0.0000 -0.2629,0.0263 -0.4075 0.0526l -0.0526,-0.3943 c 1.0121,-0.1709 1.8533,-1.1567 1.8533 -1.7613c 0.0000,-0.7492 -0.5258,-1.1172 -1.0647 -1.1172ZM 387.7899,336.3849 ZM 388.5391,335.8460 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 390.6685,336.3849 ZM 393.5470,329.2477 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 393.5470,329.2477 ZM 393.4944,336.5426 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.2292,315.7175 v 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.4962,336.3849 ZM 333.2586,330.5621 c 0.0000,-0.7492 0.7229,-1.7744 2.1030 -1.7744c 1.0121,-0.0000 2.1951,0.3812 2.1951 1.8927c 0.0000,0.9989 -0.5126,1.4984 -1.2224 2.1819l -1.2487,1.2093 c -0.0657,0.0657 -0.9464,0.9332 -0.9464 1.5510h 2.2345 c 0.4469,-0.0000 0.6835,-0.2234 0.8675 -0.9464l 0.3286,0.0526 l -0.2629,1.6561 h -4.0615 c 0.0000,-0.7361 0.1183,-1.3013 1.3407 -2.5499l 0.9201,-0.9069 c 0.7361,-0.7492 1.0384,-1.3933 1.0384 -2.1951c 0.0000,-1.1961 -0.8149,-1.5379 -1.2618 -1.5379c -0.9069,-0.0000 -1.1567,0.4732 -1.1567 0.7886c 0.0000,0.1052 0.0263,0.2103 0.0526 0.3023c 0.0263,0.0920 0.0526,0.1840 0.0526 0.2892c 0.0000,0.3417 -0.2629,0.4732 -0.4732 0.4732c -0.2892,-0.0000 -0.4995,-0.2234 -0.4995 -0.4863ZM 338.2533,336.3849 ZM 339.0025,335.8460 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 341.1318,336.3849 ZM 345.1934,334.1636 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 339.6926,315.7175 v 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 282.9596,336.3849 ZM 283.7219,330.5621 c 0.0000,-0.7492 0.7229,-1.7744 2.1030 -1.7744c 1.0121,-0.0000 2.1951,0.3812 2.1951 1.8927c 0.0000,0.9989 -0.5126,1.4984 -1.2224 2.1819l -1.2487,1.2093 c -0.0657,0.0657 -0.9464,0.9332 -0.9464 1.5510h 2.2345 c 0.4469,-0.0000 0.6835,-0.2234 0.8675 -0.9464l 0.3286,0.0526 l -0.2629,1.6561 h -4.0615 c 0.0000,-0.7361 0.1183,-1.3013 1.3407 -2.5499l 0.9201,-0.9069 c 0.7361,-0.7492 1.0384,-1.3933 1.0384 -2.1951c 0.0000,-1.1961 -0.8149,-1.5379 -1.2618 -1.5379c -0.9069,-0.0000 -1.1567,0.4732 -1.1567 0.7886c 0.0000,0.1052 0.0263,0.2103 0.0526 0.3023c 0.0263,0.0920 0.0526,0.1840 0.0526 0.2892c 0.0000,0.3417 -0.2629,0.4732 -0.4732 0.4732c -0.2892,-0.0000 -0.4995,-0.2234 -0.4995 -0.4863ZM 288.7167,336.3849 ZM 289.4659,335.8460 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 291.5952,336.3849 ZM 294.4738,329.2477 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 294.4738,329.2477 ZM 294.4212,336.5426 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 290.1559,315.7175 v 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 233.4230,336.3849 ZM 235.8940,330.1152 c -0.2497,-0.0000 -0.8281,0.2366 -1.1172 0.3680l -0.1577,-0.4075 c 1.1567,-0.5389 1.6036,-0.8149 2.2608 -1.2881h 0.2497 v 6.6115 c 0.0000,0.4732 0.0657,0.6046 0.4995 0.6046h 0.6835 c 0.0394,-0.0000 0.1052,0.0263 0.1052 0.1052v 0.2892 l -1.8007,-0.0263 l -1.8270,0.0263 v -0.2892 c 0.0131,-0.0394 0.0263,-0.1052 0.1052 -0.1052h 0.7886 c 0.4995,-0.0000 0.4995,-0.2234 0.4995 -0.6046v -4.5216 c 0.0000,-0.4469 0.0000,-0.7624 -0.2892 -0.7624ZM 239.1801,336.3849 ZM 239.9293,335.8460 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 242.0586,336.3849 ZM 246.1201,334.1636 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.6193,315.7175 v 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 183.8863,336.3849 ZM 186.3574,330.1152 c -0.2497,-0.0000 -0.8281,0.2366 -1.1172 0.3680l -0.1577,-0.4075 c 1.1567,-0.5389 1.6036,-0.8149 2.2608 -1.2881h 0.2497 v 6.6115 c 0.0000,0.4732 0.0657,0.6046 0.4995 0.6046h 0.6835 c 0.0394,-0.0000 0.1052,0.0263 0.1052 0.1052v 0.2892 l -1.8007,-0.0263 l -1.8270,0.0263 v -0.2892 c 0.0131,-0.0394 0.0263,-0.1052 0.1052 -0.1052h 0.7886 c 0.4995,-0.0000 0.4995,-0.2234 0.4995 -0.6046v -4.5216 c 0.0000,-0.4469 0.0000,-0.7624 -0.2892 -0.7624ZM 189.6434,336.3849 ZM 190.3926,335.8460 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 192.5220,336.3849 ZM 195.4005,329.2477 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 195.4005,329.2477 ZM 195.3479,336.5426 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 191.0827,315.7175 v 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 134.3497,336.3849 ZM 137.2283,329.2477 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 137.2283,329.2477 ZM 137.1757,336.5426 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301ZM 140.1068,336.3849 ZM 140.8560,335.8460 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 142.9854,336.3849 ZM 147.0469,334.1636 c 0.0000,-1.3538 -0.7361,-2.0242 -1.5510 -2.0242c -0.6046,-0.0000 -1.0647,0.0920 -1.5773 0.3023l 0.4206,-3.5883 c 0.4338,0.0394 0.8807,0.0526 1.3407 0.0526c 0.6572,-0.0000 1.3407,-0.0394 2.0505 -0.1183l 0.0789,0.0394 l -0.1972,0.8544 c -0.5126,0.0526 -0.9332,0.0657 -1.3013 0.0657c -0.5915,-0.0000 -1.0384,-0.0526 -1.4984 -0.1052l -0.2497,2.0768 c 0.2760,-0.1052 0.7492,-0.1972 1.2618 -0.1972c 1.3933,-0.0000 2.1688,1.2093 2.1688 2.4185c 0.0000,1.4721 -1.0252,2.6025 -2.5105 2.6025c -0.7492,-0.0000 -1.8402,-0.4206 -1.8402 -0.9332c 0.0000,-0.2497 0.2103,-0.4206 0.4469 -0.4206c 0.2629,-0.0000 0.4338,0.1972 0.5915 0.4075c 0.1972,0.2366 0.4075,0.4995 0.8281 0.4995c 0.8412,-0.0000 1.5379,-0.7886 1.5379 -1.9322Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 141.5461,315.7175 v 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 84.8131,336.3849 ZM 87.6916,329.2477 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 87.6916,329.2477 ZM 87.6391,336.5426 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301ZM 90.5702,336.3849 ZM 91.3194,335.8460 c 0.0000,-0.3812 0.3155,-0.6966 0.6966 -0.6966c 0.3812,-0.0000 0.6966,0.3155 0.6966 0.6966c 0.0000,0.3812 -0.3155,0.6966 -0.6966 0.6966c -0.3812,-0.0000 -0.6966,-0.3155 -0.6966 -0.6966ZM 93.4487,336.3849 ZM 96.3273,329.2477 c -0.5652,-0.0000 -1.3933,0.5520 -1.3933 3.6146c 0.0000,1.0778 0.1972,3.2466 1.3538 3.2466c 0.2234,-0.0000 0.8544,-0.1446 1.1304 -1.1698c 0.1709,-0.6309 0.2629,-1.4196 0.2629 -2.5631c 0.0000,-1.6693 -0.4206,-2.6025 -0.8018 -2.9311c -0.1446,-0.1314 -0.3417,-0.1972 -0.5520 -0.1972ZM 96.3273,329.2477 ZM 96.2747,336.5426 c -1.4064,-0.0000 -2.3528,-1.8007 -2.3528 -3.8118c 0.0000,-2.4579 1.1698,-3.9432 2.4054 -3.9432c 0.5652,-0.0000 1.1304,0.3549 1.5116 0.8675c 0.5520,0.7361 0.8412,1.7219 0.8412 2.9574c 0.0000,2.9180 -1.4458,3.9301 -2.4054 3.9301Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 92.0095,315.7175 v 5.9444 "/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.2292,307.7917 l -0.0000,-198.1465 h -297.2197 l -0.0000,198.1465 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.322614466318867" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 141.5461,149.2745 v 158.5172 "/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="9.290457865275467" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 92.0095,307.7917 l 297.2197,-118.8879 "/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.645228932637734" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 92.0095,268.1624 h 99.0732 l 99.0732,-158.5172 "/></g></svg>
diff --git a/other/pixelChart_Example.svg b/other/pixelChart_Example.svg
--- a/other/pixelChart_Example.svg
+++ b/other/pixelChart_Example.svg
@@ -1,3 +1,3 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="300.0000" stroke-opacity="1" viewBox="0 0 300 300" font-size="1" width="300.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(189,125,167)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(186,128,170)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(182,130,173)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(178,133,176)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(175,135,179)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(171,137,182)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(167,139,185)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(162,142,188)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(158,144,191)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(154,146,193)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(149,148,196)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(144,150,199)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(139,152,201)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(134,154,204)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(128,156,206)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(122,158,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(116,160,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(109,161,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,163,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(179,132,176)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(175,134,178)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(172,137,181)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(168,139,184)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(165,140,186)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(161,142,189)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(157,144,191)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(153,146,194)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(149,148,196)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(144,150,198)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(140,152,201)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(135,153,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(130,155,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(125,157,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(119,158,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(113,160,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(107,162,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,163,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(85,167,220)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(168,139,184)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(165,140,186)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(162,142,188)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(158,144,190)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(155,145,193)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(151,147,195)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(147,149,197)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(143,150,199)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(139,152,201)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(135,153,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(131,155,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(126,156,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(122,158,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(117,159,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(111,161,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(106,162,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,164,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(86,166,220)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49999999999999994" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(78,168,222)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(158,144,191)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(155,145,193)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(152,147,194)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(148,148,196)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(145,150,198)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(142,151,200)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(138,152,201)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(134,154,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(131,155,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(127,156,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(123,157,208)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(118,159,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(114,160,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(109,161,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(104,163,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,164,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49999999999999994" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(87,166,220)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(80,167,221)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(73,169,223)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(147,149,197)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(145,150,198)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(142,151,200)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(139,152,201)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(136,153,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(132,154,204)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(129,155,206)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(126,157,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(122,158,208)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(119,159,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(115,160,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(111,161,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(107,162,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,163,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(88,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(82,167,221)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(76,168,222)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(70,169,223)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(137,153,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(134,154,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(132,154,204)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(129,155,206)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(126,156,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(123,157,208)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(121,158,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(118,159,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(114,160,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(111,161,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(108,162,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(104,162,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,163,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(89,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(84,167,220)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(80,167,221)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49999999999999994" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(75,168,222)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49999999999999994" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,169,223)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(127,156,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(124,157,208)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(122,158,208)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(120,158,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(118,159,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(115,160,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(113,160,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(110,161,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(108,162,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(105,162,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,163,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,164,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(90,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(86,166,220)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49999999999999994" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(83,167,221)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49999999999999994" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,168,221)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(75,168,222)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(71,169,223)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(117,159,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(115,160,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(113,160,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(111,161,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(109,161,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(108,162,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(106,162,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(104,163,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,163,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,164,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,165,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(91,165,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(88,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(86,166,220)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49999999999999994" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(83,167,220)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(81,167,221)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(78,168,222)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49999999999999994" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(75,168,222)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(107,162,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(106,162,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(104,162,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,163,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,163,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,163,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,164,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49999999999999994" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(92,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(90,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(89,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49999999999999994" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(87,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(86,166,220)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(84,167,220)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(83,167,221)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(81,167,221)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,165,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(92,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49999999999999994" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(92,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49999999999999994" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(91,165,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(91,165,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(90,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(90,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(89,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(89,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(89,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(89,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(90,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(90,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(91,165,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49999999999999994" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(91,165,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49999999999999994" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(92,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(92,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,165,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(81,167,221)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(83,167,221)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(84,167,220)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(86,166,220)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49999999999999994" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(87,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(89,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(90,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49999999999999994" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(92,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,164,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,163,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,163,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,163,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(104,162,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(106,162,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(107,162,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(75,168,222)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(78,168,222)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(81,167,221)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49999999999999994" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(83,167,220)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(86,166,220)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(88,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(91,165,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,165,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,164,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,163,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(104,163,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(106,162,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(108,162,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(109,161,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(111,161,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(113,160,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(115,160,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(117,159,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(71,169,223)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(75,168,222)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49999999999999994" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,168,221)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(83,167,221)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(86,166,220)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(90,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,164,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,163,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(105,162,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(108,162,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(110,161,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(113,160,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(115,160,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(118,159,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(120,158,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(122,158,208)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(124,157,208)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(127,156,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49999999999999994" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,169,223)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49999999999999994" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(75,168,222)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49999999999999994" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(80,167,221)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(84,167,220)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(89,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,163,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(104,162,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(108,162,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(111,161,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(114,160,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(118,159,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(121,158,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(123,157,208)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(126,156,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(129,155,206)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(132,154,204)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(134,154,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(137,153,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49999999999999994" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(70,169,223)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(76,168,222)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(82,167,221)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49999999999999994" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(88,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,163,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(107,162,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(111,161,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(115,160,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(119,159,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(122,158,208)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(126,157,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(129,155,206)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(132,154,204)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(136,153,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(139,152,201)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(142,151,200)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(145,150,198)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(147,149,197)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(73,169,223)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(80,167,221)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(87,166,220)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,164,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(104,163,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(109,161,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(114,160,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(118,159,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(123,157,208)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(127,156,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(131,155,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(134,154,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(138,152,201)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(142,151,200)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(145,150,198)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(148,148,196)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(152,147,194)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(155,145,193)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(158,144,191)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(78,168,222)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(86,166,220)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,164,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(106,162,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(111,161,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(117,159,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(122,158,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(126,156,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(131,155,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(135,153,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(139,152,201)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(143,150,199)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(147,149,197)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(151,147,195)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(155,145,193)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(158,144,190)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(162,142,188)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(165,140,186)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(168,139,184)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(85,167,220)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,163,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(107,162,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(113,160,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(119,158,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(125,157,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(130,155,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(135,153,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(140,152,201)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(144,150,198)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(149,148,196)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(153,146,194)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(157,144,191)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(161,142,189)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(165,140,186)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(168,139,184)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(172,137,181)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(175,134,178)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(179,132,176)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,163,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(109,161,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(116,160,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(122,158,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(128,156,206)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(134,154,204)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(139,152,201)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(144,150,199)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(149,148,196)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(154,146,193)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(158,144,191)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(162,142,188)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(167,139,185)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(171,137,182)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(175,135,179)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(178,133,176)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(182,130,173)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(186,128,170)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(189,125,167)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g></svg>
+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="300.0000" stroke-opacity="1" viewBox="0 0 300 300" font-size="1" width="300.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7256250000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(213,105,141)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7137500000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(210,108,145)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.701875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(207,111,148)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6900000000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(203,114,152)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6781250000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(200,117,156)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.66625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(196,120,160)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.654375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(192,123,164)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6425000000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,126,168)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.630625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(184,129,172)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.61875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(179,132,176)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.606875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(174,135,180)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5950000000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(168,138,184)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5831250000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(162,142,188)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.57125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(156,145,192)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5593750000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(149,148,196)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5475" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(140,151,200)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.535625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(131,155,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5237499999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(121,158,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5118750000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(108,161,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 300.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.69125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(204,114,152)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.680625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(201,117,155)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.67" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(197,119,159)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.659375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(194,122,162)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6487499999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(190,125,166)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.638125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(187,127,169)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6275" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(183,130,173)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6168750000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(178,133,176)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6062500000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(174,136,180)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5956250000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(169,138,183)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.585" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(163,141,187)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5743750000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(158,144,191)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.56375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(151,147,195)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.553125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(144,150,198)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5425" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(137,153,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.531875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(128,156,206)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.52125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(118,159,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.510625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(107,162,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.489375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(75,168,222)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.659375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(194,122,162)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6500000000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(191,124,165)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.640625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,127,168)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6312500000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(184,129,171)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6218750000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(180,131,175)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(176,134,178)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6031250000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(172,136,181)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5937500000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(168,139,184)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5843750000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(163,141,187)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.575" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(158,144,191)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.565625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(152,146,194)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.55625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(147,149,197)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.546875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(140,151,201)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5375000000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(133,154,204)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5281250000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(125,157,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.51875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(116,159,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.509375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(105,162,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.4906250000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(78,168,222)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.48124999999999996" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,171,225)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 270.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6300000000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(184,129,172)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.621875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(180,131,175)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.61375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(177,134,177)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6056250000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(173,136,180)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5975" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(170,138,183)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.589375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(166,140,186)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.58125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(161,142,188)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.573125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(157,144,191)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.565" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(152,147,194)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.556875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(147,149,197)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5487500000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(141,151,200)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.540625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(135,153,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5325" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(129,156,206)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.524375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(121,158,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.51625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(113,160,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.508125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(104,163,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49187499999999995" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(80,167,221)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.48375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,170,224)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.4756250000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,172,228)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 255.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.603125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(172,136,181)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5962500000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(169,138,183)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.589375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(166,140,186)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5825" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(162,142,188)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.575625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(158,144,190)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.56875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(154,145,193)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.561875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(150,147,195)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5549999999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(146,149,198)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.548125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(141,151,200)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.54125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(136,153,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.534375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(130,155,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5275" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(124,157,208)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.520625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(118,159,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.51375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(110,161,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.506875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,163,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.493125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(82,167,221)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.48625000000000007" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,169,223)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.479375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(51,171,226)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.4725" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(18,173,229)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5787500000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(160,143,189)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5731250000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(157,144,191)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5675000000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(154,146,193)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.561875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(150,147,195)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.55625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(147,149,197)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.550625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(143,150,199)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.545" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(139,152,201)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5393749999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(134,154,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5337500000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(130,155,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.528125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(125,157,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5225" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(120,158,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.516875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(114,160,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.51125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(108,162,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.505625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,163,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.494375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(84,167,220)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.48875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(74,168,222)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.48312499999999997" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(62,170,225)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.4775" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(45,172,227)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.47187499999999993" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,174,229)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 225.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.556875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(147,149,197)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5525" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(144,150,199)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.548125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(141,151,200)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.54375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(138,152,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.539375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(134,154,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.535" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(131,155,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.530625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(127,156,206)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.52625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(123,157,208)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5218750000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(119,159,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5175" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(115,160,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.513125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(110,161,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.50875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(105,162,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.504375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,164,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49562500000000004" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(86,166,220)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,168,221)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.48687499999999995" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(70,169,223)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.4825" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,170,225)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.47812499999999997" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,172,227)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.47375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,173,228)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 210.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5375000000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(133,154,204)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.534375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(130,155,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.53125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(128,156,206)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5281250000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(125,157,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.525" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(122,158,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.521875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(119,159,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.51875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(116,159,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.515625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(113,160,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5125000000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(109,161,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.509375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(105,162,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.50625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,163,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.503125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49687500000000007" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(88,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49374999999999997" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(83,167,220)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49062500000000003" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(78,168,222)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.48749999999999993" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,169,223)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.484375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(65,170,224)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.48125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,171,225)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.47812499999999997" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,172,227)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 195.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.520625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(118,159,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.51875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(116,159,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.516875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(114,160,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.515" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(112,161,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.513125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(110,161,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.51125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(108,162,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.509375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(105,162,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5075000000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,163,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.505625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,163,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5037499999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.501875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.498125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(90,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(87,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.494375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(84,167,220)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49249999999999994" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(81,167,221)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49062500000000003" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(78,168,222)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.48874999999999996" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(74,168,222)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.48687500000000006" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(70,169,223)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.485" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,170,224)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.50625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,163,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.505625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,163,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.505" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,163,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.504375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,164,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.50375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.503125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5025" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.501875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.50125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.500625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.499375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(92,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49874999999999997" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(91,165,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.498125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(90,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49749999999999994" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(89,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49687500000000007" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(88,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(87,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49562500000000004" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(86,166,220)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.495" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(85,166,220)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.494375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(84,167,220)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 165.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.494375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(84,167,220)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.495" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(85,166,220)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49562500000000004" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(86,166,220)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(87,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49687500000000007" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(88,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49749999999999994" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(89,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.498125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(90,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49874999999999997" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(91,165,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.499375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(92,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.500625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.50125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.501875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5025" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.503125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.50375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.504375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,164,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.505" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,163,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.505625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,163,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.50625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,163,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 150.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.485" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,170,224)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.48687500000000006" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(70,169,223)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.48874999999999996" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(74,168,222)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49062500000000003" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(78,168,222)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49249999999999994" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(81,167,221)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.494375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(84,167,220)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(87,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49812499999999993" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(90,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.501875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.50375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.505625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,163,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5075" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,163,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.509375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(105,162,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.51125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(108,162,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5131249999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(110,161,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.515" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(112,161,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.516875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(114,160,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.51875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(116,159,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.520625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(118,159,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 135.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.47812499999999997" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,172,227)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.48125000000000007" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,171,225)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.484375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(65,170,224)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.48749999999999993" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,169,223)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49062500000000003" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(78,168,222)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49374999999999997" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(83,167,220)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49687500000000007" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(88,166,219)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.503125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.50625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,163,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5093749999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(105,162,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(109,161,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.515625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(113,160,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.51875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(116,159,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.521875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(119,159,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.525" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(122,158,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.528125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(125,157,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.53125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(128,156,206)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.534375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(130,155,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(133,154,204)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 120.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.47375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,173,228)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.47812499999999997" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,172,227)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.48249999999999993" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,170,225)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.48687500000000006" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(70,169,223)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,168,221)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.495625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(86,166,220)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.504375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,164,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.50875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(105,162,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5131249999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(110,161,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5175" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(115,160,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.521875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(119,159,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.52625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(123,157,208)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5306249999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(127,156,206)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.535" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(131,155,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5393749999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(134,154,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.54375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(138,152,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.548125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(141,151,200)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5525" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(144,150,199)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.556875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(147,149,197)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 105.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.47187499999999993" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,174,229)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.4774999999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(45,172,227)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.4831249999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(62,170,225)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.48874999999999996" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(74,168,222)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.494375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(84,167,220)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.505625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,163,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.51125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(108,162,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.516875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(114,160,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5225" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(120,158,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.528125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(125,157,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.53375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(130,155,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.539375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(134,154,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.545" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(139,152,201)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5506249999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(143,150,199)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5562499999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(147,149,197)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.561875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(150,147,195)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5675" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(154,146,193)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.573125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(157,144,191)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.57875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(160,143,189)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 90.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.4724999999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(18,173,229)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.479375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(51,171,226)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.48625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,169,223)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.4931249999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(82,167,221)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.506875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,163,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.51375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(110,161,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.520625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(118,159,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5275" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(124,157,208)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.534375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(130,155,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.54125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(136,153,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.548125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(141,151,200)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5549999999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(146,149,198)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5618749999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(150,147,195)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.56875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(154,145,193)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5756249999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(158,144,190)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5825" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(162,142,188)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.589375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(166,140,186)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.59625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(169,138,183)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6031249999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(172,136,181)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 75.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.47562499999999996" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,172,228)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.48374999999999996" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,170,224)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.491875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(80,167,221)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49999999999999994" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5081249999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(104,163,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.51625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(113,160,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.524375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(121,158,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5325" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(129,156,206)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.540625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(135,153,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5487500000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(141,151,200)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.556875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(147,149,197)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.565" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(152,147,194)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.573125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(157,144,191)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5812499999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(161,142,188)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.589375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(166,140,186)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5974999999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(170,138,183)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.605625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(173,136,180)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.61375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(177,134,177)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.621875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(180,131,175)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6299999999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(184,129,172)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.48125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,171,225)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.490625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(78,168,222)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49999999999999994" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.509375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(105,162,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.51875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(116,159,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.528125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(125,157,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(133,154,204)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.546875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(140,151,201)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5562499999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(147,149,197)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.565625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(152,146,194)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.575" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(158,144,191)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.584375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(163,141,187)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.59375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(168,139,184)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6031249999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(172,136,181)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(176,134,178)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.621875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(180,131,175)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.63125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(184,129,171)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.640625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,127,168)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6499999999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(191,124,165)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.659375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(194,122,162)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 45.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.48937499999999995" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(75,168,222)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5106249999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(107,162,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.52125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(118,159,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.531875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(128,156,206)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5425" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(137,153,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.553125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(144,150,198)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.56375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(151,147,195)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.574375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(158,144,191)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.585" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(163,141,187)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5956250000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(169,138,183)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.60625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(174,136,180)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6168750000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(178,133,176)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6275" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(183,130,173)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.638125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(187,127,169)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6487499999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(190,125,166)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.659375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(194,122,162)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6699999999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(197,119,159)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.680625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(201,117,155)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6912499999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(204,114,152)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,15.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5118750000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(108,161,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,30.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5237499999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(121,158,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,45.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.535625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(131,155,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,60.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5475" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(140,151,200)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,75.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.559375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(149,148,196)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,90.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.57125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(156,145,192)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,105.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5831249999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(162,142,188)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,120.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.595" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(168,138,184)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,135.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.606875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(174,135,180)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,150.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6187499999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(179,132,176)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,165.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.630625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(184,129,172)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,180.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6425000000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,126,168)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,195.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6543749999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(192,123,164)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,210.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.66625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(196,120,160)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,225.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.678125" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(200,117,156)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,240.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.69" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(203,114,152)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,255.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.701875" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(207,111,148)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,270.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.71375" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(210,108,145)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,285.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.725625" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(213,105,141)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 15.0000,300.0000 l -0.0000,-15.0000 h -15.0000 l -0.0000,15.0000 Z"/></g></svg>
diff --git a/other/pixelHudExample.svg b/other/pixelHudExample.svg
--- a/other/pixelHudExample.svg
+++ b/other/pixelHudExample.svg
@@ -1,3 +1,3 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="400.0000" stroke-opacity="1" viewBox="0 0 600 400" font-size="1" width="600.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(128,128,128)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(126,130,134)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(125,132,139)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(123,134,145)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(122,136,150)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(121,137,155)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(119,139,160)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(118,141,164)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(116,143,169)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(115,145,173)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(113,147,177)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(111,148,181)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(110,150,185)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(108,152,189)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(107,153,193)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(105,155,197)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,157,200)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,158,204)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,160,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(124,133,144)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(122,135,149)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(121,137,154)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(120,139,158)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(118,140,162)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(117,142,166)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(116,143,170)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(114,145,174)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(113,147,178)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(112,148,181)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(110,150,185)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(109,151,188)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(107,153,192)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(106,154,195)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(104,156,198)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,157,201)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,159,204)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,160,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,163,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(120,139,158)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(119,140,162)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(117,141,165)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(116,143,169)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(115,144,172)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(114,146,175)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(113,147,179)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(111,148,182)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(110,150,185)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(109,151,188)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(107,153,191)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(106,154,194)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(105,155,197)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,156,200)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,158,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,159,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,160,208)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,163,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,164,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(116,143,169)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(115,144,172)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(114,146,175)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(113,147,178)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(112,148,181)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(111,149,183)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(110,150,186)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(108,151,189)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(107,153,191)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(106,154,194)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(105,155,196)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(104,156,199)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,157,201)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,158,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,159,206)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,160,208)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,162,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,163,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,165,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(113,147,179)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(112,148,181)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(111,149,183)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(110,150,186)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(109,151,188)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(108,152,190)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(107,153,192)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(106,154,194)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(105,155,196)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(104,156,199)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,157,201)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,158,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,159,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,160,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,160,208)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,162,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,163,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,164,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(109,151,187)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(108,151,189)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(108,152,190)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(107,153,192)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(106,154,194)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(105,155,196)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(104,155,197)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(104,156,199)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,157,201)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,158,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,158,204)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,159,206)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,160,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,161,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,162,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,163,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,164,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(106,154,194)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(106,154,195)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(105,155,196)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(104,156,198)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(104,156,199)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,157,200)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,157,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,158,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,158,204)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,159,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,160,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,160,208)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,162,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,163,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,163,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,164,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,164,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,156,200)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,157,201)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,157,201)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,158,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,158,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,158,204)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,159,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,159,206)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,160,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,160,208)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,161,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,162,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,162,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,163,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,163,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,163,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,164,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,164,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,159,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,159,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,159,206)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,159,206)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,160,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,160,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,160,208)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,160,208)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,161,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,162,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,162,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,162,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,162,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,163,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,163,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,163,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,163,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,161,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,161,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,162,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,162,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,162,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,162,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,162,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,162,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,162,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,162,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,162,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,162,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,162,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,162,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,162,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,162,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,162,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,162,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,161,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,161,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,163,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,163,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,163,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,163,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,162,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,162,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,162,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,162,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,161,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,160,208)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,160,208)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,160,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,160,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,159,206)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,159,206)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,159,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,159,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,164,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,164,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,163,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,163,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,163,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,162,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,162,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,161,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,160,208)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,160,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,159,206)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,159,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,158,204)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,158,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,158,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,157,201)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,157,201)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,156,200)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,164,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,164,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,163,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,163,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,162,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,160,208)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,160,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,159,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,158,204)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,158,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,157,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,157,200)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(104,156,199)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(104,156,198)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(105,155,196)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(106,154,195)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(106,154,194)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,164,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,163,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,162,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,161,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,160,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,159,206)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,158,204)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,158,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,157,201)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(104,156,199)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(104,155,197)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(105,155,196)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(106,154,194)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(107,153,192)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(108,152,190)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(108,151,189)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(109,151,187)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,164,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,163,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,162,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,160,208)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,160,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,159,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,158,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,157,201)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(104,156,199)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(105,155,196)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(106,154,194)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(107,153,192)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(108,152,190)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(109,151,188)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(110,150,186)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(111,149,183)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(112,148,181)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(113,147,179)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,165,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,163,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,162,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,160,208)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,159,206)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,158,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,157,201)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(104,156,199)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(105,155,196)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(106,154,194)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(107,153,191)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(108,151,189)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(110,150,186)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(111,149,183)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(112,148,181)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(113,147,178)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(114,146,175)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(115,144,172)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(116,143,169)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,164,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,163,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,160,208)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,159,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,158,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,156,200)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(105,155,197)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(106,154,194)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(107,153,191)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(109,151,188)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(110,150,185)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(111,148,182)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(113,147,179)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(114,146,175)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(115,144,172)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(116,143,169)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(117,141,165)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(119,140,162)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(120,139,158)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,163,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,160,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,159,204)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,157,201)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(104,156,198)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(106,154,195)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(107,153,192)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(109,151,188)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(110,150,185)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(112,148,181)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(113,147,178)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(114,145,174)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(116,143,170)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(117,142,166)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(118,140,162)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(120,139,158)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(121,137,154)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(122,135,149)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(124,133,144)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,161,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,160,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,158,204)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,157,200)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(105,155,197)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(107,153,193)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(108,152,189)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(110,150,185)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(111,148,181)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(113,147,177)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(115,145,173)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(116,143,169)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(118,141,164)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(119,139,160)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(121,137,155)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(122,136,150)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(123,134,145)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(125,132,139)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(126,130,134)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(128,128,128)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(31,119,180)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 91.9946,314.4808 ZM 57.7902,303.3375 l 15.1357,0.0000 c 0.1788,-0.6555 0.2979,-2.7411 0.2979 -4.2309c 0.0000,-5.7802 -2.6815,-9.1768 -9.1172 -9.1768c -7.5679,-0.0000 -9.0576,4.4096 -9.0576 8.5213c -0.0000,4.2904 1.0130,4.8863 2.7411 4.8863ZM 57.7902,303.3375 ZM 87.7637,308.1643 l -29.9735,-0.0000 c -1.9069,-0.0000 -2.6219,1.6089 -2.6219 2.6219l -0.0000,2.3240 c -0.0000,0.2384 -0.1192,0.3575 -0.3575 0.3575l -1.2514,-0.0000 l -0.0596,-0.1192 c 0.0000,-0.0000 0.0596,-4.8267 0.0596 -7.5679c 0.0000,-1.7877 -0.5363,-6.1973 -0.5363 -7.7466c 0.0000,-11.0241 6.4953,-13.1693 10.0110 -13.1693c 5.0651,0.0000 12.1563,3.0987 12.1563 13.9439c -0.0000,2.0856 -0.1788,3.2178 -0.5959 4.5288l 13.1693,0.0000 c 1.7877,0.0000 2.5623,-0.8938 2.5623 -3.2178l 0.0000,-1.6089 c 0.0000,-0.2384 0.1788,-0.4767 0.4767 -0.4767l 1.1322,0.0000 l 0.1192,0.1192 c 0.0000,-0.0000 -0.1192,5.1843 -0.1192 7.5083c -0.0000,2.1452 0.1192,7.6870 0.1192 7.6870l -0.1192,0.1192 l -1.1322,-0.0000 c -0.2979,-0.0000 -0.4767,-0.1788 -0.4767 -0.4767l 0.0000,-1.5493 c 0.0000,-2.4432 -0.8938,-3.2774 -2.5623 -3.2774ZM 91.9946,283.4347 ZM 57.9690,278.7867 c -1.5493,-0.0000 -2.8603,-1.2514 -2.8603 -2.8007c 0.0000,-1.6089 1.3110,-2.8603 2.8603 -2.8603c 1.6089,0.0000 2.8603,1.2514 2.8603 2.8603c -0.0000,1.5493 -1.2514,2.8007 -2.8603 2.8007ZM 57.9690,278.7867 ZM 87.7041,273.1257 c 1.7281,0.0000 2.6219,-0.6555 2.6219 -2.5623l 0.0000,-1.1322 c 0.0000,-0.2979 0.1788,-0.5363 0.4767 -0.5363l 1.1322,0.0000 l 0.1192,0.1192 c 0.0000,-0.0000 -0.1192,4.1117 -0.1192 6.4357c -0.0000,2.0856 0.1192,6.1377 0.1192 6.1377l -0.1192,0.1192 l -1.1322,-0.0000 c -0.2979,-0.0000 -0.4767,-0.1788 -0.4767 -0.4767l 0.0000,-1.1322 c 0.0000,-1.9665 -0.8938,-2.5623 -2.6219 -2.5623l -14.8378,-0.0000 c -3.1582,-0.0000 -3.6350,0.5363 -3.6350 1.3706c -0.0000,0.7747 0.0596,1.4897 0.2979 2.5028l -1.6685,0.2979 c -0.6555,-3.8137 -0.8938,-4.4692 -1.7281 -6.1973c -0.2384,-0.6555 -0.4767,-1.0726 -0.4767 -1.4897l 0.0000,-0.8938 l 22.0481,0.0000 ZM 91.9946,267.7030 ZM 68.0396,255.9639 c -0.0000,1.1918 0.2979,1.4301 0.7151 1.4301c 0.2979,0.0000 0.8343,-0.2384 1.9069 -0.8938l 5.3631,-3.6350 c 0.3575,-0.1788 0.5363,-0.3575 0.5363 -0.5959c 0.0000,-0.1788 -0.1192,-0.2979 -0.4171 -0.5363l -5.4226,-3.8733 c -0.8343,-0.6555 -1.4897,-1.0130 -1.9665 -1.0130c -0.4767,-0.0000 -0.7151,0.4171 -0.7151 1.2514l -0.0000,0.9534 c -0.0000,0.1788 -0.1192,0.3575 -0.4171 0.3575l -1.1322,-0.0000 l -0.1788,-0.1788 c 0.0000,-0.0000 0.1192,-2.8007 0.1192 -4.6480c 0.0000,-1.9069 -0.1192,-4.8267 -0.1192 -4.8267l 0.1192,-0.0596 l 1.1322,0.0000 c 0.4171,0.0000 0.4767,0.3575 0.4767 0.7151c -0.0000,2.2048 0.7151,3.0987 3.5158 5.3035l 6.3761,5.0055 c 0.1788,0.1192 0.2979,0.1788 0.4171 0.1788c 0.1192,0.0000 0.2979,-0.0596 0.4767 -0.1788l 7.5679,-5.3631 c 3.8733,-2.7411 3.9329,-3.5158 3.9329 -5.4226c 0.0000,-0.5959 0.1192,-0.8343 0.4767 -0.8343l 1.1322,0.0000 l 0.1192,0.0596 c 0.0000,-0.0000 -0.1192,3.2178 -0.1192 5.2439c -0.0000,2.4432 0.1192,6.1973 0.1192 6.1973l -0.1192,0.1192 l -1.1322,-0.0000 c -0.2979,-0.0000 -0.4767,-0.1192 -0.4767 -0.4171l 0.0000,-0.7151 c 0.0000,-0.9534 -0.1788,-1.3706 -0.6555 -1.3706c -0.5363,-0.0000 -1.4301,0.6555 -2.6815 1.6089l -4.7672,3.4562 c -0.2979,0.2384 -0.4171,0.3575 -0.4171 0.5363c -0.0000,0.1192 0.1788,0.2979 0.5363 0.5363l 5.4226,3.7541 c 1.1918,0.8938 1.4897,1.0726 1.9069 1.0726c 0.4171,0.0000 0.6555,-0.3575 0.6555 -1.2514l 0.0000,-0.8343 c 0.0000,-0.2979 0.1788,-0.4171 0.4767 -0.4171l 1.1322,0.0000 l 0.1192,0.1192 c 0.0000,-0.0000 -0.1192,3.0987 -0.1192 5.0055c -0.0000,1.7281 0.1192,4.4692 0.1192 4.4692l -0.1192,0.1192 l -1.0130,-0.0000 c -0.3575,-0.0000 -0.5959,-0.2384 -0.5959 -0.7747c 0.0000,-1.4301 -0.2979,-2.8007 -3.5158 -5.3035l -6.4357,-5.0055 c -0.1192,-0.0596 -0.2384,-0.1192 -0.4171 -0.1192c -0.1788,-0.0000 -0.2979,0.0596 -0.4767 0.1788l -7.5679,5.1843 c -2.4432,1.6685 -3.8733,2.7411 -3.8733 4.8267c -0.0000,0.4171 -0.1788,0.8343 -0.4171 0.8343l -1.1322,-0.0000 l -0.1788,-0.1192 l 0.1192,-4.7076 l -0.1192,-6.6144 l 0.1788,-0.1788 l 1.0726,0.0000 c 0.2979,0.0000 0.4767,0.2384 0.4767 0.4767l -0.0000,0.8938 ZM 91.9946,238.0871 ZM 75.4883,231.2939 l 0.0000,-10.9645 c 0.0000,-0.5959 -0.2979,-0.8343 -0.8343 -0.8343c -5.5418,-0.0000 -6.9720,2.8007 -6.9720 4.9459c -0.0000,1.3706 0.5363,5.8398 7.8062 6.8528ZM 75.4883,231.2939 ZM 86.4528,215.5623 l 0.9534,-1.1918 c 3.0987,2.2644 5.3035,5.7802 5.3035 10.0706c -0.0000,8.1638 -6.0781,11.6199 -12.5734 11.6199c -9.0576,-0.0000 -14.4802,-5.9589 -14.4802 -11.6199c 0.0000,-7.8658 6.1377,-9.7131 11.1432 -9.7131c 0.6555,0.0000 1.0130,0.4171 1.0130 1.0726l -0.0000,15.6720 c 0.3575,0.0596 0.7151,0.0596 1.1918 0.0596c 6.0781,0.0000 10.7857,-4.2309 10.7857 -8.5213c 0.0000,-3.2774 -1.0726,-5.3631 -3.3370 -7.4487ZM 91.9946,212.5828 ZM 87.7041,206.9218 l -29.8543,-0.0000 c -3.3966,-0.0000 -4.3500,0.5959 -4.3500 1.7877l 0.2384,1.9069 c -0.0000,0.1788 -0.1192,0.3575 -0.2979 0.3575l -1.4897,0.1192 c 0.0000,-0.9534 -0.3575,-3.1582 -0.5363 -4.1713c -0.2384,-1.0726 -0.4767,-1.9069 -1.0130 -3.0987l 0.0000,-1.3110 l 37.3030,0.0000 c 1.7281,0.0000 2.6219,-0.6555 2.6219 -2.5623l 0.0000,-1.4301 c 0.0000,-0.2384 0.1788,-0.4767 0.4767 -0.4767l 1.1322,0.0000 l 0.1192,0.1192 c 0.0000,-0.0000 -0.1192,4.3500 -0.1192 6.6740c -0.0000,2.0856 0.1192,6.4357 0.1192 6.4357l -0.1192,0.0596 l -1.1322,-0.0000 c -0.2979,-0.0000 -0.4767,-0.1192 -0.4767 -0.4171l 0.0000,-1.4301 c 0.0000,-1.9665 -0.8938,-2.5623 -2.6219 -2.5623ZM 91.9946,182.1922 ZM 92.7097,161.0379 c -0.0000,12.8117 -9.8919,18.9494 -19.4858 18.9494c -11.7391,-0.0000 -20.4392,-9.1172 -20.4392 -19.0090c 0.0000,-7.3295 2.5028,-9.6535 2.6815 -13.0501c 3.2774,-0.1788 6.1377,-0.7151 9.2364 -1.3110l 0.2384,1.7877 c -5.1247,1.5493 -9.9514,5.0055 -9.9514 13.2289c -0.0000,4.7076 5.0055,13.1693 17.1022 13.1693c 8.7001,0.0000 18.1748,-4.4692 18.1748 -13.7056c 0.0000,-5.5418 -1.9665,-9.5939 -6.6144 -13.8248l 0.8938,-1.3706 c 5.3035,4.0521 8.1638,9.3555 8.1638 15.1357ZM 91.9946,143.8166 ZM 50.4011,134.1035 l 20.2008,0.0000 c -3.9925,-3.9925 -4.9459,-7.5083 -4.9459 -9.8323c 0.0000,-4.2904 3.2774,-6.4357 9.4151 -6.4357l 12.6330,0.0000 c 1.7281,0.0000 2.6219,-0.5959 2.6219 -2.5623l 0.0000,-1.1322 c 0.0000,-0.2384 0.1788,-0.4767 0.4767 -0.4767l 1.1322,0.0000 l 0.1192,0.1192 c 0.0000,-0.0000 -0.1192,4.0521 -0.1192 6.4357c -0.0000,2.0856 0.1192,6.1377 0.1192 6.1377l -0.1192,0.1192 l -1.1322,-0.0000 c -0.2979,-0.0000 -0.4767,-0.1788 -0.4767 -0.4767l 0.0000,-1.1322 c 0.0000,-2.0260 -0.8938,-2.5623 -2.6219 -2.5623l -13.2885,-0.0000 c -4.8267,-0.0000 -5.9589,1.3110 -5.9589 4.6480c -0.0000,1.7281 1.5493,4.2904 4.3500 7.1507l 14.8974,0.0000 c 1.7281,0.0000 2.6219,-0.5959 2.6219 -2.5623l 0.0000,-1.1322 c 0.0000,-0.2384 0.1788,-0.4767 0.4767 -0.4767l 1.1322,0.0000 l 0.1192,0.1192 c 0.0000,-0.0000 -0.1192,4.0521 -0.1192 6.3761c -0.0000,2.1452 0.1192,6.1377 0.1192 6.1377l -0.1192,0.1192 l -1.1322,-0.0000 c -0.2979,-0.0000 -0.4767,-0.1192 -0.4767 -0.4171l 0.0000,-1.1322 c 0.0000,-2.0260 -0.8938,-2.5623 -2.6219 -2.5623l -29.8543,-0.0000 c -3.3966,-0.0000 -4.3500,0.5363 -4.3500 1.7281l 0.2384,1.9665 c -0.0000,0.1788 -0.1192,0.2979 -0.2979 0.2979l -1.4897,0.1192 c 0.0000,-0.9534 -0.3575,-3.0987 -0.5363 -4.1117c -0.2384,-1.0726 -0.4767,-1.9665 -1.0130 -3.1582l 0.0000,-1.3110 ZM 91.9946,112.9492 ZM 77.3952,95.6087 l 1.1918,4.7076 c 1.6089,5.2439 4.3500,6.0185 7.0316 6.0185c 1.8473,0.0000 4.6480,-0.8938 4.6480 -4.6480c 0.0000,-1.7877 -1.7281,-4.5288 -3.0391 -6.0781l -9.8323,-0.0000 ZM 77.3952,95.6087 ZM 92.7097,91.7949 c -0.0000,2.2644 -2.0260,3.5158 -3.4562 3.7541l 0.9534,1.3706 c 1.9069,2.7411 2.5028,3.7541 2.5028 6.4953c -0.0000,4.1713 -2.3836,7.2103 -6.8528 7.2103c -4.5288,-0.0000 -7.6275,-3.8733 -9.0576 -9.5343l -1.3706,-5.4822 c -6.7336,-0.0000 -7.9850,3.0987 -7.9850 5.1247c -0.0000,2.2644 1.0130,4.8863 2.8603 4.8863c 0.6555,0.0000 1.0130,-0.1192 1.1918 -0.1788c 0.2384,-0.1192 0.6555,-0.1788 1.0726 -0.1788c 0.7747,0.0000 1.9665,0.5959 1.9665 2.3240c -0.0000,1.4301 -0.9534,2.3836 -2.3836 2.3836c -3.4562,-0.0000 -6.4953,-5.6014 -6.4953 -9.4151c 0.0000,-4.3500 1.7877,-9.3555 10.2494 -9.3555l 8.7597,0.0000 c 3.6350,0.0000 5.1843,-0.0596 5.1843 -1.4301c 0.0000,-1.3110 -1.6685,-1.6685 -2.9795 -1.7281l 0.2979,-1.4897 c 4.3500,0.3575 5.5418,2.2048 5.5418 5.2439ZM 91.9946,86.0744 ZM 87.7041,80.7709 l -14.8378,-0.0000 c -2.9795,-0.0000 -3.6350,0.4171 -3.6350 1.3110c -0.0000,0.7747 0.0596,1.4897 0.2979 2.5028l -1.6685,0.2979 c -0.6555,-3.7541 -0.8343,-4.4096 -1.7281 -6.1973c -0.2979,-0.5959 -0.4767,-1.0726 -0.4767 -1.4897l 0.0000,-0.8938 l 5.3631,0.1788 l 0.0000,-0.1788 c -2.3240,-1.5493 -5.3631,-4.1713 -5.3631 -6.9720c 0.0000,-2.4432 1.1918,-3.3370 2.7411 -3.3370c 1.5493,0.0000 2.5028,1.0130 2.5028 2.5623c -0.0000,1.1918 -0.4767,1.8473 -1.0726 2.4432c -0.3575,0.3575 -0.5363,0.7747 -0.5363 1.1918c -0.0000,0.6555 1.0726,1.9665 3.0987 3.3966c 0.5363,0.4171 1.3110,0.7151 2.0856 0.7151l 13.2289,0.0000 c 1.7281,0.0000 2.6219,-0.5959 2.6219 -2.5623l 0.0000,-1.7281 c 0.0000,-0.2979 0.1788,-0.5363 0.4767 -0.5363l 1.1322,0.0000 l 0.1192,0.1192 c 0.0000,-0.0000 -0.1192,4.7076 -0.1192 7.0316c -0.0000,2.1452 0.1192,6.1973 0.1192 6.1973l -0.1192,0.0596 l -1.1322,-0.0000 c -0.2979,-0.0000 -0.4767,-0.1192 -0.4767 -0.4171l 0.0000,-1.1322 c 0.0000,-2.0260 -0.8938,-2.5623 -2.6219 -2.5623ZM 91.9946,65.3968 ZM 68.6951,55.6241 l 15.2549,0.0000 c 3.6945,0.0000 5.4822,-0.3575 5.4822 -1.9665c 0.0000,-1.5493 -0.4767,-2.7411 -1.6685 -4.2904l 1.0130,-1.0726 c 2.6219,2.3240 3.9329,4.7076 3.9329 7.4487c -0.0000,2.7411 -1.6685,4.3500 -5.8994 4.3500l -18.1152,-0.0000 l -0.0000,3.8733 c -0.0000,0.1788 -0.0596,0.2384 -0.2384 0.2384l -1.8473,-0.0000 c -0.1788,-0.0000 -0.2384,-0.0596 -0.2384 -0.1788c 0.0000,-3.9925 -2.3240,-4.9459 -6.8528 -4.9459l -1.1322,-0.0000 l -1.1918,-3.4562 l 9.1768,0.0000 l 0.0000,-6.5548 c 0.0000,-0.2979 0.1192,-0.4767 0.3575 -0.4767l 1.1918,0.0000 c 0.5363,0.0000 0.7747,0.8343 0.7747 1.4301l -0.0000,5.6014 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 539.4106,304.6528 ZM 541.8967,303.7351 c 0.3337,0.4004 0.6841,0.5339 1.2013 0.5339c 1.5851,-0.0000 2.3860,-1.4683 2.3860 -3.3704c 0.0000,-1.7019 -0.8676,-2.9199 -1.8854 -2.9199c -0.1835,-0.0000 -1.0512,0.0334 -1.7019 0.7175v 5.0389 ZM 541.8967,303.7351 ZM 540.6453,295.0923 c 0.0000,-0.9510 -0.1669,-1.2180 -0.5006 -1.2180l -0.5339,0.0667 c -0.0501,-0.0000 -0.0834,-0.0334 -0.0834 -0.0834l -0.0334,-0.4171 c 0.2670,-0.0000 0.8676,-0.1001 1.1513 -0.1502c 0.3003,-0.0667 0.5506,-0.1335 0.8843 -0.2836h 0.3671 v 5.1724 c 0.5673,-0.6173 1.2347,-0.9177 2.0356 -0.9177c 1.4516,-0.0000 2.8365,1.3849 2.8365 3.4204c 0.0000,2.6529 -1.8687,4.1546 -3.5706 4.1546c -0.7175,-0.0000 -1.2514,-0.2002 -1.7352 -0.6173c -0.1502,0.2002 -0.3671,0.4505 -0.5172 0.6173l -0.3504,-0.0834 c 0.0501,-0.4004 0.0501,-0.6674 0.0501 -1.3181v -8.3425 ZM 547.2693,304.6528 ZM 548.8544,303.4515 v -8.3592 c 0.0000,-0.9510 -0.1669,-1.2180 -0.5006 -1.2180l -0.5339,0.0667 c -0.0501,-0.0000 -0.1001,-0.0334 -0.1001 -0.0834l -0.0334,-0.4171 c 0.2670,-0.0000 0.8843,-0.1001 1.1680 -0.1502c 0.3003,-0.0667 0.5339,-0.1335 0.8676 -0.2836h 0.3671 v 10.4448 c 0.0000,0.4839 0.1835,0.7341 0.7175 0.7341h 0.4004 c 0.0667,-0.0000 0.1335,0.0501 0.1335 0.1335v 0.3170 l -0.0334,0.0334 c 0.0000,-0.0000 -1.2180,-0.0334 -1.8687 -0.0334c -0.5840,-0.0000 -1.8020,0.0334 -1.8020 0.0334l -0.0167,-0.0334 v -0.3170 c 0.0000,-0.0834 0.0334,-0.1335 0.1168 -0.1335h 0.4004 c 0.5506,-0.0000 0.7175,-0.2503 0.7175 -0.7341ZM 551.6074,304.6528 ZM 558.7653,302.7173 c 0.0000,0.8343 0.0834,1.1012 0.4171 1.1012c 0.2002,-0.0000 0.5673,-0.0334 0.8509 -0.0834l 0.0667,0.4672 c -1.0178,0.1835 -1.8354,0.3504 -2.2191 0.6507h -0.3671 l 0.0501,-1.2347 h -0.0501 c -0.9177,1.0011 -1.6685,1.2347 -2.3526 1.2347c -1.6518,-0.0000 -2.0856,-1.1179 -2.0856 -2.2692v -3.8042 c 0.0000,-0.5506 -0.1168,-0.8343 -0.7341 -0.8343c -0.0667,-0.0000 -0.1835,0.0167 -0.2836 0.0167l -0.0501,-0.0167 v -0.4338 l 0.0501,-0.0501 c 0.0000,-0.0000 1.1346,0.0334 1.6685 0.0334c 0.2336,-0.0000 0.6173,-0.0334 0.6173 -0.0334l -0.0167,1.3348 v 3.5539 c 0.0000,1.4850 0.7675,1.7519 1.2681 1.7519c 0.3838,-0.0000 0.7341,-0.1502 1.0845 -0.4004c 0.4004,-0.3003 0.6674,-0.5339 0.8343 -0.7508v -4.1212 c 0.0000,-0.6007 -0.0834,-0.8843 -0.7008 -0.8843c -0.1001,-0.0000 -0.2836,0.0167 -0.3337 0.0167l -0.0334,-0.0334 v -0.4171 l 0.0334,-0.0501 c 0.0000,-0.0000 1.1846,0.0334 1.6518 0.0334c 0.3838,-0.0000 0.6507,-0.0334 0.6507 -0.0334l -0.0167,1.3181 v 3.9377 ZM 560.2336,304.6528 ZM 562.1357,300.0310 h 3.0700 c 0.1669,-0.0000 0.2336,-0.0834 0.2336 -0.2336c 0.0000,-1.5517 -0.7842,-1.9522 -1.3849 -1.9522c -0.3838,-0.0000 -1.6351,0.1502 -1.9188 2.1857ZM 562.1357,300.0310 ZM 566.5405,303.1011 l 0.3337,0.2670 c -0.6340,0.8676 -1.6184,1.4850 -2.8198 1.4850c -2.2859,-0.0000 -3.2536,-1.7019 -3.2536 -3.5205c 0.0000,-2.5361 1.6685,-4.0545 3.2536 -4.0545c 2.2024,-0.0000 2.7197,1.7186 2.7197 3.1201c 0.0000,0.1835 -0.1168,0.2836 -0.3003 0.2836h -4.3882 c -0.0167,0.1001 -0.0167,0.2002 -0.0167 0.3337c 0.0000,1.7019 1.1846,3.0200 2.3860 3.0200c 0.9177,-0.0000 1.5017,-0.3003 2.0856 -0.9344Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 533.6614,311.8393 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 539.4106,273.9261 ZM 540.8956,272.7248 v -4.1546 c 0.0000,-0.8343 -0.1168,-1.0178 -0.3671 -1.0178c -0.2169,-0.0000 -0.4171,0.0167 -0.7008 0.0834l -0.0834,-0.4672 c 1.0512,-0.1835 1.2347,-0.2336 1.7352 -0.4839c 0.1669,-0.0834 0.3003,-0.1335 0.4171 -0.1335h 0.2503 l -0.0501,1.5017 h 0.0501 c 0.4338,-0.6507 1.1680,-1.5017 1.9522 -1.5017c 0.6841,-0.0000 0.9344,0.3337 0.9344 0.7675c 0.0000,0.4338 -0.2836,0.7008 -0.7175 0.7008c -0.3337,-0.0000 -0.5172,-0.1335 -0.6841 -0.3003c -0.1001,-0.1001 -0.2169,-0.1502 -0.3337 -0.1502c -0.1835,-0.0000 -0.5506,0.3003 -0.9510 0.8676c -0.1168,0.1502 -0.2002,0.3671 -0.2002 0.5840v 3.7041 c 0.0000,0.4839 0.1669,0.7341 0.7175 0.7341h 0.4839 c 0.0834,-0.0000 0.1502,0.0501 0.1502 0.1335v 0.3170 l -0.0334,0.0334 c 0.0000,-0.0000 -1.3181,-0.0334 -1.9688 -0.0334c -0.6007,-0.0000 -1.7352,0.0334 -1.7352 0.0334l -0.0167,-0.0334 v -0.3170 c 0.0000,-0.0834 0.0334,-0.1335 0.1168 -0.1335h 0.3170 c 0.5673,-0.0000 0.7175,-0.2503 0.7175 -0.7341ZM 545.2003,273.9261 ZM 547.1024,269.3043 h 3.0700 c 0.1669,-0.0000 0.2336,-0.0834 0.2336 -0.2336c 0.0000,-1.5517 -0.7842,-1.9522 -1.3849 -1.9522c -0.3838,-0.0000 -1.6351,0.1502 -1.9188 2.1857ZM 547.1024,269.3043 ZM 551.5073,272.3744 l 0.3337,0.2670 c -0.6340,0.8676 -1.6184,1.4850 -2.8198 1.4850c -2.2859,-0.0000 -3.2536,-1.7019 -3.2536 -3.5205c 0.0000,-2.5361 1.6685,-4.0545 3.2536 -4.0545c 2.2024,-0.0000 2.7197,1.7186 2.7197 3.1201c 0.0000,0.1835 -0.1168,0.2836 -0.3003 0.2836h -4.3882 c -0.0167,0.1001 -0.0167,0.2002 -0.0167 0.3337c 0.0000,1.7019 1.1846,3.0200 2.3860 3.0200c 0.9177,-0.0000 1.5017,-0.3003 2.0856 -0.9344ZM 551.5240,273.9261 ZM 557.0968,272.4411 v -4.3214 c -0.4004,-0.6340 -0.8509,-0.9844 -1.6351 -0.9844c -0.3337,-0.0000 -1.0178,0.0501 -1.5517 0.8343c -0.2336,0.3504 -0.5172,1.0678 -0.5172 2.2692c 0.0000,2.1857 1.1346,3.1868 2.0356 3.1868c 0.5506,-0.0000 1.0011,-0.3337 1.6685 -0.9844ZM 557.0968,272.4411 ZM 558.3482,262.2799 v 9.6440 c 0.0000,0.5006 0.0334,0.7675 0.0667 0.8843c 0.0501,0.1502 0.2336,0.2503 0.3671 0.2503c 0.2002,-0.0000 0.5673,-0.0000 0.8176 -0.0501l 0.0667,0.4672 c -0.9677,0.1669 -1.8354,0.3504 -2.1857 0.6507h -0.4004 l 0.0501,-1.1513 c -0.6340,0.6507 -1.2847,1.1513 -2.1357 1.1513c -1.8020,-0.0000 -2.9032,-1.5350 -2.9032 -3.5873c 0.0000,-1.2347 0.3337,-2.2692 1.0512 -2.9866c 0.6674,-0.6340 1.4015,-1.0011 2.5028 -1.0011c 0.3337,-0.0000 1.0678,0.1502 1.4516 0.3671v -2.5528 c 0.0000,-0.9510 -0.1502,-1.2180 -0.4839 -1.2180l -0.5506,0.0667 c -0.0334,-0.0000 -0.0834,-0.0334 -0.0834 -0.0834l -0.0334,-0.4171 c 0.2670,-0.0000 0.8676,-0.1001 1.1513 -0.1502c 0.3170,-0.0667 0.5506,-0.1335 0.8843 -0.2836h 0.3671 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 533.6614,281.1126 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.2" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.966778768291653" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 569.7791,314.4808 l -0.0000,-58.1126 h -52.8949 l -0.0000,58.1126 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 162.2506,320.0297 l -0.0000,-287.4596 h -5.7492 l -0.0000,287.4596 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 128.4347,32.5702 ZM 132.6108,22.2159 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 132.6108,22.2159 ZM 132.5345,32.7990 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 136.7868,32.5702 ZM 137.8737,31.7884 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 140.9628,32.5702 ZM 146.8550,29.3476 c 0.0000,-1.9641 -1.0678,-2.9366 -2.2501 -2.9366c -0.8772,-0.0000 -1.5446,0.1335 -2.2882 0.4386l 0.6102,-5.2057 c 0.6293,0.0572 1.2776,0.0763 1.9450 0.0763c 0.9534,-0.0000 1.9450,-0.0572 2.9747 -0.1716l 0.1144,0.0572 l -0.2860,1.2395 c -0.7437,0.0763 -1.3539,0.0953 -1.8878 0.0953c -0.8581,-0.0000 -1.5064,-0.0763 -2.1738 -0.1525l -0.3623,3.0128 c 0.4004,-0.1525 1.0869,-0.2860 1.8306 -0.2860c 2.0213,-0.0000 3.1463,1.7543 3.1463 3.5086c 0.0000,2.1357 -1.4874,3.7756 -3.6421 3.7756c -1.0869,-0.0000 -2.6696,-0.6102 -2.6696 -1.3539c 0.0000,-0.3623 0.3051,-0.6102 0.6483 -0.6102c 0.3814,-0.0000 0.6293,0.2860 0.8581 0.5911c 0.2860,0.3432 0.5911,0.7246 1.2013 0.7246c 1.2204,-0.0000 2.2310,-1.1441 2.2310 -2.8031Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 153.6268,32.5702 h 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 128.4347,61.3161 ZM 132.6108,50.9619 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 132.6108,50.9619 ZM 132.5345,61.5450 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 136.7868,61.3161 ZM 137.8737,60.5343 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 140.9628,61.3161 ZM 145.8825,54.5468 c 0.0000,-0.1335 0.0191,-0.2860 0.1907 -0.3814c 0.2098,-0.1525 0.5530,-0.3242 0.8390 -0.3242c 0.2479,-0.0000 0.2670,0.2098 0.2670 0.5911v 3.0700 h 1.5446 l -0.1144,0.8962 h -1.4301 v 1.5827 c 0.0000,0.5339 0.0763,0.8009 0.6293 0.8009h 0.5149 c 0.1144,-0.0000 0.1335,0.0953 0.1335 0.1335v 0.4195 c 0.0000,-0.0000 -1.2204,-0.0381 -2.0213 -0.0381c -0.7246,-0.0000 -1.8497,0.0381 -1.8497 0.0381v -0.4195 c 0.0000,-0.0381 0.0191,-0.1335 0.1335 -0.1335h 0.5149 c 0.5911,-0.0000 0.6483,-0.2479 0.6483 -0.8009v -1.5827 h -3.7375 c -0.0763,-0.0000 -0.1144,-0.0381 -0.1716 -0.1144l -0.1525,-0.2098 l -0.2288,-0.4004 c -0.0191,-0.0000 -0.0191,-0.0191 -0.0191 -0.0381c 0.0000,-0.0191 0.0191,-0.0381 0.0381 -0.0572c 1.2395,-1.3729 3.4324,-5.6252 4.1188 -7.1889c 0.0191,-0.0763 0.0572,-0.0953 0.1335 -0.0953c 0.0191,-0.0000 0.4386,0.1716 0.6674 0.2098c -0.8581,2.3073 -2.2692,4.7862 -3.6612 6.9982h 3.0128 v -2.9556 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 153.6268,61.3161 h 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 128.4347,90.0621 ZM 132.6108,79.7078 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 132.6108,79.7078 ZM 132.5345,90.2909 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 136.7868,90.0621 ZM 137.8737,89.2803 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 140.9628,90.0621 ZM 145.0816,79.6315 c -0.4767,-0.0000 -1.8687,0.2670 -1.8687 1.4301c 0.0000,0.3432 -0.1335,0.9344 -0.6483 0.9344c -0.4958,-0.0000 -0.5339,-0.5530 -0.5339 -0.6102c 0.0000,-0.5911 0.7818,-2.3454 3.4324 -2.3454c 1.8497,-0.0000 2.4026,1.1632 2.4026 1.9259c 0.0000,0.4767 -0.1525,1.4301 -1.8687 2.5171c 1.0678,0.1716 2.4789,0.9534 2.4789 2.9366c 0.0000,2.5171 -1.9069,3.8709 -4.0616 3.8709c -1.0869,-0.0000 -2.6124,-0.4767 -2.6124 -1.2013c 0.0000,-0.2860 0.2860,-0.6102 0.6674 -0.6102c 0.3623,-0.0000 0.5339,0.1907 0.7055 0.4386c 0.2098,0.3242 0.5530,0.7818 1.4683 0.7818c 0.6293,-0.0000 2.4217,-0.6293 2.4217 -3.0319c 0.0000,-2.0403 -1.4301,-2.3645 -2.4599 -2.3645c -0.1716,-0.0000 -0.3814,0.0381 -0.5911 0.0763l -0.0763,-0.5721 c 1.4683,-0.2479 2.6887,-1.6780 2.6887 -2.5552c 0.0000,-1.0869 -0.7627,-1.6208 -1.5446 -1.6208Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 153.6268,90.0621 h 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 128.4347,118.8080 ZM 132.6108,108.4538 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 132.6108,108.4538 ZM 132.5345,119.0369 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 136.7868,118.8080 ZM 137.8737,118.0262 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 140.9628,118.8080 ZM 142.0688,110.3606 c 0.0000,-1.0869 1.0488,-2.5743 3.0510 -2.5743c 1.4683,-0.0000 3.1845,0.5530 3.1845 2.7459c 0.0000,1.4492 -0.7437,2.1738 -1.7734 3.1654l -1.8115,1.7543 c -0.0953,0.0953 -1.3729,1.3539 -1.3729 2.2501h 3.2417 c 0.6483,-0.0000 0.9916,-0.3242 1.2585 -1.3729l 0.4767,0.0763 l -0.3814,2.4026 h -5.8922 c 0.0000,-1.0678 0.1716,-1.8878 1.9450 -3.6993l 1.3348,-1.3157 c 1.0678,-1.0869 1.5064,-2.0213 1.5064 -3.1845c 0.0000,-1.7352 -1.1823,-2.2310 -1.8306 -2.2310c -1.3157,-0.0000 -1.6780,0.6865 -1.6780 1.1441c 0.0000,0.1525 0.0381,0.3051 0.0763 0.4386c 0.0381,0.1335 0.0763,0.2670 0.0763 0.4195c 0.0000,0.4958 -0.3814,0.6865 -0.6865 0.6865c -0.4195,-0.0000 -0.7246,-0.3242 -0.7246 -0.7055Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 153.6268,118.8080 h 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 128.4347,147.5540 ZM 132.6108,137.1997 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 132.6108,137.1997 ZM 132.5345,147.7828 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 136.7868,147.5540 ZM 137.8737,146.7722 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 140.9628,147.5540 ZM 144.5477,138.4583 c -0.3623,-0.0000 -1.2013,0.3432 -1.6208 0.5339l -0.2288,-0.5911 c 1.6780,-0.7818 2.3264,-1.1823 3.2798 -1.8687h 0.3623 v 9.5915 c 0.0000,0.6865 0.0953,0.8772 0.7246 0.8772h 0.9916 c 0.0572,-0.0000 0.1525,0.0381 0.1525 0.1525v 0.4195 l -2.6124,-0.0381 l -2.6505,0.0381 v -0.4195 c 0.0191,-0.0572 0.0381,-0.1525 0.1525 -0.1525h 1.1441 c 0.7246,-0.0000 0.7246,-0.3242 0.7246 -0.8772v -6.5596 c 0.0000,-0.6483 0.0000,-1.1060 -0.4195 -1.1060Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 153.6268,147.5540 h 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 128.4347,176.3000 ZM 132.6108,165.9457 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 132.6108,165.9457 ZM 132.5345,176.5288 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 136.7868,176.3000 ZM 137.8737,175.5181 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 140.9628,176.3000 ZM 145.1389,165.9457 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 145.1389,165.9457 ZM 145.0626,176.5288 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 153.6268,176.3000 h 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 122.0849,205.0459 ZM 127.3097,200.5457 h -4.3095 c -0.1716,-0.0000 -0.2860,-0.1525 -0.2860 -0.3242c 0.0000,-0.3051 0.2479,-0.7055 0.4767 -0.7055h 4.3667 c 0.1907,-0.0000 0.2670,0.1716 0.2670 0.3432c 0.0000,0.2098 -0.2670,0.6865 -0.5149 0.6865ZM 128.4347,205.0459 ZM 132.6108,194.6917 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 132.6108,194.6917 ZM 132.5345,205.2747 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 136.7868,205.0459 ZM 137.8737,204.2641 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 140.9628,205.0459 ZM 144.5477,195.9502 c -0.3623,-0.0000 -1.2013,0.3432 -1.6208 0.5339l -0.2288,-0.5911 c 1.6780,-0.7818 2.3264,-1.1823 3.2798 -1.8687h 0.3623 v 9.5915 c 0.0000,0.6865 0.0953,0.8772 0.7246 0.8772h 0.9916 c 0.0572,-0.0000 0.1525,0.0381 0.1525 0.1525v 0.4195 l -2.6124,-0.0381 l -2.6505,0.0381 v -0.4195 c 0.0191,-0.0572 0.0381,-0.1525 0.1525 -0.1525h 1.1441 c 0.7246,-0.0000 0.7246,-0.3242 0.7246 -0.8772v -6.5596 c 0.0000,-0.6483 0.0000,-1.1060 -0.4195 -1.1060Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 153.6268,205.0459 h 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 122.0849,233.7919 ZM 127.3097,229.2917 h -4.3095 c -0.1716,-0.0000 -0.2860,-0.1525 -0.2860 -0.3242c 0.0000,-0.3051 0.2479,-0.7055 0.4767 -0.7055h 4.3667 c 0.1907,-0.0000 0.2670,0.1716 0.2670 0.3432c 0.0000,0.2098 -0.2670,0.6865 -0.5149 0.6865ZM 128.4347,233.7919 ZM 132.6108,223.4376 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 132.6108,223.4376 ZM 132.5345,234.0207 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 136.7868,233.7919 ZM 137.8737,233.0101 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 140.9628,233.7919 ZM 142.0688,225.3445 c 0.0000,-1.0869 1.0488,-2.5743 3.0510 -2.5743c 1.4683,-0.0000 3.1845,0.5530 3.1845 2.7459c 0.0000,1.4492 -0.7437,2.1738 -1.7734 3.1654l -1.8115,1.7543 c -0.0953,0.0953 -1.3729,1.3539 -1.3729 2.2501h 3.2417 c 0.6483,-0.0000 0.9916,-0.3242 1.2585 -1.3729l 0.4767,0.0763 l -0.3814,2.4026 h -5.8922 c 0.0000,-1.0678 0.1716,-1.8878 1.9450 -3.6993l 1.3348,-1.3157 c 1.0678,-1.0869 1.5064,-2.0213 1.5064 -3.1845c 0.0000,-1.7352 -1.1823,-2.2310 -1.8306 -2.2310c -1.3157,-0.0000 -1.6780,0.6865 -1.6780 1.1441c 0.0000,0.1525 0.0381,0.3051 0.0763 0.4386c 0.0381,0.1335 0.0763,0.2670 0.0763 0.4195c 0.0000,0.4958 -0.3814,0.6865 -0.6865 0.6865c -0.4195,-0.0000 -0.7246,-0.3242 -0.7246 -0.7055Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 153.6268,233.7919 h 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 122.0849,262.5378 ZM 127.3097,258.0376 h -4.3095 c -0.1716,-0.0000 -0.2860,-0.1525 -0.2860 -0.3242c 0.0000,-0.3051 0.2479,-0.7055 0.4767 -0.7055h 4.3667 c 0.1907,-0.0000 0.2670,0.1716 0.2670 0.3432c 0.0000,0.2098 -0.2670,0.6865 -0.5149 0.6865ZM 128.4347,262.5378 ZM 132.6108,252.1836 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 132.6108,252.1836 ZM 132.5345,262.7667 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 136.7868,262.5378 ZM 137.8737,261.7560 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 140.9628,262.5378 ZM 145.0816,252.1073 c -0.4767,-0.0000 -1.8687,0.2670 -1.8687 1.4301c 0.0000,0.3432 -0.1335,0.9344 -0.6483 0.9344c -0.4958,-0.0000 -0.5339,-0.5530 -0.5339 -0.6102c 0.0000,-0.5911 0.7818,-2.3454 3.4324 -2.3454c 1.8497,-0.0000 2.4026,1.1632 2.4026 1.9259c 0.0000,0.4767 -0.1525,1.4301 -1.8687 2.5171c 1.0678,0.1716 2.4789,0.9534 2.4789 2.9366c 0.0000,2.5171 -1.9069,3.8709 -4.0616 3.8709c -1.0869,-0.0000 -2.6124,-0.4767 -2.6124 -1.2013c 0.0000,-0.2860 0.2860,-0.6102 0.6674 -0.6102c 0.3623,-0.0000 0.5339,0.1907 0.7055 0.4386c 0.2098,0.3242 0.5530,0.7818 1.4683 0.7818c 0.6293,-0.0000 2.4217,-0.6293 2.4217 -3.0319c 0.0000,-2.0403 -1.4301,-2.3645 -2.4599 -2.3645c -0.1716,-0.0000 -0.3814,0.0381 -0.5911 0.0763l -0.0763,-0.5721 c 1.4683,-0.2479 2.6887,-1.6780 2.6887 -2.5552c 0.0000,-1.0869 -0.7627,-1.6208 -1.5446 -1.6208Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 153.6268,262.5378 h 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 122.0849,291.2838 ZM 127.3097,286.7836 h -4.3095 c -0.1716,-0.0000 -0.2860,-0.1525 -0.2860 -0.3242c 0.0000,-0.3051 0.2479,-0.7055 0.4767 -0.7055h 4.3667 c 0.1907,-0.0000 0.2670,0.1716 0.2670 0.3432c 0.0000,0.2098 -0.2670,0.6865 -0.5149 0.6865ZM 128.4347,291.2838 ZM 132.6108,280.9295 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 132.6108,280.9295 ZM 132.5345,291.5126 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 136.7868,291.2838 ZM 137.8737,290.5020 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 140.9628,291.2838 ZM 145.8825,284.5144 c 0.0000,-0.1335 0.0191,-0.2860 0.1907 -0.3814c 0.2098,-0.1525 0.5530,-0.3242 0.8390 -0.3242c 0.2479,-0.0000 0.2670,0.2098 0.2670 0.5911v 3.0700 h 1.5446 l -0.1144,0.8962 h -1.4301 v 1.5827 c 0.0000,0.5339 0.0763,0.8009 0.6293 0.8009h 0.5149 c 0.1144,-0.0000 0.1335,0.0953 0.1335 0.1335v 0.4195 c 0.0000,-0.0000 -1.2204,-0.0381 -2.0213 -0.0381c -0.7246,-0.0000 -1.8497,0.0381 -1.8497 0.0381v -0.4195 c 0.0000,-0.0381 0.0191,-0.1335 0.1335 -0.1335h 0.5149 c 0.5911,-0.0000 0.6483,-0.2479 0.6483 -0.8009v -1.5827 h -3.7375 c -0.0763,-0.0000 -0.1144,-0.0381 -0.1716 -0.1144l -0.1525,-0.2098 l -0.2288,-0.4004 c -0.0191,-0.0000 -0.0191,-0.0191 -0.0191 -0.0381c 0.0000,-0.0191 0.0191,-0.0381 0.0381 -0.0572c 1.2395,-1.3729 3.4324,-5.6252 4.1188 -7.1889c 0.0191,-0.0763 0.0572,-0.0953 0.1335 -0.0953c 0.0191,-0.0000 0.4386,0.1716 0.6674 0.2098c -0.8581,2.3073 -2.2692,4.7862 -3.6612 6.9982h 3.0128 v -2.9556 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 153.6268,291.2838 h 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 122.0849,320.0297 ZM 127.3097,315.5296 h -4.3095 c -0.1716,-0.0000 -0.2860,-0.1525 -0.2860 -0.3242c 0.0000,-0.3051 0.2479,-0.7055 0.4767 -0.7055h 4.3667 c 0.1907,-0.0000 0.2670,0.1716 0.2670 0.3432c 0.0000,0.2098 -0.2670,0.6865 -0.5149 0.6865ZM 128.4347,320.0297 ZM 132.6108,309.6755 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 132.6108,309.6755 ZM 132.5345,320.2586 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 136.7868,320.0297 ZM 137.8737,319.2479 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 140.9628,320.0297 ZM 146.8550,316.8071 c 0.0000,-1.9641 -1.0678,-2.9366 -2.2501 -2.9366c -0.8772,-0.0000 -1.5446,0.1335 -2.2882 0.4386l 0.6102,-5.2057 c 0.6293,0.0572 1.2776,0.0763 1.9450 0.0763c 0.9534,-0.0000 1.9450,-0.0572 2.9747 -0.1716l 0.1144,0.0572 l -0.2860,1.2395 c -0.7437,0.0763 -1.3539,0.0953 -1.8878 0.0953c -0.8581,-0.0000 -1.5064,-0.0763 -2.1738 -0.1525l -0.3623,3.0128 c 0.4004,-0.1525 1.0869,-0.2860 1.8306 -0.2860c 2.0213,-0.0000 3.1463,1.7543 3.1463 3.5086c 0.0000,2.1357 -1.4874,3.7756 -3.6421 3.7756c -1.0869,-0.0000 -2.6696,-0.6102 -2.6696 -1.3539c 0.0000,-0.3623 0.3051,-0.6102 0.6483 -0.6102c 0.3814,-0.0000 0.6293,0.2860 0.8581 0.5911c 0.2860,0.3432 0.5911,0.7246 1.2013 0.7246c 1.2204,-0.0000 2.2310,-1.1441 2.2310 -2.8031Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 153.6268,320.0297 h 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 492.0711,348.9759 l -0.0000,-5.7492 h -287.4596 l -0.0000,5.7492 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 481.6310,373.2098 ZM 485.8071,362.8555 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 485.8071,362.8555 ZM 485.7308,373.4386 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 489.9831,373.2098 ZM 491.0700,372.4280 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 494.1591,373.2098 ZM 500.0513,369.9872 c 0.0000,-1.9641 -1.0678,-2.9366 -2.2501 -2.9366c -0.8772,-0.0000 -1.5446,0.1335 -2.2882 0.4386l 0.6102,-5.2057 c 0.6293,0.0572 1.2776,0.0763 1.9450 0.0763c 0.9534,-0.0000 1.9450,-0.0572 2.9747 -0.1716l 0.1144,0.0572 l -0.2860,1.2395 c -0.7437,0.0763 -1.3539,0.0953 -1.8878 0.0953c -0.8581,-0.0000 -1.5064,-0.0763 -2.1738 -0.1525l -0.3623,3.0128 c 0.4004,-0.1525 1.0869,-0.2860 1.8306 -0.2860c 2.0213,-0.0000 3.1463,1.7543 3.1463 3.5086c 0.0000,2.1357 -1.4874,3.7756 -3.6421 3.7756c -1.0869,-0.0000 -2.6696,-0.6102 -2.6696 -1.3539c 0.0000,-0.3623 0.3051,-0.6102 0.6483 -0.6102c 0.3814,-0.0000 0.6293,0.2860 0.8581 0.5911c 0.2860,0.3432 0.5911,0.7246 1.2013 0.7246c 1.2204,-0.0000 2.2310,-1.1441 2.2310 -2.8031Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 492.0711,343.2267 v 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 452.8851,373.2098 ZM 457.0611,362.8555 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 457.0611,362.8555 ZM 456.9848,373.4386 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 461.2371,373.2098 ZM 462.3240,372.4280 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 465.4132,373.2098 ZM 470.3329,366.4404 c 0.0000,-0.1335 0.0191,-0.2860 0.1907 -0.3814c 0.2098,-0.1525 0.5530,-0.3242 0.8390 -0.3242c 0.2479,-0.0000 0.2670,0.2098 0.2670 0.5911v 3.0700 h 1.5446 l -0.1144,0.8962 h -1.4301 v 1.5827 c 0.0000,0.5339 0.0763,0.8009 0.6293 0.8009h 0.5149 c 0.1144,-0.0000 0.1335,0.0953 0.1335 0.1335v 0.4195 c 0.0000,-0.0000 -1.2204,-0.0381 -2.0213 -0.0381c -0.7246,-0.0000 -1.8497,0.0381 -1.8497 0.0381v -0.4195 c 0.0000,-0.0381 0.0191,-0.1335 0.1335 -0.1335h 0.5149 c 0.5911,-0.0000 0.6483,-0.2479 0.6483 -0.8009v -1.5827 h -3.7375 c -0.0763,-0.0000 -0.1144,-0.0381 -0.1716 -0.1144l -0.1525,-0.2098 l -0.2288,-0.4004 c -0.0191,-0.0000 -0.0191,-0.0191 -0.0191 -0.0381c 0.0000,-0.0191 0.0191,-0.0381 0.0381 -0.0572c 1.2395,-1.3729 3.4324,-5.6252 4.1188 -7.1889c 0.0191,-0.0763 0.0572,-0.0953 0.1335 -0.0953c 0.0191,-0.0000 0.4386,0.1716 0.6674 0.2098c -0.8581,2.3073 -2.2692,4.7862 -3.6612 6.9982h 3.0128 v -2.9556 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 463.3251,343.2267 v 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 424.1391,373.2098 ZM 428.3151,362.8555 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 428.3151,362.8555 ZM 428.2389,373.4386 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 432.4912,373.2098 ZM 433.5781,372.4280 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 436.6672,373.2098 ZM 440.7860,362.7792 c -0.4767,-0.0000 -1.8687,0.2670 -1.8687 1.4301c 0.0000,0.3432 -0.1335,0.9344 -0.6483 0.9344c -0.4958,-0.0000 -0.5339,-0.5530 -0.5339 -0.6102c 0.0000,-0.5911 0.7818,-2.3454 3.4324 -2.3454c 1.8497,-0.0000 2.4026,1.1632 2.4026 1.9259c 0.0000,0.4767 -0.1525,1.4301 -1.8687 2.5171c 1.0678,0.1716 2.4789,0.9534 2.4789 2.9366c 0.0000,2.5171 -1.9069,3.8709 -4.0616 3.8709c -1.0869,-0.0000 -2.6124,-0.4767 -2.6124 -1.2013c 0.0000,-0.2860 0.2860,-0.6102 0.6674 -0.6102c 0.3623,-0.0000 0.5339,0.1907 0.7055 0.4386c 0.2098,0.3242 0.5530,0.7818 1.4683 0.7818c 0.6293,-0.0000 2.4217,-0.6293 2.4217 -3.0319c 0.0000,-2.0403 -1.4301,-2.3645 -2.4599 -2.3645c -0.1716,-0.0000 -0.3814,0.0381 -0.5911 0.0763l -0.0763,-0.5721 c 1.4683,-0.2479 2.6887,-1.6780 2.6887 -2.5552c 0.0000,-1.0869 -0.7627,-1.6208 -1.5446 -1.6208Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 434.5792,343.2267 v 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 395.3932,373.2098 ZM 399.5692,362.8555 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 399.5692,362.8555 ZM 399.4929,373.4386 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 403.7452,373.2098 ZM 404.8321,372.4280 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 407.9212,373.2098 ZM 409.0272,364.7624 c 0.0000,-1.0869 1.0488,-2.5743 3.0510 -2.5743c 1.4683,-0.0000 3.1845,0.5530 3.1845 2.7459c 0.0000,1.4492 -0.7437,2.1738 -1.7734 3.1654l -1.8115,1.7543 c -0.0953,0.0953 -1.3729,1.3539 -1.3729 2.2501h 3.2417 c 0.6483,-0.0000 0.9916,-0.3242 1.2585 -1.3729l 0.4767,0.0763 l -0.3814,2.4026 h -5.8922 c 0.0000,-1.0678 0.1716,-1.8878 1.9450 -3.6993l 1.3348,-1.3157 c 1.0678,-1.0869 1.5064,-2.0213 1.5064 -3.1845c 0.0000,-1.7352 -1.1823,-2.2310 -1.8306 -2.2310c -1.3157,-0.0000 -1.6780,0.6865 -1.6780 1.1441c 0.0000,0.1525 0.0381,0.3051 0.0763 0.4386c 0.0381,0.1335 0.0763,0.2670 0.0763 0.4195c 0.0000,0.4958 -0.3814,0.6865 -0.6865 0.6865c -0.4195,-0.0000 -0.7246,-0.3242 -0.7246 -0.7055Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 405.8332,343.2267 v 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 366.6472,373.2098 ZM 370.8232,362.8555 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 370.8232,362.8555 ZM 370.7469,373.4386 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 374.9993,373.2098 ZM 376.0862,372.4280 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 379.1753,373.2098 ZM 382.7602,364.1140 c -0.3623,-0.0000 -1.2013,0.3432 -1.6208 0.5339l -0.2288,-0.5911 c 1.6780,-0.7818 2.3264,-1.1823 3.2798 -1.8687h 0.3623 v 9.5915 c 0.0000,0.6865 0.0953,0.8772 0.7246 0.8772h 0.9916 c 0.0572,-0.0000 0.1525,0.0381 0.1525 0.1525v 0.4195 l -2.6124,-0.0381 l -2.6505,0.0381 v -0.4195 c 0.0191,-0.0572 0.0381,-0.1525 0.1525 -0.1525h 1.1441 c 0.7246,-0.0000 0.7246,-0.3242 0.7246 -0.8772v -6.5596 c 0.0000,-0.6483 0.0000,-1.1060 -0.4195 -1.1060Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 377.0873,343.2267 v 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 337.9012,373.2098 ZM 342.0773,362.8555 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 342.0773,362.8555 ZM 342.0010,373.4386 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 346.2533,373.2098 ZM 347.3402,372.4280 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 350.4293,373.2098 ZM 354.6054,362.8555 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 354.6054,362.8555 ZM 354.5291,373.4386 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 348.3413,343.2267 v 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 305.9804,373.2098 ZM 311.2052,368.7096 h -4.3095 c -0.1716,-0.0000 -0.2860,-0.1525 -0.2860 -0.3242c 0.0000,-0.3051 0.2479,-0.7055 0.4767 -0.7055h 4.3667 c 0.1907,-0.0000 0.2670,0.1716 0.2670 0.3432c 0.0000,0.2098 -0.2670,0.6865 -0.5149 0.6865ZM 312.3302,373.2098 ZM 316.5062,362.8555 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 316.5062,362.8555 ZM 316.4300,373.4386 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 320.6823,373.2098 ZM 321.7692,372.4280 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 324.8583,373.2098 ZM 328.4432,364.1140 c -0.3623,-0.0000 -1.2013,0.3432 -1.6208 0.5339l -0.2288,-0.5911 c 1.6780,-0.7818 2.3264,-1.1823 3.2798 -1.8687h 0.3623 v 9.5915 c 0.0000,0.6865 0.0953,0.8772 0.7246 0.8772h 0.9916 c 0.0572,-0.0000 0.1525,0.0381 0.1525 0.1525v 0.4195 l -2.6124,-0.0381 l -2.6505,0.0381 v -0.4195 c 0.0191,-0.0572 0.0381,-0.1525 0.1525 -0.1525h 1.1441 c 0.7246,-0.0000 0.7246,-0.3242 0.7246 -0.8772v -6.5596 c 0.0000,-0.6483 0.0000,-1.1060 -0.4195 -1.1060Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 319.5954,343.2267 v 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 277.2344,373.2098 ZM 282.4592,368.7096 h -4.3095 c -0.1716,-0.0000 -0.2860,-0.1525 -0.2860 -0.3242c 0.0000,-0.3051 0.2479,-0.7055 0.4767 -0.7055h 4.3667 c 0.1907,-0.0000 0.2670,0.1716 0.2670 0.3432c 0.0000,0.2098 -0.2670,0.6865 -0.5149 0.6865ZM 283.5842,373.2098 ZM 287.7603,362.8555 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 287.7603,362.8555 ZM 287.6840,373.4386 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 291.9363,373.2098 ZM 293.0232,372.4280 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 296.1123,373.2098 ZM 297.2183,364.7624 c 0.0000,-1.0869 1.0488,-2.5743 3.0510 -2.5743c 1.4683,-0.0000 3.1845,0.5530 3.1845 2.7459c 0.0000,1.4492 -0.7437,2.1738 -1.7734 3.1654l -1.8115,1.7543 c -0.0953,0.0953 -1.3729,1.3539 -1.3729 2.2501h 3.2417 c 0.6483,-0.0000 0.9916,-0.3242 1.2585 -1.3729l 0.4767,0.0763 l -0.3814,2.4026 h -5.8922 c 0.0000,-1.0678 0.1716,-1.8878 1.9450 -3.6993l 1.3348,-1.3157 c 1.0678,-1.0869 1.5064,-2.0213 1.5064 -3.1845c 0.0000,-1.7352 -1.1823,-2.2310 -1.8306 -2.2310c -1.3157,-0.0000 -1.6780,0.6865 -1.6780 1.1441c 0.0000,0.1525 0.0381,0.3051 0.0763 0.4386c 0.0381,0.1335 0.0763,0.2670 0.0763 0.4195c 0.0000,0.4958 -0.3814,0.6865 -0.6865 0.6865c -0.4195,-0.0000 -0.7246,-0.3242 -0.7246 -0.7055Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 290.8494,343.2267 v 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 248.4884,373.2098 ZM 253.7132,368.7096 h -4.3095 c -0.1716,-0.0000 -0.2860,-0.1525 -0.2860 -0.3242c 0.0000,-0.3051 0.2479,-0.7055 0.4767 -0.7055h 4.3667 c 0.1907,-0.0000 0.2670,0.1716 0.2670 0.3432c 0.0000,0.2098 -0.2670,0.6865 -0.5149 0.6865ZM 254.8383,373.2098 ZM 259.0143,362.8555 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 259.0143,362.8555 ZM 258.9380,373.4386 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 263.1903,373.2098 ZM 264.2773,372.4280 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 267.3664,373.2098 ZM 271.4852,362.7792 c -0.4767,-0.0000 -1.8687,0.2670 -1.8687 1.4301c 0.0000,0.3432 -0.1335,0.9344 -0.6483 0.9344c -0.4958,-0.0000 -0.5339,-0.5530 -0.5339 -0.6102c 0.0000,-0.5911 0.7818,-2.3454 3.4324 -2.3454c 1.8497,-0.0000 2.4026,1.1632 2.4026 1.9259c 0.0000,0.4767 -0.1525,1.4301 -1.8687 2.5171c 1.0678,0.1716 2.4789,0.9534 2.4789 2.9366c 0.0000,2.5171 -1.9069,3.8709 -4.0616 3.8709c -1.0869,-0.0000 -2.6124,-0.4767 -2.6124 -1.2013c 0.0000,-0.2860 0.2860,-0.6102 0.6674 -0.6102c 0.3623,-0.0000 0.5339,0.1907 0.7055 0.4386c 0.2098,0.3242 0.5530,0.7818 1.4683 0.7818c 0.6293,-0.0000 2.4217,-0.6293 2.4217 -3.0319c 0.0000,-2.0403 -1.4301,-2.3645 -2.4599 -2.3645c -0.1716,-0.0000 -0.3814,0.0381 -0.5911 0.0763l -0.0763,-0.5721 c 1.4683,-0.2479 2.6887,-1.6780 2.6887 -2.5552c 0.0000,-1.0869 -0.7627,-1.6208 -1.5446 -1.6208Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 262.1034,343.2267 v 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 219.7425,373.2098 ZM 224.9673,368.7096 h -4.3095 c -0.1716,-0.0000 -0.2860,-0.1525 -0.2860 -0.3242c 0.0000,-0.3051 0.2479,-0.7055 0.4767 -0.7055h 4.3667 c 0.1907,-0.0000 0.2670,0.1716 0.2670 0.3432c 0.0000,0.2098 -0.2670,0.6865 -0.5149 0.6865ZM 226.0923,373.2098 ZM 230.2684,362.8555 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 230.2684,362.8555 ZM 230.1921,373.4386 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 234.4444,373.2098 ZM 235.5313,372.4280 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 238.6204,373.2098 ZM 243.5401,366.4404 c 0.0000,-0.1335 0.0191,-0.2860 0.1907 -0.3814c 0.2098,-0.1525 0.5530,-0.3242 0.8390 -0.3242c 0.2479,-0.0000 0.2670,0.2098 0.2670 0.5911v 3.0700 h 1.5446 l -0.1144,0.8962 h -1.4301 v 1.5827 c 0.0000,0.5339 0.0763,0.8009 0.6293 0.8009h 0.5149 c 0.1144,-0.0000 0.1335,0.0953 0.1335 0.1335v 0.4195 c 0.0000,-0.0000 -1.2204,-0.0381 -2.0213 -0.0381c -0.7246,-0.0000 -1.8497,0.0381 -1.8497 0.0381v -0.4195 c 0.0000,-0.0381 0.0191,-0.1335 0.1335 -0.1335h 0.5149 c 0.5911,-0.0000 0.6483,-0.2479 0.6483 -0.8009v -1.5827 h -3.7375 c -0.0763,-0.0000 -0.1144,-0.0381 -0.1716 -0.1144l -0.1525,-0.2098 l -0.2288,-0.4004 c -0.0191,-0.0000 -0.0191,-0.0191 -0.0191 -0.0381c 0.0000,-0.0191 0.0191,-0.0381 0.0381 -0.0572c 1.2395,-1.3729 3.4324,-5.6252 4.1188 -7.1889c 0.0191,-0.0763 0.0572,-0.0953 0.1335 -0.0953c 0.0191,-0.0000 0.4386,0.1716 0.6674 0.2098c -0.8581,2.3073 -2.2692,4.7862 -3.6612 6.9982h 3.0128 v -2.9556 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 233.3575,343.2267 v 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 190.9965,373.2098 ZM 196.2213,368.7096 h -4.3095 c -0.1716,-0.0000 -0.2860,-0.1525 -0.2860 -0.3242c 0.0000,-0.3051 0.2479,-0.7055 0.4767 -0.7055h 4.3667 c 0.1907,-0.0000 0.2670,0.1716 0.2670 0.3432c 0.0000,0.2098 -0.2670,0.6865 -0.5149 0.6865ZM 197.3464,373.2098 ZM 201.5224,362.8555 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 201.5224,362.8555 ZM 201.4461,373.4386 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 205.6984,373.2098 ZM 206.7853,372.4280 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 209.8745,373.2098 ZM 215.7667,369.9872 c 0.0000,-1.9641 -1.0678,-2.9366 -2.2501 -2.9366c -0.8772,-0.0000 -1.5446,0.1335 -2.2882 0.4386l 0.6102,-5.2057 c 0.6293,0.0572 1.2776,0.0763 1.9450 0.0763c 0.9534,-0.0000 1.9450,-0.0572 2.9747 -0.1716l 0.1144,0.0572 l -0.2860,1.2395 c -0.7437,0.0763 -1.3539,0.0953 -1.8878 0.0953c -0.8581,-0.0000 -1.5064,-0.0763 -2.1738 -0.1525l -0.3623,3.0128 c 0.4004,-0.1525 1.0869,-0.2860 1.8306 -0.2860c 2.0213,-0.0000 3.1463,1.7543 3.1463 3.5086c 0.0000,2.1357 -1.4874,3.7756 -3.6421 3.7756c -1.0869,-0.0000 -2.6696,-0.6102 -2.6696 -1.3539c 0.0000,-0.3623 0.3051,-0.6102 0.6483 -0.6102c 0.3814,-0.0000 0.6293,0.2860 0.8581 0.5911c 0.2860,0.3432 0.5911,0.7246 1.2013 0.7246c 1.2204,-0.0000 2.2310,-1.1441 2.2310 -2.8031Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 204.6115,343.2267 v 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,314.4808 l -0.0000,-287.4596 h -287.4596 l -0.0000,287.4596 Z"/></g></svg>
+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="400.0000" stroke-opacity="1" viewBox="0 0 600 400" font-size="1" width="600.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,102,102)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.9766009852216748" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,104,107)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.9532019704433499" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,106,112)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.9298029556650247" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,108,116)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.9064039408866995" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,111,121)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8830049261083743" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,113,126)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8596059113300493" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,115,131)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8362068965517242" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,118,135)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.812807881773399" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,120,140)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7894088669950738" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,123,145)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7660098522167489" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,126,150)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7426108374384237" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,128,155)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7192118226600985" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,131,161)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6958128078817734" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,134,166)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6724137931034483" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,137,171)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6490147783251232" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,141,177)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.625615763546798" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,144,183)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.602216748768473" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,147,189)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5788177339901478" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,151,195)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5554187192118227" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,155,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.9322660098522166" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,108,116)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.9113300492610836" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,110,120)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8903940886699507" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,112,124)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8694581280788177" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,114,129)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8485221674876846" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,117,133)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8275862068965517" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,119,137)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8066502463054187" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,121,142)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7857142857142857" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,123,146)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7647783251231527" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,126,151)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7438423645320197" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,128,155)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7229064039408867" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,131,160)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7019704433497538" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,133,165)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6810344827586208" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,136,169)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6600985221674878" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,139,174)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6391625615763548" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,142,180)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6182266009852218" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,145,185)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5972906403940887" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,148,190)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5763546798029557" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,151,196)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5554187192118226" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,155,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5344827586206897" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,159,208)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 476.1107,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8694581280788178" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,114,129)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8509852216748769" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,116,132)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.832512315270936" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,118,136)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8140394088669951" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,120,140)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7955665024630543" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,122,144)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7770935960591134" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,124,148)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7586206896551724" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,126,152)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7401477832512315" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,129,156)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7216748768472907" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,131,160)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7032019704433499" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,133,164)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6847290640394089" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,136,169)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.666256157635468" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,138,173)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6477832512315271" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,141,177)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6293103448275863" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,143,182)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6108374384236454" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,146,187)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5923645320197045" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,149,191)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5738916256157636" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,152,196)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5554187192118227" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,155,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5369458128078818" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,158,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.518472906403941" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,161,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.7377,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8115763546798029" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,120,141)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7955665024630543" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,122,144)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7795566502463054" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,124,147)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7635467980295567" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,126,151)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7475369458128078" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,128,154)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7315270935960592" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,130,158)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7155172413793103" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,132,162)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6995073891625616" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,134,165)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6834975369458128" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,136,169)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6674876847290641" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,138,173)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6514778325123153" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,140,177)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6354679802955665" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,142,180)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6194581280788177" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,145,184)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.603448275862069" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,147,189)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5874384236453203" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,150,193)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5714285714285714" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,152,197)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5554187192118227" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,155,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.539408866995074" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,158,206)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5233990147783252" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,161,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5073891625615764" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,164,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 447.3647,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7586206896551724" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,126,152)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7450738916256157" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,128,155)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7315270935960592" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,130,158)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7179802955665024" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,131,161)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7044334975369457" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,133,164)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6908866995073892" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,135,167)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6773399014778325" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,137,170)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6637931034482758" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,138,174)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6502463054187193" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,140,177)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6366995073891626" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,142,180)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6231527093596059" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,144,184)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6096059113300493" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,146,187)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5960591133004927" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,148,191)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5825123152709359" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,151,194)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5689655172413793" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,153,198)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5554187192118226" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,155,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.541871921182266" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,157,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5283251231527094" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,160,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5147783251231527" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,162,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5012315270935961" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 432.9917,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7105911330049262" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,132,163)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6995073891625616" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,134,165)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6884236453201971" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,135,168)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6773399014778325" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,137,170)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.666256157635468" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,138,173)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6551724137931034" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,140,176)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6440886699507389" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,141,178)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6330049261083743" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,143,181)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6219211822660098" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,144,184)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6108374384236452" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,146,187)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5997536945812808" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,148,190)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5886699507389163" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,150,192)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5775862068965518" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,151,195)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5665024630541873" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,153,198)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5554187192118226" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,155,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5443349753694582" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,157,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5332512315270936" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,159,208)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5221674876847291" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,161,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5110837438423645" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,163,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 418.6187,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6674876847290641" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,138,173)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6588669950738917" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,139,175)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6502463054187193" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,140,177)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6416256157635467" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,142,179)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6330049261083743" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,143,181)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.624384236453202" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,144,183)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6157635467980296" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,145,185)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6071428571428572" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,147,188)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5985221674876847" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,148,190)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5899014778325122" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,149,192)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5812807881773399" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,151,194)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5726600985221675" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,152,197)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5640394088669951" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,154,199)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5554187192118227" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,155,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5467980295566502" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,156,204)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5381773399014778" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,158,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5295566502463055" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,159,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.520935960591133" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,161,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5123152709359606" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,163,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5036945812807881" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 404.2458,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6293103448275863" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,143,182)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6231527093596059" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,144,184)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6169950738916257" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,145,185)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6108374384236454" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,146,187)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.604679802955665" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,147,188)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5985221674876847" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,148,190)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5923645320197044" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,149,191)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5862068965517242" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,150,193)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5800492610837439" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,151,195)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5738916256157636" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,152,196)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5677339901477834" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,153,198)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5615763546798029" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,154,200)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5554187192118227" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,155,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5492610837438424" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,156,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5431034482758621" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,157,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5369458128078818" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,158,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5307881773399015" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,159,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5246305418719212" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,160,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5184729064039408" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,161,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5123152709359606" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,163,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 389.8728,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5960591133004927" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,148,191)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5923645320197044" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,149,191)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5886699507389163" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,150,192)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5849753694581281" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,150,193)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.58128078817734" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,151,194)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5775862068965518" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,151,195)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5738916256157636" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,152,196)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5701970443349754" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,153,197)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5665024630541872" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,153,198)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.562807881773399" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,154,200)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5591133004926109" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,154,201)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5554187192118226" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,155,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5517241379310345" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,156,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5480295566502463" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,156,204)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5443349753694582" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,157,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5406403940886699" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,158,206)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5369458128078818" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,158,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5332512315270936" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,159,208)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5295566502463054" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,159,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5258620689655172" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,160,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 375.4998,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5677339901477833" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,153,198)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5665024630541872" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,153,198)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5652709359605912" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,153,199)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5640394088669951" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,154,199)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.562807881773399" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,154,200)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5615763546798029" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,154,200)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5603448275862069" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,154,200)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5591133004926109" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,154,201)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5578817733990148" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,155,201)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5566502463054187" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,155,201)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5554187192118226" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,155,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5541871921182266" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,155,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5529556650246306" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,155,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5517241379310345" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,156,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5504926108374384" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,156,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5492610837438424" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,156,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5480295566502463" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,156,204)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5467980295566502" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,156,204)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5455665024630542" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,157,204)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5443349753694582" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,157,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 361.1268,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5443349753694582" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,157,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5455665024630542" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,157,204)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5467980295566502" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,156,204)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5480295566502463" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,156,204)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5492610837438424" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,156,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5504926108374384" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,156,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5517241379310345" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,156,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5529556650246306" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,155,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5541871921182266" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,155,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5554187192118226" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,155,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5566502463054187" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,155,201)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5578817733990148" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,155,201)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5591133004926109" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,154,201)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5603448275862069" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,154,200)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5615763546798029" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,154,200)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.562807881773399" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,154,200)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5640394088669951" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,154,199)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5652709359605911" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,153,199)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5665024630541873" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,153,198)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5677339901477833" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,153,198)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 346.7538,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5258620689655172" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,160,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5295566502463054" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,159,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5332512315270936" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,159,208)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5369458128078818" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,158,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5406403940886699" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,158,206)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5443349753694582" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,157,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5480295566502463" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,156,204)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5517241379310345" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,156,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5554187192118226" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,155,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5591133004926109" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,154,201)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.562807881773399" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,154,200)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5665024630541873" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,153,198)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5701970443349753" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,153,197)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5738916256157636" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,152,196)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5775862068965517" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,151,195)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5812807881773399" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,151,194)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5849753694581281" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,150,193)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5886699507389163" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,150,192)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5923645320197044" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,149,191)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5960591133004927" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,148,191)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 332.3809,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5123152709359606" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,163,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.518472906403941" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,161,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5246305418719212" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,160,210)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5307881773399015" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,159,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5369458128078818" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,158,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5431034482758621" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,157,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5492610837438424" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,156,203)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5554187192118227" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,155,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5615763546798029" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,154,200)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5677339901477833" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,153,198)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5738916256157636" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,152,196)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5800492610837438" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,151,195)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5862068965517242" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,150,193)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5923645320197044" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,149,191)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5985221674876847" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,148,190)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.604679802955665" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,147,188)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6108374384236452" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,146,187)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6169950738916256" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,145,185)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6231527093596059" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,144,184)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6293103448275861" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,143,182)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 318.0079,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5036945812807881" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5123152709359606" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,163,214)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.520935960591133" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,161,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5295566502463054" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,159,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5381773399014779" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,158,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5467980295566502" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,156,204)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5554187192118227" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,155,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5640394088669951" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,154,199)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5726600985221675" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,152,197)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5812807881773399" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,151,194)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5899014778325122" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,149,192)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5985221674876847" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,148,190)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6071428571428571" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,147,188)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6157635467980295" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,145,185)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.624384236453202" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,144,183)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6330049261083743" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,143,181)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6416256157635467" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,142,179)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6502463054187191" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,140,177)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6588669950738916" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,139,175)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6674876847290641" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,138,173)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 303.6349,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5110837438423645" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,163,215)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5221674876847291" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,161,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5332512315270936" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,159,208)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5443349753694582" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,157,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5554187192118227" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,155,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5665024630541873" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,153,198)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5775862068965517" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,151,195)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5886699507389163" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,150,192)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5997536945812808" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,148,190)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6108374384236452" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,146,187)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6219211822660098" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,144,184)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6330049261083743" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,143,181)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6440886699507389" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,141,178)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6551724137931034" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,140,176)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.666256157635468" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,138,173)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6773399014778325" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,137,170)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6884236453201971" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,135,168)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6995073891625616" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,134,165)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7105911330049262" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,132,163)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 289.2619,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5012315270935961" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5147783251231527" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,162,213)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5283251231527093" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,160,209)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.541871921182266" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,157,205)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5554187192118226" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,155,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5689655172413793" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,153,198)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5825123152709359" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,151,194)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5960591133004927" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,148,191)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6096059113300492" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,146,187)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6231527093596059" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,144,184)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6366995073891626" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,142,180)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6502463054187192" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,140,177)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6637931034482758" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,138,174)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6773399014778325" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,137,170)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6908866995073891" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,135,167)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7044334975369457" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,133,164)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7179802955665024" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,131,161)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7315270935960592" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,130,158)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7450738916256157" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,128,155)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7586206896551724" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,126,152)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 274.8890,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5073891625615763" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,164,216)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5233990147783251" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,161,211)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5394088669950738" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,158,206)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5554187192118226" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,155,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5714285714285714" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,152,197)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5874384236453201" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,150,193)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.603448275862069" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,147,189)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6194581280788176" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,145,184)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6354679802955665" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,142,180)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6514778325123152" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,140,177)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6674876847290641" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,138,173)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6834975369458127" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,136,169)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6995073891625615" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,134,165)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7155172413793103" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,132,162)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7315270935960589" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,130,158)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7475369458128078" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,128,154)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7635467980295565" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,126,151)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7795566502463053" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,124,147)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.795566502463054" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,122,144)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8115763546798028" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,120,141)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 260.5160,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5184729064039408" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,161,212)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5369458128078818" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,158,207)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5554187192118226" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,155,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5738916256157636" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,152,196)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5923645320197044" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,149,191)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6108374384236452" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,146,187)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6293103448275862" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,143,182)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6477832512315271" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,141,177)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.666256157635468" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,138,173)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6847290640394088" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,136,169)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7032019704433496" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,133,164)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7216748768472905" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,131,160)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7401477832512315" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,129,156)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7586206896551724" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,126,152)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7770935960591132" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,124,148)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7955665024630542" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,122,144)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8140394088669949" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,120,140)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8325123152709359" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,118,136)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8509852216748768" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,116,132)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8694581280788176" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,114,129)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 246.1430,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5344827586206896" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,159,208)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5554187192118226" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,155,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5763546798029556" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,151,196)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5972906403940886" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,148,190)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6182266009852218" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,145,185)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6391625615763548" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,142,180)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6600985221674877" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,139,174)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6810344827586207" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,136,169)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7019704433497537" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,133,165)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7229064039408867" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,131,160)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7438423645320197" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,128,155)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7647783251231527" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,126,151)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7857142857142856" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,123,146)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8066502463054186" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,121,142)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8275862068965517" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,119,137)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8485221674876846" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,117,133)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8694581280788176" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,114,129)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8903940886699507" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,112,124)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.9113300492610836" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,110,120)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.9322660098522166" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,108,116)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7700,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5554187192118226" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(95,155,202)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,41.3942 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5788177339901477" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,151,195)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,55.7672 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6022167487684729" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(96,147,189)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,70.1401 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.625615763546798" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,144,183)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,84.5131 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6490147783251232" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,141,177)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,98.8861 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6724137931034482" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,137,171)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,113.2591 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6958128078817734" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(98,134,166)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,127.6321 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7192118226600984" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,131,161)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,142.0050 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7426108374384235" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,128,155)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,156.3780 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7660098522167487" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(99,126,150)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,170.7510 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7894088669950738" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,123,145)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,185.1240 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8128078817733989" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,120,140)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,199.4969 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.836206896551724" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,118,135)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,213.8699 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8596059113300492" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,115,131)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,228.2429 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8830049261083743" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,113,126)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,242.6159 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.9064039408866993" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,111,121)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,256.9889 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.9298029556650245" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(101,108,116)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,271.3618 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.9532019704433496" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,106,112)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,285.7348 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.9766009852216747" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,104,107)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,300.1078 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.9999999999999999" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(102,102,102)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 217.3970,314.4808 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(31,119,180)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 91.9946,314.4808 ZM 57.7902,303.3375 l 15.1357,0.0000 c 0.1788,-0.6555 0.2979,-2.7411 0.2979 -4.2309c 0.0000,-5.7802 -2.6815,-9.1768 -9.1172 -9.1768c -7.5679,-0.0000 -9.0576,4.4096 -9.0576 8.5213c -0.0000,4.2904 1.0130,4.8863 2.7411 4.8863ZM 57.7902,303.3375 ZM 87.7637,308.1643 l -29.9735,-0.0000 c -1.9069,-0.0000 -2.6219,1.6089 -2.6219 2.6219l -0.0000,2.3240 c -0.0000,0.2384 -0.1192,0.3575 -0.3575 0.3575l -1.2514,-0.0000 l -0.0596,-0.1192 c 0.0000,-0.0000 0.0596,-4.8267 0.0596 -7.5679c 0.0000,-1.7877 -0.5363,-6.1973 -0.5363 -7.7466c 0.0000,-11.0241 6.4953,-13.1693 10.0110 -13.1693c 5.0651,0.0000 12.1563,3.0987 12.1563 13.9439c -0.0000,2.0856 -0.1788,3.2178 -0.5959 4.5288l 13.1693,0.0000 c 1.7877,0.0000 2.5623,-0.8938 2.5623 -3.2178l 0.0000,-1.6089 c 0.0000,-0.2384 0.1788,-0.4767 0.4767 -0.4767l 1.1322,0.0000 l 0.1192,0.1192 c 0.0000,-0.0000 -0.1192,5.1843 -0.1192 7.5083c -0.0000,2.1452 0.1192,7.6870 0.1192 7.6870l -0.1192,0.1192 l -1.1322,-0.0000 c -0.2979,-0.0000 -0.4767,-0.1788 -0.4767 -0.4767l 0.0000,-1.5493 c 0.0000,-2.4432 -0.8938,-3.2774 -2.5623 -3.2774ZM 91.9946,283.4347 ZM 57.9690,278.7867 c -1.5493,-0.0000 -2.8603,-1.2514 -2.8603 -2.8007c 0.0000,-1.6089 1.3110,-2.8603 2.8603 -2.8603c 1.6089,0.0000 2.8603,1.2514 2.8603 2.8603c -0.0000,1.5493 -1.2514,2.8007 -2.8603 2.8007ZM 57.9690,278.7867 ZM 87.7041,273.1257 c 1.7281,0.0000 2.6219,-0.6555 2.6219 -2.5623l 0.0000,-1.1322 c 0.0000,-0.2979 0.1788,-0.5363 0.4767 -0.5363l 1.1322,0.0000 l 0.1192,0.1192 c 0.0000,-0.0000 -0.1192,4.1117 -0.1192 6.4357c -0.0000,2.0856 0.1192,6.1377 0.1192 6.1377l -0.1192,0.1192 l -1.1322,-0.0000 c -0.2979,-0.0000 -0.4767,-0.1788 -0.4767 -0.4767l 0.0000,-1.1322 c 0.0000,-1.9665 -0.8938,-2.5623 -2.6219 -2.5623l -14.8378,-0.0000 c -3.1582,-0.0000 -3.6350,0.5363 -3.6350 1.3706c -0.0000,0.7747 0.0596,1.4897 0.2979 2.5028l -1.6685,0.2979 c -0.6555,-3.8137 -0.8938,-4.4692 -1.7281 -6.1973c -0.2384,-0.6555 -0.4767,-1.0726 -0.4767 -1.4897l 0.0000,-0.8938 l 22.0481,0.0000 ZM 91.9946,267.7030 ZM 68.0396,255.9639 c -0.0000,1.1918 0.2979,1.4301 0.7151 1.4301c 0.2979,0.0000 0.8343,-0.2384 1.9069 -0.8938l 5.3631,-3.6350 c 0.3575,-0.1788 0.5363,-0.3575 0.5363 -0.5959c 0.0000,-0.1788 -0.1192,-0.2979 -0.4171 -0.5363l -5.4226,-3.8733 c -0.8343,-0.6555 -1.4897,-1.0130 -1.9665 -1.0130c -0.4767,-0.0000 -0.7151,0.4171 -0.7151 1.2514l -0.0000,0.9534 c -0.0000,0.1788 -0.1192,0.3575 -0.4171 0.3575l -1.1322,-0.0000 l -0.1788,-0.1788 c 0.0000,-0.0000 0.1192,-2.8007 0.1192 -4.6480c 0.0000,-1.9069 -0.1192,-4.8267 -0.1192 -4.8267l 0.1192,-0.0596 l 1.1322,0.0000 c 0.4171,0.0000 0.4767,0.3575 0.4767 0.7151c -0.0000,2.2048 0.7151,3.0987 3.5158 5.3035l 6.3761,5.0055 c 0.1788,0.1192 0.2979,0.1788 0.4171 0.1788c 0.1192,0.0000 0.2979,-0.0596 0.4767 -0.1788l 7.5679,-5.3631 c 3.8733,-2.7411 3.9329,-3.5158 3.9329 -5.4226c 0.0000,-0.5959 0.1192,-0.8343 0.4767 -0.8343l 1.1322,0.0000 l 0.1192,0.0596 c 0.0000,-0.0000 -0.1192,3.2178 -0.1192 5.2439c -0.0000,2.4432 0.1192,6.1973 0.1192 6.1973l -0.1192,0.1192 l -1.1322,-0.0000 c -0.2979,-0.0000 -0.4767,-0.1192 -0.4767 -0.4171l 0.0000,-0.7151 c 0.0000,-0.9534 -0.1788,-1.3706 -0.6555 -1.3706c -0.5363,-0.0000 -1.4301,0.6555 -2.6815 1.6089l -4.7672,3.4562 c -0.2979,0.2384 -0.4171,0.3575 -0.4171 0.5363c -0.0000,0.1192 0.1788,0.2979 0.5363 0.5363l 5.4226,3.7541 c 1.1918,0.8938 1.4897,1.0726 1.9069 1.0726c 0.4171,0.0000 0.6555,-0.3575 0.6555 -1.2514l 0.0000,-0.8343 c 0.0000,-0.2979 0.1788,-0.4171 0.4767 -0.4171l 1.1322,0.0000 l 0.1192,0.1192 c 0.0000,-0.0000 -0.1192,3.0987 -0.1192 5.0055c -0.0000,1.7281 0.1192,4.4692 0.1192 4.4692l -0.1192,0.1192 l -1.0130,-0.0000 c -0.3575,-0.0000 -0.5959,-0.2384 -0.5959 -0.7747c 0.0000,-1.4301 -0.2979,-2.8007 -3.5158 -5.3035l -6.4357,-5.0055 c -0.1192,-0.0596 -0.2384,-0.1192 -0.4171 -0.1192c -0.1788,-0.0000 -0.2979,0.0596 -0.4767 0.1788l -7.5679,5.1843 c -2.4432,1.6685 -3.8733,2.7411 -3.8733 4.8267c -0.0000,0.4171 -0.1788,0.8343 -0.4171 0.8343l -1.1322,-0.0000 l -0.1788,-0.1192 l 0.1192,-4.7076 l -0.1192,-6.6144 l 0.1788,-0.1788 l 1.0726,0.0000 c 0.2979,0.0000 0.4767,0.2384 0.4767 0.4767l -0.0000,0.8938 ZM 91.9946,238.0871 ZM 75.4883,231.2939 l 0.0000,-10.9645 c 0.0000,-0.5959 -0.2979,-0.8343 -0.8343 -0.8343c -5.5418,-0.0000 -6.9720,2.8007 -6.9720 4.9459c -0.0000,1.3706 0.5363,5.8398 7.8062 6.8528ZM 75.4883,231.2939 ZM 86.4528,215.5623 l 0.9534,-1.1918 c 3.0987,2.2644 5.3035,5.7802 5.3035 10.0706c -0.0000,8.1638 -6.0781,11.6199 -12.5734 11.6199c -9.0576,-0.0000 -14.4802,-5.9589 -14.4802 -11.6199c 0.0000,-7.8658 6.1377,-9.7131 11.1432 -9.7131c 0.6555,0.0000 1.0130,0.4171 1.0130 1.0726l -0.0000,15.6720 c 0.3575,0.0596 0.7151,0.0596 1.1918 0.0596c 6.0781,0.0000 10.7857,-4.2309 10.7857 -8.5213c 0.0000,-3.2774 -1.0726,-5.3631 -3.3370 -7.4487ZM 91.9946,212.5828 ZM 87.7041,206.9218 l -29.8543,-0.0000 c -3.3966,-0.0000 -4.3500,0.5959 -4.3500 1.7877l 0.2384,1.9069 c -0.0000,0.1788 -0.1192,0.3575 -0.2979 0.3575l -1.4897,0.1192 c 0.0000,-0.9534 -0.3575,-3.1582 -0.5363 -4.1713c -0.2384,-1.0726 -0.4767,-1.9069 -1.0130 -3.0987l 0.0000,-1.3110 l 37.3030,0.0000 c 1.7281,0.0000 2.6219,-0.6555 2.6219 -2.5623l 0.0000,-1.4301 c 0.0000,-0.2384 0.1788,-0.4767 0.4767 -0.4767l 1.1322,0.0000 l 0.1192,0.1192 c 0.0000,-0.0000 -0.1192,4.3500 -0.1192 6.6740c -0.0000,2.0856 0.1192,6.4357 0.1192 6.4357l -0.1192,0.0596 l -1.1322,-0.0000 c -0.2979,-0.0000 -0.4767,-0.1192 -0.4767 -0.4171l 0.0000,-1.4301 c 0.0000,-1.9665 -0.8938,-2.5623 -2.6219 -2.5623ZM 91.9946,182.1922 ZM 92.7097,161.0379 c -0.0000,12.8117 -9.8919,18.9494 -19.4858 18.9494c -11.7391,-0.0000 -20.4392,-9.1172 -20.4392 -19.0090c 0.0000,-7.3295 2.5028,-9.6535 2.6815 -13.0501c 3.2774,-0.1788 6.1377,-0.7151 9.2364 -1.3110l 0.2384,1.7877 c -5.1247,1.5493 -9.9514,5.0055 -9.9514 13.2289c -0.0000,4.7076 5.0055,13.1693 17.1022 13.1693c 8.7001,0.0000 18.1748,-4.4692 18.1748 -13.7056c 0.0000,-5.5418 -1.9665,-9.5939 -6.6144 -13.8248l 0.8938,-1.3706 c 5.3035,4.0521 8.1638,9.3555 8.1638 15.1357ZM 91.9946,143.8166 ZM 50.4011,134.1035 l 20.2008,0.0000 c -3.9925,-3.9925 -4.9459,-7.5083 -4.9459 -9.8323c 0.0000,-4.2904 3.2774,-6.4357 9.4151 -6.4357l 12.6330,0.0000 c 1.7281,0.0000 2.6219,-0.5959 2.6219 -2.5623l 0.0000,-1.1322 c 0.0000,-0.2384 0.1788,-0.4767 0.4767 -0.4767l 1.1322,0.0000 l 0.1192,0.1192 c 0.0000,-0.0000 -0.1192,4.0521 -0.1192 6.4357c -0.0000,2.0856 0.1192,6.1377 0.1192 6.1377l -0.1192,0.1192 l -1.1322,-0.0000 c -0.2979,-0.0000 -0.4767,-0.1788 -0.4767 -0.4767l 0.0000,-1.1322 c 0.0000,-2.0260 -0.8938,-2.5623 -2.6219 -2.5623l -13.2885,-0.0000 c -4.8267,-0.0000 -5.9589,1.3110 -5.9589 4.6480c -0.0000,1.7281 1.5493,4.2904 4.3500 7.1507l 14.8974,0.0000 c 1.7281,0.0000 2.6219,-0.5959 2.6219 -2.5623l 0.0000,-1.1322 c 0.0000,-0.2384 0.1788,-0.4767 0.4767 -0.4767l 1.1322,0.0000 l 0.1192,0.1192 c 0.0000,-0.0000 -0.1192,4.0521 -0.1192 6.3761c -0.0000,2.1452 0.1192,6.1377 0.1192 6.1377l -0.1192,0.1192 l -1.1322,-0.0000 c -0.2979,-0.0000 -0.4767,-0.1192 -0.4767 -0.4171l 0.0000,-1.1322 c 0.0000,-2.0260 -0.8938,-2.5623 -2.6219 -2.5623l -29.8543,-0.0000 c -3.3966,-0.0000 -4.3500,0.5363 -4.3500 1.7281l 0.2384,1.9665 c -0.0000,0.1788 -0.1192,0.2979 -0.2979 0.2979l -1.4897,0.1192 c 0.0000,-0.9534 -0.3575,-3.0987 -0.5363 -4.1117c -0.2384,-1.0726 -0.4767,-1.9665 -1.0130 -3.1582l 0.0000,-1.3110 ZM 91.9946,112.9492 ZM 77.3952,95.6087 l 1.1918,4.7076 c 1.6089,5.2439 4.3500,6.0185 7.0316 6.0185c 1.8473,0.0000 4.6480,-0.8938 4.6480 -4.6480c 0.0000,-1.7877 -1.7281,-4.5288 -3.0391 -6.0781l -9.8323,-0.0000 ZM 77.3952,95.6087 ZM 92.7097,91.7949 c -0.0000,2.2644 -2.0260,3.5158 -3.4562 3.7541l 0.9534,1.3706 c 1.9069,2.7411 2.5028,3.7541 2.5028 6.4953c -0.0000,4.1713 -2.3836,7.2103 -6.8528 7.2103c -4.5288,-0.0000 -7.6275,-3.8733 -9.0576 -9.5343l -1.3706,-5.4822 c -6.7336,-0.0000 -7.9850,3.0987 -7.9850 5.1247c -0.0000,2.2644 1.0130,4.8863 2.8603 4.8863c 0.6555,0.0000 1.0130,-0.1192 1.1918 -0.1788c 0.2384,-0.1192 0.6555,-0.1788 1.0726 -0.1788c 0.7747,0.0000 1.9665,0.5959 1.9665 2.3240c -0.0000,1.4301 -0.9534,2.3836 -2.3836 2.3836c -3.4562,-0.0000 -6.4953,-5.6014 -6.4953 -9.4151c 0.0000,-4.3500 1.7877,-9.3555 10.2494 -9.3555l 8.7597,0.0000 c 3.6350,0.0000 5.1843,-0.0596 5.1843 -1.4301c 0.0000,-1.3110 -1.6685,-1.6685 -2.9795 -1.7281l 0.2979,-1.4897 c 4.3500,0.3575 5.5418,2.2048 5.5418 5.2439ZM 91.9946,86.0744 ZM 87.7041,80.7709 l -14.8378,-0.0000 c -2.9795,-0.0000 -3.6350,0.4171 -3.6350 1.3110c -0.0000,0.7747 0.0596,1.4897 0.2979 2.5028l -1.6685,0.2979 c -0.6555,-3.7541 -0.8343,-4.4096 -1.7281 -6.1973c -0.2979,-0.5959 -0.4767,-1.0726 -0.4767 -1.4897l 0.0000,-0.8938 l 5.3631,0.1788 l 0.0000,-0.1788 c -2.3240,-1.5493 -5.3631,-4.1713 -5.3631 -6.9720c 0.0000,-2.4432 1.1918,-3.3370 2.7411 -3.3370c 1.5493,0.0000 2.5028,1.0130 2.5028 2.5623c -0.0000,1.1918 -0.4767,1.8473 -1.0726 2.4432c -0.3575,0.3575 -0.5363,0.7747 -0.5363 1.1918c -0.0000,0.6555 1.0726,1.9665 3.0987 3.3966c 0.5363,0.4171 1.3110,0.7151 2.0856 0.7151l 13.2289,0.0000 c 1.7281,0.0000 2.6219,-0.5959 2.6219 -2.5623l 0.0000,-1.7281 c 0.0000,-0.2979 0.1788,-0.5363 0.4767 -0.5363l 1.1322,0.0000 l 0.1192,0.1192 c 0.0000,-0.0000 -0.1192,4.7076 -0.1192 7.0316c -0.0000,2.1452 0.1192,6.1973 0.1192 6.1973l -0.1192,0.0596 l -1.1322,-0.0000 c -0.2979,-0.0000 -0.4767,-0.1192 -0.4767 -0.4171l 0.0000,-1.1322 c 0.0000,-2.0260 -0.8938,-2.5623 -2.6219 -2.5623ZM 91.9946,65.3968 ZM 68.6951,55.6241 l 15.2549,0.0000 c 3.6945,0.0000 5.4822,-0.3575 5.4822 -1.9665c 0.0000,-1.5493 -0.4767,-2.7411 -1.6685 -4.2904l 1.0130,-1.0726 c 2.6219,2.3240 3.9329,4.7076 3.9329 7.4487c -0.0000,2.7411 -1.6685,4.3500 -5.8994 4.3500l -18.1152,-0.0000 l -0.0000,3.8733 c -0.0000,0.1788 -0.0596,0.2384 -0.2384 0.2384l -1.8473,-0.0000 c -0.1788,-0.0000 -0.2384,-0.0596 -0.2384 -0.1788c 0.0000,-3.9925 -2.3240,-4.9459 -6.8528 -4.9459l -1.1322,-0.0000 l -1.1918,-3.4562 l 9.1768,0.0000 l 0.0000,-6.5548 c 0.0000,-0.2979 0.1192,-0.4767 0.3575 -0.4767l 1.1918,0.0000 c 0.5363,0.0000 0.7747,0.8343 0.7747 1.4301l -0.0000,5.6014 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 539.4106,304.6528 ZM 541.8967,303.7351 c 0.3337,0.4004 0.6841,0.5339 1.2013 0.5339c 1.5851,-0.0000 2.3860,-1.4683 2.3860 -3.3704c 0.0000,-1.7019 -0.8676,-2.9199 -1.8854 -2.9199c -0.1835,-0.0000 -1.0512,0.0334 -1.7019 0.7175v 5.0389 ZM 541.8967,303.7351 ZM 540.6453,295.0923 c 0.0000,-0.9510 -0.1669,-1.2180 -0.5006 -1.2180l -0.5339,0.0667 c -0.0501,-0.0000 -0.0834,-0.0334 -0.0834 -0.0834l -0.0334,-0.4171 c 0.2670,-0.0000 0.8676,-0.1001 1.1513 -0.1502c 0.3003,-0.0667 0.5506,-0.1335 0.8843 -0.2836h 0.3671 v 5.1724 c 0.5673,-0.6173 1.2347,-0.9177 2.0356 -0.9177c 1.4516,-0.0000 2.8365,1.3849 2.8365 3.4204c 0.0000,2.6529 -1.8687,4.1546 -3.5706 4.1546c -0.7175,-0.0000 -1.2514,-0.2002 -1.7352 -0.6173c -0.1502,0.2002 -0.3671,0.4505 -0.5172 0.6173l -0.3504,-0.0834 c 0.0501,-0.4004 0.0501,-0.6674 0.0501 -1.3181v -8.3425 ZM 547.2693,304.6528 ZM 548.8544,303.4515 v -8.3592 c 0.0000,-0.9510 -0.1669,-1.2180 -0.5006 -1.2180l -0.5339,0.0667 c -0.0501,-0.0000 -0.1001,-0.0334 -0.1001 -0.0834l -0.0334,-0.4171 c 0.2670,-0.0000 0.8843,-0.1001 1.1680 -0.1502c 0.3003,-0.0667 0.5339,-0.1335 0.8676 -0.2836h 0.3671 v 10.4448 c 0.0000,0.4839 0.1835,0.7341 0.7175 0.7341h 0.4004 c 0.0667,-0.0000 0.1335,0.0501 0.1335 0.1335v 0.3170 l -0.0334,0.0334 c 0.0000,-0.0000 -1.2180,-0.0334 -1.8687 -0.0334c -0.5840,-0.0000 -1.8020,0.0334 -1.8020 0.0334l -0.0167,-0.0334 v -0.3170 c 0.0000,-0.0834 0.0334,-0.1335 0.1168 -0.1335h 0.4004 c 0.5506,-0.0000 0.7175,-0.2503 0.7175 -0.7341ZM 551.6074,304.6528 ZM 558.7653,302.7173 c 0.0000,0.8343 0.0834,1.1012 0.4171 1.1012c 0.2002,-0.0000 0.5673,-0.0334 0.8509 -0.0834l 0.0667,0.4672 c -1.0178,0.1835 -1.8354,0.3504 -2.2191 0.6507h -0.3671 l 0.0501,-1.2347 h -0.0501 c -0.9177,1.0011 -1.6685,1.2347 -2.3526 1.2347c -1.6518,-0.0000 -2.0856,-1.1179 -2.0856 -2.2692v -3.8042 c 0.0000,-0.5506 -0.1168,-0.8343 -0.7341 -0.8343c -0.0667,-0.0000 -0.1835,0.0167 -0.2836 0.0167l -0.0501,-0.0167 v -0.4338 l 0.0501,-0.0501 c 0.0000,-0.0000 1.1346,0.0334 1.6685 0.0334c 0.2336,-0.0000 0.6173,-0.0334 0.6173 -0.0334l -0.0167,1.3348 v 3.5539 c 0.0000,1.4850 0.7675,1.7519 1.2681 1.7519c 0.3838,-0.0000 0.7341,-0.1502 1.0845 -0.4004c 0.4004,-0.3003 0.6674,-0.5339 0.8343 -0.7508v -4.1212 c 0.0000,-0.6007 -0.0834,-0.8843 -0.7008 -0.8843c -0.1001,-0.0000 -0.2836,0.0167 -0.3337 0.0167l -0.0334,-0.0334 v -0.4171 l 0.0334,-0.0501 c 0.0000,-0.0000 1.1846,0.0334 1.6518 0.0334c 0.3838,-0.0000 0.6507,-0.0334 0.6507 -0.0334l -0.0167,1.3181 v 3.9377 ZM 560.2336,304.6528 ZM 562.1357,300.0310 h 3.0700 c 0.1669,-0.0000 0.2336,-0.0834 0.2336 -0.2336c 0.0000,-1.5517 -0.7842,-1.9522 -1.3849 -1.9522c -0.3838,-0.0000 -1.6351,0.1502 -1.9188 2.1857ZM 562.1357,300.0310 ZM 566.5405,303.1011 l 0.3337,0.2670 c -0.6340,0.8676 -1.6184,1.4850 -2.8198 1.4850c -2.2859,-0.0000 -3.2536,-1.7019 -3.2536 -3.5205c 0.0000,-2.5361 1.6685,-4.0545 3.2536 -4.0545c 2.2024,-0.0000 2.7197,1.7186 2.7197 3.1201c 0.0000,0.1835 -0.1168,0.2836 -0.3003 0.2836h -4.3882 c -0.0167,0.1001 -0.0167,0.2002 -0.0167 0.3337c 0.0000,1.7019 1.1846,3.0200 2.3860 3.0200c 0.9177,-0.0000 1.5017,-0.3003 2.0856 -0.9344Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 533.6614,311.8393 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 539.4106,273.9261 ZM 540.8956,272.7248 v -4.1546 c 0.0000,-0.8343 -0.1168,-1.0178 -0.3671 -1.0178c -0.2169,-0.0000 -0.4171,0.0167 -0.7008 0.0834l -0.0834,-0.4672 c 1.0512,-0.1835 1.2347,-0.2336 1.7352 -0.4839c 0.1669,-0.0834 0.3003,-0.1335 0.4171 -0.1335h 0.2503 l -0.0501,1.5017 h 0.0501 c 0.4338,-0.6507 1.1680,-1.5017 1.9522 -1.5017c 0.6841,-0.0000 0.9344,0.3337 0.9344 0.7675c 0.0000,0.4338 -0.2836,0.7008 -0.7175 0.7008c -0.3337,-0.0000 -0.5172,-0.1335 -0.6841 -0.3003c -0.1001,-0.1001 -0.2169,-0.1502 -0.3337 -0.1502c -0.1835,-0.0000 -0.5506,0.3003 -0.9510 0.8676c -0.1168,0.1502 -0.2002,0.3671 -0.2002 0.5840v 3.7041 c 0.0000,0.4839 0.1669,0.7341 0.7175 0.7341h 0.4839 c 0.0834,-0.0000 0.1502,0.0501 0.1502 0.1335v 0.3170 l -0.0334,0.0334 c 0.0000,-0.0000 -1.3181,-0.0334 -1.9688 -0.0334c -0.6007,-0.0000 -1.7352,0.0334 -1.7352 0.0334l -0.0167,-0.0334 v -0.3170 c 0.0000,-0.0834 0.0334,-0.1335 0.1168 -0.1335h 0.3170 c 0.5673,-0.0000 0.7175,-0.2503 0.7175 -0.7341ZM 545.2003,273.9261 ZM 547.1024,269.3043 h 3.0700 c 0.1669,-0.0000 0.2336,-0.0834 0.2336 -0.2336c 0.0000,-1.5517 -0.7842,-1.9522 -1.3849 -1.9522c -0.3838,-0.0000 -1.6351,0.1502 -1.9188 2.1857ZM 547.1024,269.3043 ZM 551.5073,272.3744 l 0.3337,0.2670 c -0.6340,0.8676 -1.6184,1.4850 -2.8198 1.4850c -2.2859,-0.0000 -3.2536,-1.7019 -3.2536 -3.5205c 0.0000,-2.5361 1.6685,-4.0545 3.2536 -4.0545c 2.2024,-0.0000 2.7197,1.7186 2.7197 3.1201c 0.0000,0.1835 -0.1168,0.2836 -0.3003 0.2836h -4.3882 c -0.0167,0.1001 -0.0167,0.2002 -0.0167 0.3337c 0.0000,1.7019 1.1846,3.0200 2.3860 3.0200c 0.9177,-0.0000 1.5017,-0.3003 2.0856 -0.9344ZM 551.5240,273.9261 ZM 557.0968,272.4411 v -4.3214 c -0.4004,-0.6340 -0.8509,-0.9844 -1.6351 -0.9844c -0.3337,-0.0000 -1.0178,0.0501 -1.5517 0.8343c -0.2336,0.3504 -0.5172,1.0678 -0.5172 2.2692c 0.0000,2.1857 1.1346,3.1868 2.0356 3.1868c 0.5506,-0.0000 1.0011,-0.3337 1.6685 -0.9844ZM 557.0968,272.4411 ZM 558.3482,262.2799 v 9.6440 c 0.0000,0.5006 0.0334,0.7675 0.0667 0.8843c 0.0501,0.1502 0.2336,0.2503 0.3671 0.2503c 0.2002,-0.0000 0.5673,-0.0000 0.8176 -0.0501l 0.0667,0.4672 c -0.9677,0.1669 -1.8354,0.3504 -2.1857 0.6507h -0.4004 l 0.0501,-1.1513 c -0.6340,0.6507 -1.2847,1.1513 -2.1357 1.1513c -1.8020,-0.0000 -2.9032,-1.5350 -2.9032 -3.5873c 0.0000,-1.2347 0.3337,-2.2692 1.0512 -2.9866c 0.6674,-0.6340 1.4015,-1.0011 2.5028 -1.0011c 0.3337,-0.0000 1.0678,0.1502 1.4516 0.3671v -2.5528 c 0.0000,-0.9510 -0.1502,-1.2180 -0.4839 -1.2180l -0.5506,0.0667 c -0.0334,-0.0000 -0.0834,-0.0334 -0.0834 -0.0834l -0.0334,-0.4171 c 0.2670,-0.0000 0.8676,-0.1001 1.1513 -0.1502c 0.3170,-0.0667 0.5506,-0.1335 0.8843 -0.2836h 0.3671 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 533.6614,281.1126 l -0.0000,-14.3730 h -14.3730 l -0.0000,14.3730 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.2" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.966778768291653" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 569.7791,314.4808 l -0.0000,-58.1126 h -52.8949 l -0.0000,58.1126 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 162.2506,320.0297 l -0.0000,-287.4596 h -5.7492 l -0.0000,287.4596 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 128.4347,32.5702 ZM 132.6108,22.2159 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 132.6108,22.2159 ZM 132.5345,32.7990 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 136.7868,32.5702 ZM 137.8737,31.7884 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 140.9628,32.5702 ZM 146.8550,29.3476 c 0.0000,-1.9641 -1.0678,-2.9366 -2.2501 -2.9366c -0.8772,-0.0000 -1.5446,0.1335 -2.2882 0.4386l 0.6102,-5.2057 c 0.6293,0.0572 1.2776,0.0763 1.9450 0.0763c 0.9534,-0.0000 1.9450,-0.0572 2.9747 -0.1716l 0.1144,0.0572 l -0.2860,1.2395 c -0.7437,0.0763 -1.3539,0.0953 -1.8878 0.0953c -0.8581,-0.0000 -1.5064,-0.0763 -2.1738 -0.1525l -0.3623,3.0128 c 0.4004,-0.1525 1.0869,-0.2860 1.8306 -0.2860c 2.0213,-0.0000 3.1463,1.7543 3.1463 3.5086c 0.0000,2.1357 -1.4874,3.7756 -3.6421 3.7756c -1.0869,-0.0000 -2.6696,-0.6102 -2.6696 -1.3539c 0.0000,-0.3623 0.3051,-0.6102 0.6483 -0.6102c 0.3814,-0.0000 0.6293,0.2860 0.8581 0.5911c 0.2860,0.3432 0.5911,0.7246 1.2013 0.7246c 1.2204,-0.0000 2.2310,-1.1441 2.2310 -2.8031Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 153.6268,32.5702 h 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 128.4347,61.3161 ZM 132.6108,50.9619 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 132.6108,50.9619 ZM 132.5345,61.5450 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 136.7868,61.3161 ZM 137.8737,60.5343 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 140.9628,61.3161 ZM 145.8825,54.5468 c 0.0000,-0.1335 0.0191,-0.2860 0.1907 -0.3814c 0.2098,-0.1525 0.5530,-0.3242 0.8390 -0.3242c 0.2479,-0.0000 0.2670,0.2098 0.2670 0.5911v 3.0700 h 1.5446 l -0.1144,0.8962 h -1.4301 v 1.5827 c 0.0000,0.5339 0.0763,0.8009 0.6293 0.8009h 0.5149 c 0.1144,-0.0000 0.1335,0.0953 0.1335 0.1335v 0.4195 c 0.0000,-0.0000 -1.2204,-0.0381 -2.0213 -0.0381c -0.7246,-0.0000 -1.8497,0.0381 -1.8497 0.0381v -0.4195 c 0.0000,-0.0381 0.0191,-0.1335 0.1335 -0.1335h 0.5149 c 0.5911,-0.0000 0.6483,-0.2479 0.6483 -0.8009v -1.5827 h -3.7375 c -0.0763,-0.0000 -0.1144,-0.0381 -0.1716 -0.1144l -0.1525,-0.2098 l -0.2288,-0.4004 c -0.0191,-0.0000 -0.0191,-0.0191 -0.0191 -0.0381c 0.0000,-0.0191 0.0191,-0.0381 0.0381 -0.0572c 1.2395,-1.3729 3.4324,-5.6252 4.1188 -7.1889c 0.0191,-0.0763 0.0572,-0.0953 0.1335 -0.0953c 0.0191,-0.0000 0.4386,0.1716 0.6674 0.2098c -0.8581,2.3073 -2.2692,4.7862 -3.6612 6.9982h 3.0128 v -2.9556 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 153.6268,61.3161 h 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 128.4347,90.0621 ZM 132.6108,79.7078 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 132.6108,79.7078 ZM 132.5345,90.2909 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 136.7868,90.0621 ZM 137.8737,89.2803 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 140.9628,90.0621 ZM 145.0816,79.6315 c -0.4767,-0.0000 -1.8687,0.2670 -1.8687 1.4301c 0.0000,0.3432 -0.1335,0.9344 -0.6483 0.9344c -0.4958,-0.0000 -0.5339,-0.5530 -0.5339 -0.6102c 0.0000,-0.5911 0.7818,-2.3454 3.4324 -2.3454c 1.8497,-0.0000 2.4026,1.1632 2.4026 1.9259c 0.0000,0.4767 -0.1525,1.4301 -1.8687 2.5171c 1.0678,0.1716 2.4789,0.9534 2.4789 2.9366c 0.0000,2.5171 -1.9069,3.8709 -4.0616 3.8709c -1.0869,-0.0000 -2.6124,-0.4767 -2.6124 -1.2013c 0.0000,-0.2860 0.2860,-0.6102 0.6674 -0.6102c 0.3623,-0.0000 0.5339,0.1907 0.7055 0.4386c 0.2098,0.3242 0.5530,0.7818 1.4683 0.7818c 0.6293,-0.0000 2.4217,-0.6293 2.4217 -3.0319c 0.0000,-2.0403 -1.4301,-2.3645 -2.4599 -2.3645c -0.1716,-0.0000 -0.3814,0.0381 -0.5911 0.0763l -0.0763,-0.5721 c 1.4683,-0.2479 2.6887,-1.6780 2.6887 -2.5552c 0.0000,-1.0869 -0.7627,-1.6208 -1.5446 -1.6208Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 153.6268,90.0621 h 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 128.4347,118.8080 ZM 132.6108,108.4538 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 132.6108,108.4538 ZM 132.5345,119.0369 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 136.7868,118.8080 ZM 137.8737,118.0262 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 140.9628,118.8080 ZM 142.0688,110.3606 c 0.0000,-1.0869 1.0488,-2.5743 3.0510 -2.5743c 1.4683,-0.0000 3.1845,0.5530 3.1845 2.7459c 0.0000,1.4492 -0.7437,2.1738 -1.7734 3.1654l -1.8115,1.7543 c -0.0953,0.0953 -1.3729,1.3539 -1.3729 2.2501h 3.2417 c 0.6483,-0.0000 0.9916,-0.3242 1.2585 -1.3729l 0.4767,0.0763 l -0.3814,2.4026 h -5.8922 c 0.0000,-1.0678 0.1716,-1.8878 1.9450 -3.6993l 1.3348,-1.3157 c 1.0678,-1.0869 1.5064,-2.0213 1.5064 -3.1845c 0.0000,-1.7352 -1.1823,-2.2310 -1.8306 -2.2310c -1.3157,-0.0000 -1.6780,0.6865 -1.6780 1.1441c 0.0000,0.1525 0.0381,0.3051 0.0763 0.4386c 0.0381,0.1335 0.0763,0.2670 0.0763 0.4195c 0.0000,0.4958 -0.3814,0.6865 -0.6865 0.6865c -0.4195,-0.0000 -0.7246,-0.3242 -0.7246 -0.7055Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 153.6268,118.8080 h 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 128.4347,147.5540 ZM 132.6108,137.1997 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 132.6108,137.1997 ZM 132.5345,147.7828 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 136.7868,147.5540 ZM 137.8737,146.7722 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 140.9628,147.5540 ZM 144.5477,138.4583 c -0.3623,-0.0000 -1.2013,0.3432 -1.6208 0.5339l -0.2288,-0.5911 c 1.6780,-0.7818 2.3264,-1.1823 3.2798 -1.8687h 0.3623 v 9.5915 c 0.0000,0.6865 0.0953,0.8772 0.7246 0.8772h 0.9916 c 0.0572,-0.0000 0.1525,0.0381 0.1525 0.1525v 0.4195 l -2.6124,-0.0381 l -2.6505,0.0381 v -0.4195 c 0.0191,-0.0572 0.0381,-0.1525 0.1525 -0.1525h 1.1441 c 0.7246,-0.0000 0.7246,-0.3242 0.7246 -0.8772v -6.5596 c 0.0000,-0.6483 0.0000,-1.1060 -0.4195 -1.1060Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 153.6268,147.5540 h 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 128.4347,176.3000 ZM 132.6108,165.9457 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 132.6108,165.9457 ZM 132.5345,176.5288 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 136.7868,176.3000 ZM 137.8737,175.5181 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 140.9628,176.3000 ZM 145.1389,165.9457 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 145.1389,165.9457 ZM 145.0626,176.5288 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 153.6268,176.3000 h 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 122.0849,205.0459 ZM 127.3097,200.5457 h -4.3095 c -0.1716,-0.0000 -0.2860,-0.1525 -0.2860 -0.3242c 0.0000,-0.3051 0.2479,-0.7055 0.4767 -0.7055h 4.3667 c 0.1907,-0.0000 0.2670,0.1716 0.2670 0.3432c 0.0000,0.2098 -0.2670,0.6865 -0.5149 0.6865ZM 128.4347,205.0459 ZM 132.6108,194.6917 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 132.6108,194.6917 ZM 132.5345,205.2747 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 136.7868,205.0459 ZM 137.8737,204.2641 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 140.9628,205.0459 ZM 144.5477,195.9502 c -0.3623,-0.0000 -1.2013,0.3432 -1.6208 0.5339l -0.2288,-0.5911 c 1.6780,-0.7818 2.3264,-1.1823 3.2798 -1.8687h 0.3623 v 9.5915 c 0.0000,0.6865 0.0953,0.8772 0.7246 0.8772h 0.9916 c 0.0572,-0.0000 0.1525,0.0381 0.1525 0.1525v 0.4195 l -2.6124,-0.0381 l -2.6505,0.0381 v -0.4195 c 0.0191,-0.0572 0.0381,-0.1525 0.1525 -0.1525h 1.1441 c 0.7246,-0.0000 0.7246,-0.3242 0.7246 -0.8772v -6.5596 c 0.0000,-0.6483 0.0000,-1.1060 -0.4195 -1.1060Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 153.6268,205.0459 h 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 122.0849,233.7919 ZM 127.3097,229.2917 h -4.3095 c -0.1716,-0.0000 -0.2860,-0.1525 -0.2860 -0.3242c 0.0000,-0.3051 0.2479,-0.7055 0.4767 -0.7055h 4.3667 c 0.1907,-0.0000 0.2670,0.1716 0.2670 0.3432c 0.0000,0.2098 -0.2670,0.6865 -0.5149 0.6865ZM 128.4347,233.7919 ZM 132.6108,223.4376 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 132.6108,223.4376 ZM 132.5345,234.0207 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 136.7868,233.7919 ZM 137.8737,233.0101 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 140.9628,233.7919 ZM 142.0688,225.3445 c 0.0000,-1.0869 1.0488,-2.5743 3.0510 -2.5743c 1.4683,-0.0000 3.1845,0.5530 3.1845 2.7459c 0.0000,1.4492 -0.7437,2.1738 -1.7734 3.1654l -1.8115,1.7543 c -0.0953,0.0953 -1.3729,1.3539 -1.3729 2.2501h 3.2417 c 0.6483,-0.0000 0.9916,-0.3242 1.2585 -1.3729l 0.4767,0.0763 l -0.3814,2.4026 h -5.8922 c 0.0000,-1.0678 0.1716,-1.8878 1.9450 -3.6993l 1.3348,-1.3157 c 1.0678,-1.0869 1.5064,-2.0213 1.5064 -3.1845c 0.0000,-1.7352 -1.1823,-2.2310 -1.8306 -2.2310c -1.3157,-0.0000 -1.6780,0.6865 -1.6780 1.1441c 0.0000,0.1525 0.0381,0.3051 0.0763 0.4386c 0.0381,0.1335 0.0763,0.2670 0.0763 0.4195c 0.0000,0.4958 -0.3814,0.6865 -0.6865 0.6865c -0.4195,-0.0000 -0.7246,-0.3242 -0.7246 -0.7055Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 153.6268,233.7919 h 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 122.0849,262.5378 ZM 127.3097,258.0376 h -4.3095 c -0.1716,-0.0000 -0.2860,-0.1525 -0.2860 -0.3242c 0.0000,-0.3051 0.2479,-0.7055 0.4767 -0.7055h 4.3667 c 0.1907,-0.0000 0.2670,0.1716 0.2670 0.3432c 0.0000,0.2098 -0.2670,0.6865 -0.5149 0.6865ZM 128.4347,262.5378 ZM 132.6108,252.1836 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 132.6108,252.1836 ZM 132.5345,262.7667 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 136.7868,262.5378 ZM 137.8737,261.7560 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 140.9628,262.5378 ZM 145.0816,252.1073 c -0.4767,-0.0000 -1.8687,0.2670 -1.8687 1.4301c 0.0000,0.3432 -0.1335,0.9344 -0.6483 0.9344c -0.4958,-0.0000 -0.5339,-0.5530 -0.5339 -0.6102c 0.0000,-0.5911 0.7818,-2.3454 3.4324 -2.3454c 1.8497,-0.0000 2.4026,1.1632 2.4026 1.9259c 0.0000,0.4767 -0.1525,1.4301 -1.8687 2.5171c 1.0678,0.1716 2.4789,0.9534 2.4789 2.9366c 0.0000,2.5171 -1.9069,3.8709 -4.0616 3.8709c -1.0869,-0.0000 -2.6124,-0.4767 -2.6124 -1.2013c 0.0000,-0.2860 0.2860,-0.6102 0.6674 -0.6102c 0.3623,-0.0000 0.5339,0.1907 0.7055 0.4386c 0.2098,0.3242 0.5530,0.7818 1.4683 0.7818c 0.6293,-0.0000 2.4217,-0.6293 2.4217 -3.0319c 0.0000,-2.0403 -1.4301,-2.3645 -2.4599 -2.3645c -0.1716,-0.0000 -0.3814,0.0381 -0.5911 0.0763l -0.0763,-0.5721 c 1.4683,-0.2479 2.6887,-1.6780 2.6887 -2.5552c 0.0000,-1.0869 -0.7627,-1.6208 -1.5446 -1.6208Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 153.6268,262.5378 h 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 122.0849,291.2838 ZM 127.3097,286.7836 h -4.3095 c -0.1716,-0.0000 -0.2860,-0.1525 -0.2860 -0.3242c 0.0000,-0.3051 0.2479,-0.7055 0.4767 -0.7055h 4.3667 c 0.1907,-0.0000 0.2670,0.1716 0.2670 0.3432c 0.0000,0.2098 -0.2670,0.6865 -0.5149 0.6865ZM 128.4347,291.2838 ZM 132.6108,280.9295 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 132.6108,280.9295 ZM 132.5345,291.5126 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 136.7868,291.2838 ZM 137.8737,290.5020 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 140.9628,291.2838 ZM 145.8825,284.5144 c 0.0000,-0.1335 0.0191,-0.2860 0.1907 -0.3814c 0.2098,-0.1525 0.5530,-0.3242 0.8390 -0.3242c 0.2479,-0.0000 0.2670,0.2098 0.2670 0.5911v 3.0700 h 1.5446 l -0.1144,0.8962 h -1.4301 v 1.5827 c 0.0000,0.5339 0.0763,0.8009 0.6293 0.8009h 0.5149 c 0.1144,-0.0000 0.1335,0.0953 0.1335 0.1335v 0.4195 c 0.0000,-0.0000 -1.2204,-0.0381 -2.0213 -0.0381c -0.7246,-0.0000 -1.8497,0.0381 -1.8497 0.0381v -0.4195 c 0.0000,-0.0381 0.0191,-0.1335 0.1335 -0.1335h 0.5149 c 0.5911,-0.0000 0.6483,-0.2479 0.6483 -0.8009v -1.5827 h -3.7375 c -0.0763,-0.0000 -0.1144,-0.0381 -0.1716 -0.1144l -0.1525,-0.2098 l -0.2288,-0.4004 c -0.0191,-0.0000 -0.0191,-0.0191 -0.0191 -0.0381c 0.0000,-0.0191 0.0191,-0.0381 0.0381 -0.0572c 1.2395,-1.3729 3.4324,-5.6252 4.1188 -7.1889c 0.0191,-0.0763 0.0572,-0.0953 0.1335 -0.0953c 0.0191,-0.0000 0.4386,0.1716 0.6674 0.2098c -0.8581,2.3073 -2.2692,4.7862 -3.6612 6.9982h 3.0128 v -2.9556 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 153.6268,291.2838 h 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 122.0849,320.0297 ZM 127.3097,315.5296 h -4.3095 c -0.1716,-0.0000 -0.2860,-0.1525 -0.2860 -0.3242c 0.0000,-0.3051 0.2479,-0.7055 0.4767 -0.7055h 4.3667 c 0.1907,-0.0000 0.2670,0.1716 0.2670 0.3432c 0.0000,0.2098 -0.2670,0.6865 -0.5149 0.6865ZM 128.4347,320.0297 ZM 132.6108,309.6755 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 132.6108,309.6755 ZM 132.5345,320.2586 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 136.7868,320.0297 ZM 137.8737,319.2479 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 140.9628,320.0297 ZM 146.8550,316.8071 c 0.0000,-1.9641 -1.0678,-2.9366 -2.2501 -2.9366c -0.8772,-0.0000 -1.5446,0.1335 -2.2882 0.4386l 0.6102,-5.2057 c 0.6293,0.0572 1.2776,0.0763 1.9450 0.0763c 0.9534,-0.0000 1.9450,-0.0572 2.9747 -0.1716l 0.1144,0.0572 l -0.2860,1.2395 c -0.7437,0.0763 -1.3539,0.0953 -1.8878 0.0953c -0.8581,-0.0000 -1.5064,-0.0763 -2.1738 -0.1525l -0.3623,3.0128 c 0.4004,-0.1525 1.0869,-0.2860 1.8306 -0.2860c 2.0213,-0.0000 3.1463,1.7543 3.1463 3.5086c 0.0000,2.1357 -1.4874,3.7756 -3.6421 3.7756c -1.0869,-0.0000 -2.6696,-0.6102 -2.6696 -1.3539c 0.0000,-0.3623 0.3051,-0.6102 0.6483 -0.6102c 0.3814,-0.0000 0.6293,0.2860 0.8581 0.5911c 0.2860,0.3432 0.5911,0.7246 1.2013 0.7246c 1.2204,-0.0000 2.2310,-1.1441 2.2310 -2.8031Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 153.6268,320.0297 h 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 492.0711,348.9759 l -0.0000,-5.7492 h -287.4596 l -0.0000,5.7492 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 481.6310,373.2098 ZM 485.8071,362.8555 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 485.8071,362.8555 ZM 485.7308,373.4386 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 489.9831,373.2098 ZM 491.0700,372.4280 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 494.1591,373.2098 ZM 500.0513,369.9872 c 0.0000,-1.9641 -1.0678,-2.9366 -2.2501 -2.9366c -0.8772,-0.0000 -1.5446,0.1335 -2.2882 0.4386l 0.6102,-5.2057 c 0.6293,0.0572 1.2776,0.0763 1.9450 0.0763c 0.9534,-0.0000 1.9450,-0.0572 2.9747 -0.1716l 0.1144,0.0572 l -0.2860,1.2395 c -0.7437,0.0763 -1.3539,0.0953 -1.8878 0.0953c -0.8581,-0.0000 -1.5064,-0.0763 -2.1738 -0.1525l -0.3623,3.0128 c 0.4004,-0.1525 1.0869,-0.2860 1.8306 -0.2860c 2.0213,-0.0000 3.1463,1.7543 3.1463 3.5086c 0.0000,2.1357 -1.4874,3.7756 -3.6421 3.7756c -1.0869,-0.0000 -2.6696,-0.6102 -2.6696 -1.3539c 0.0000,-0.3623 0.3051,-0.6102 0.6483 -0.6102c 0.3814,-0.0000 0.6293,0.2860 0.8581 0.5911c 0.2860,0.3432 0.5911,0.7246 1.2013 0.7246c 1.2204,-0.0000 2.2310,-1.1441 2.2310 -2.8031Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 492.0711,343.2267 v 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 452.8851,373.2098 ZM 457.0611,362.8555 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 457.0611,362.8555 ZM 456.9848,373.4386 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 461.2371,373.2098 ZM 462.3240,372.4280 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 465.4132,373.2098 ZM 470.3329,366.4404 c 0.0000,-0.1335 0.0191,-0.2860 0.1907 -0.3814c 0.2098,-0.1525 0.5530,-0.3242 0.8390 -0.3242c 0.2479,-0.0000 0.2670,0.2098 0.2670 0.5911v 3.0700 h 1.5446 l -0.1144,0.8962 h -1.4301 v 1.5827 c 0.0000,0.5339 0.0763,0.8009 0.6293 0.8009h 0.5149 c 0.1144,-0.0000 0.1335,0.0953 0.1335 0.1335v 0.4195 c 0.0000,-0.0000 -1.2204,-0.0381 -2.0213 -0.0381c -0.7246,-0.0000 -1.8497,0.0381 -1.8497 0.0381v -0.4195 c 0.0000,-0.0381 0.0191,-0.1335 0.1335 -0.1335h 0.5149 c 0.5911,-0.0000 0.6483,-0.2479 0.6483 -0.8009v -1.5827 h -3.7375 c -0.0763,-0.0000 -0.1144,-0.0381 -0.1716 -0.1144l -0.1525,-0.2098 l -0.2288,-0.4004 c -0.0191,-0.0000 -0.0191,-0.0191 -0.0191 -0.0381c 0.0000,-0.0191 0.0191,-0.0381 0.0381 -0.0572c 1.2395,-1.3729 3.4324,-5.6252 4.1188 -7.1889c 0.0191,-0.0763 0.0572,-0.0953 0.1335 -0.0953c 0.0191,-0.0000 0.4386,0.1716 0.6674 0.2098c -0.8581,2.3073 -2.2692,4.7862 -3.6612 6.9982h 3.0128 v -2.9556 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 463.3251,343.2267 v 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 424.1391,373.2098 ZM 428.3151,362.8555 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 428.3151,362.8555 ZM 428.2389,373.4386 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 432.4912,373.2098 ZM 433.5781,372.4280 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 436.6672,373.2098 ZM 440.7860,362.7792 c -0.4767,-0.0000 -1.8687,0.2670 -1.8687 1.4301c 0.0000,0.3432 -0.1335,0.9344 -0.6483 0.9344c -0.4958,-0.0000 -0.5339,-0.5530 -0.5339 -0.6102c 0.0000,-0.5911 0.7818,-2.3454 3.4324 -2.3454c 1.8497,-0.0000 2.4026,1.1632 2.4026 1.9259c 0.0000,0.4767 -0.1525,1.4301 -1.8687 2.5171c 1.0678,0.1716 2.4789,0.9534 2.4789 2.9366c 0.0000,2.5171 -1.9069,3.8709 -4.0616 3.8709c -1.0869,-0.0000 -2.6124,-0.4767 -2.6124 -1.2013c 0.0000,-0.2860 0.2860,-0.6102 0.6674 -0.6102c 0.3623,-0.0000 0.5339,0.1907 0.7055 0.4386c 0.2098,0.3242 0.5530,0.7818 1.4683 0.7818c 0.6293,-0.0000 2.4217,-0.6293 2.4217 -3.0319c 0.0000,-2.0403 -1.4301,-2.3645 -2.4599 -2.3645c -0.1716,-0.0000 -0.3814,0.0381 -0.5911 0.0763l -0.0763,-0.5721 c 1.4683,-0.2479 2.6887,-1.6780 2.6887 -2.5552c 0.0000,-1.0869 -0.7627,-1.6208 -1.5446 -1.6208Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 434.5792,343.2267 v 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 395.3932,373.2098 ZM 399.5692,362.8555 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 399.5692,362.8555 ZM 399.4929,373.4386 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 403.7452,373.2098 ZM 404.8321,372.4280 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 407.9212,373.2098 ZM 409.0272,364.7624 c 0.0000,-1.0869 1.0488,-2.5743 3.0510 -2.5743c 1.4683,-0.0000 3.1845,0.5530 3.1845 2.7459c 0.0000,1.4492 -0.7437,2.1738 -1.7734 3.1654l -1.8115,1.7543 c -0.0953,0.0953 -1.3729,1.3539 -1.3729 2.2501h 3.2417 c 0.6483,-0.0000 0.9916,-0.3242 1.2585 -1.3729l 0.4767,0.0763 l -0.3814,2.4026 h -5.8922 c 0.0000,-1.0678 0.1716,-1.8878 1.9450 -3.6993l 1.3348,-1.3157 c 1.0678,-1.0869 1.5064,-2.0213 1.5064 -3.1845c 0.0000,-1.7352 -1.1823,-2.2310 -1.8306 -2.2310c -1.3157,-0.0000 -1.6780,0.6865 -1.6780 1.1441c 0.0000,0.1525 0.0381,0.3051 0.0763 0.4386c 0.0381,0.1335 0.0763,0.2670 0.0763 0.4195c 0.0000,0.4958 -0.3814,0.6865 -0.6865 0.6865c -0.4195,-0.0000 -0.7246,-0.3242 -0.7246 -0.7055Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 405.8332,343.2267 v 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 366.6472,373.2098 ZM 370.8232,362.8555 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 370.8232,362.8555 ZM 370.7469,373.4386 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 374.9993,373.2098 ZM 376.0862,372.4280 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 379.1753,373.2098 ZM 382.7602,364.1140 c -0.3623,-0.0000 -1.2013,0.3432 -1.6208 0.5339l -0.2288,-0.5911 c 1.6780,-0.7818 2.3264,-1.1823 3.2798 -1.8687h 0.3623 v 9.5915 c 0.0000,0.6865 0.0953,0.8772 0.7246 0.8772h 0.9916 c 0.0572,-0.0000 0.1525,0.0381 0.1525 0.1525v 0.4195 l -2.6124,-0.0381 l -2.6505,0.0381 v -0.4195 c 0.0191,-0.0572 0.0381,-0.1525 0.1525 -0.1525h 1.1441 c 0.7246,-0.0000 0.7246,-0.3242 0.7246 -0.8772v -6.5596 c 0.0000,-0.6483 0.0000,-1.1060 -0.4195 -1.1060Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 377.0873,343.2267 v 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 337.9012,373.2098 ZM 342.0773,362.8555 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 342.0773,362.8555 ZM 342.0010,373.4386 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 346.2533,373.2098 ZM 347.3402,372.4280 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 350.4293,373.2098 ZM 354.6054,362.8555 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 354.6054,362.8555 ZM 354.5291,373.4386 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 348.3413,343.2267 v 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 305.9804,373.2098 ZM 311.2052,368.7096 h -4.3095 c -0.1716,-0.0000 -0.2860,-0.1525 -0.2860 -0.3242c 0.0000,-0.3051 0.2479,-0.7055 0.4767 -0.7055h 4.3667 c 0.1907,-0.0000 0.2670,0.1716 0.2670 0.3432c 0.0000,0.2098 -0.2670,0.6865 -0.5149 0.6865ZM 312.3302,373.2098 ZM 316.5062,362.8555 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 316.5062,362.8555 ZM 316.4300,373.4386 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 320.6823,373.2098 ZM 321.7692,372.4280 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 324.8583,373.2098 ZM 328.4432,364.1140 c -0.3623,-0.0000 -1.2013,0.3432 -1.6208 0.5339l -0.2288,-0.5911 c 1.6780,-0.7818 2.3264,-1.1823 3.2798 -1.8687h 0.3623 v 9.5915 c 0.0000,0.6865 0.0953,0.8772 0.7246 0.8772h 0.9916 c 0.0572,-0.0000 0.1525,0.0381 0.1525 0.1525v 0.4195 l -2.6124,-0.0381 l -2.6505,0.0381 v -0.4195 c 0.0191,-0.0572 0.0381,-0.1525 0.1525 -0.1525h 1.1441 c 0.7246,-0.0000 0.7246,-0.3242 0.7246 -0.8772v -6.5596 c 0.0000,-0.6483 0.0000,-1.1060 -0.4195 -1.1060Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 319.5954,343.2267 v 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 277.2344,373.2098 ZM 282.4592,368.7096 h -4.3095 c -0.1716,-0.0000 -0.2860,-0.1525 -0.2860 -0.3242c 0.0000,-0.3051 0.2479,-0.7055 0.4767 -0.7055h 4.3667 c 0.1907,-0.0000 0.2670,0.1716 0.2670 0.3432c 0.0000,0.2098 -0.2670,0.6865 -0.5149 0.6865ZM 283.5842,373.2098 ZM 287.7603,362.8555 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 287.7603,362.8555 ZM 287.6840,373.4386 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 291.9363,373.2098 ZM 293.0232,372.4280 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 296.1123,373.2098 ZM 297.2183,364.7624 c 0.0000,-1.0869 1.0488,-2.5743 3.0510 -2.5743c 1.4683,-0.0000 3.1845,0.5530 3.1845 2.7459c 0.0000,1.4492 -0.7437,2.1738 -1.7734 3.1654l -1.8115,1.7543 c -0.0953,0.0953 -1.3729,1.3539 -1.3729 2.2501h 3.2417 c 0.6483,-0.0000 0.9916,-0.3242 1.2585 -1.3729l 0.4767,0.0763 l -0.3814,2.4026 h -5.8922 c 0.0000,-1.0678 0.1716,-1.8878 1.9450 -3.6993l 1.3348,-1.3157 c 1.0678,-1.0869 1.5064,-2.0213 1.5064 -3.1845c 0.0000,-1.7352 -1.1823,-2.2310 -1.8306 -2.2310c -1.3157,-0.0000 -1.6780,0.6865 -1.6780 1.1441c 0.0000,0.1525 0.0381,0.3051 0.0763 0.4386c 0.0381,0.1335 0.0763,0.2670 0.0763 0.4195c 0.0000,0.4958 -0.3814,0.6865 -0.6865 0.6865c -0.4195,-0.0000 -0.7246,-0.3242 -0.7246 -0.7055Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 290.8494,343.2267 v 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 248.4884,373.2098 ZM 253.7132,368.7096 h -4.3095 c -0.1716,-0.0000 -0.2860,-0.1525 -0.2860 -0.3242c 0.0000,-0.3051 0.2479,-0.7055 0.4767 -0.7055h 4.3667 c 0.1907,-0.0000 0.2670,0.1716 0.2670 0.3432c 0.0000,0.2098 -0.2670,0.6865 -0.5149 0.6865ZM 254.8383,373.2098 ZM 259.0143,362.8555 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 259.0143,362.8555 ZM 258.9380,373.4386 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 263.1903,373.2098 ZM 264.2773,372.4280 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 267.3664,373.2098 ZM 271.4852,362.7792 c -0.4767,-0.0000 -1.8687,0.2670 -1.8687 1.4301c 0.0000,0.3432 -0.1335,0.9344 -0.6483 0.9344c -0.4958,-0.0000 -0.5339,-0.5530 -0.5339 -0.6102c 0.0000,-0.5911 0.7818,-2.3454 3.4324 -2.3454c 1.8497,-0.0000 2.4026,1.1632 2.4026 1.9259c 0.0000,0.4767 -0.1525,1.4301 -1.8687 2.5171c 1.0678,0.1716 2.4789,0.9534 2.4789 2.9366c 0.0000,2.5171 -1.9069,3.8709 -4.0616 3.8709c -1.0869,-0.0000 -2.6124,-0.4767 -2.6124 -1.2013c 0.0000,-0.2860 0.2860,-0.6102 0.6674 -0.6102c 0.3623,-0.0000 0.5339,0.1907 0.7055 0.4386c 0.2098,0.3242 0.5530,0.7818 1.4683 0.7818c 0.6293,-0.0000 2.4217,-0.6293 2.4217 -3.0319c 0.0000,-2.0403 -1.4301,-2.3645 -2.4599 -2.3645c -0.1716,-0.0000 -0.3814,0.0381 -0.5911 0.0763l -0.0763,-0.5721 c 1.4683,-0.2479 2.6887,-1.6780 2.6887 -2.5552c 0.0000,-1.0869 -0.7627,-1.6208 -1.5446 -1.6208Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 262.1034,343.2267 v 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 219.7425,373.2098 ZM 224.9673,368.7096 h -4.3095 c -0.1716,-0.0000 -0.2860,-0.1525 -0.2860 -0.3242c 0.0000,-0.3051 0.2479,-0.7055 0.4767 -0.7055h 4.3667 c 0.1907,-0.0000 0.2670,0.1716 0.2670 0.3432c 0.0000,0.2098 -0.2670,0.6865 -0.5149 0.6865ZM 226.0923,373.2098 ZM 230.2684,362.8555 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 230.2684,362.8555 ZM 230.1921,373.4386 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 234.4444,373.2098 ZM 235.5313,372.4280 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 238.6204,373.2098 ZM 243.5401,366.4404 c 0.0000,-0.1335 0.0191,-0.2860 0.1907 -0.3814c 0.2098,-0.1525 0.5530,-0.3242 0.8390 -0.3242c 0.2479,-0.0000 0.2670,0.2098 0.2670 0.5911v 3.0700 h 1.5446 l -0.1144,0.8962 h -1.4301 v 1.5827 c 0.0000,0.5339 0.0763,0.8009 0.6293 0.8009h 0.5149 c 0.1144,-0.0000 0.1335,0.0953 0.1335 0.1335v 0.4195 c 0.0000,-0.0000 -1.2204,-0.0381 -2.0213 -0.0381c -0.7246,-0.0000 -1.8497,0.0381 -1.8497 0.0381v -0.4195 c 0.0000,-0.0381 0.0191,-0.1335 0.1335 -0.1335h 0.5149 c 0.5911,-0.0000 0.6483,-0.2479 0.6483 -0.8009v -1.5827 h -3.7375 c -0.0763,-0.0000 -0.1144,-0.0381 -0.1716 -0.1144l -0.1525,-0.2098 l -0.2288,-0.4004 c -0.0191,-0.0000 -0.0191,-0.0191 -0.0191 -0.0381c 0.0000,-0.0191 0.0191,-0.0381 0.0381 -0.0572c 1.2395,-1.3729 3.4324,-5.6252 4.1188 -7.1889c 0.0191,-0.0763 0.0572,-0.0953 0.1335 -0.0953c 0.0191,-0.0000 0.4386,0.1716 0.6674 0.2098c -0.8581,2.3073 -2.2692,4.7862 -3.6612 6.9982h 3.0128 v -2.9556 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 233.3575,343.2267 v 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 190.9965,373.2098 ZM 196.2213,368.7096 h -4.3095 c -0.1716,-0.0000 -0.2860,-0.1525 -0.2860 -0.3242c 0.0000,-0.3051 0.2479,-0.7055 0.4767 -0.7055h 4.3667 c 0.1907,-0.0000 0.2670,0.1716 0.2670 0.3432c 0.0000,0.2098 -0.2670,0.6865 -0.5149 0.6865ZM 197.3464,373.2098 ZM 201.5224,362.8555 c -0.8200,-0.0000 -2.0213,0.8009 -2.0213 5.2439c 0.0000,1.5636 0.2860,4.7100 1.9641 4.7100c 0.3242,-0.0000 1.2395,-0.2098 1.6399 -1.6971c 0.2479,-0.9153 0.3814,-2.0594 0.3814 -3.7184c 0.0000,-2.4217 -0.6102,-3.7756 -1.1632 -4.2523c -0.2098,-0.1907 -0.4958,-0.2860 -0.8009 -0.2860ZM 201.5224,362.8555 ZM 201.4461,373.4386 c -2.0403,-0.0000 -3.4133,-2.6124 -3.4133 -5.5299c 0.0000,-3.5658 1.6971,-5.7206 3.4896 -5.7206c 0.8200,-0.0000 1.6399,0.5149 2.1929 1.2585c 0.8009,1.0678 1.2204,2.4980 1.2204 4.2904c 0.0000,4.2332 -2.0975,5.7015 -3.4896 5.7015ZM 205.6984,373.2098 ZM 206.7853,372.4280 c 0.0000,-0.5530 0.4576,-1.0106 1.0106 -1.0106c 0.5530,-0.0000 1.0106,0.4576 1.0106 1.0106c 0.0000,0.5530 -0.4576,1.0106 -1.0106 1.0106c -0.5530,-0.0000 -1.0106,-0.4576 -1.0106 -1.0106ZM 209.8745,373.2098 ZM 215.7667,369.9872 c 0.0000,-1.9641 -1.0678,-2.9366 -2.2501 -2.9366c -0.8772,-0.0000 -1.5446,0.1335 -2.2882 0.4386l 0.6102,-5.2057 c 0.6293,0.0572 1.2776,0.0763 1.9450 0.0763c 0.9534,-0.0000 1.9450,-0.0572 2.9747 -0.1716l 0.1144,0.0572 l -0.2860,1.2395 c -0.7437,0.0763 -1.3539,0.0953 -1.8878 0.0953c -0.8581,-0.0000 -1.5064,-0.0763 -2.1738 -0.1525l -0.3623,3.0128 c 0.4004,-0.1525 1.0869,-0.2860 1.8306 -0.2860c 2.0213,-0.0000 3.1463,1.7543 3.1463 3.5086c 0.0000,2.1357 -1.4874,3.7756 -3.6421 3.7756c -1.0869,-0.0000 -2.6696,-0.6102 -2.6696 -1.3539c 0.0000,-0.3623 0.3051,-0.6102 0.6483 -0.6102c 0.3814,-0.0000 0.6293,0.2860 0.8581 0.5911c 0.2860,0.3432 0.5911,0.7246 1.2013 0.7246c 1.2204,-0.0000 2.2310,-1.1441 2.2310 -2.8031Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4169469207291328" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 204.6115,343.2267 v 8.6238 "/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 490.4836,314.4808 l -0.0000,-287.4596 h -287.4596 l -0.0000,287.4596 Z"/></g></svg>
diff --git a/other/scaleExample.svg b/other/scaleExample.svg
new file mode 100644
--- /dev/null
+++ b/other/scaleExample.svg
@@ -0,0 +1,3 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="120.0000" stroke-opacity="1" viewBox="0 0 300 120" font-size="1" width="300.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 26.8094,98.0396 l -0.0000,-84.4285 h -1.6886 l -0.0000,84.4285 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 14.4245,13.6110 ZM 15.6510,10.5699 c -0.2408,-0.0000 -0.5937,0.2352 -0.5937 1.5402c 0.0000,0.4592 0.0840,1.3833 0.5769 1.3833c 0.0952,-0.0000 0.3640,-0.0616 0.4816 -0.4985c 0.0728,-0.2688 0.1120,-0.6049 0.1120 -1.0921c 0.0000,-0.7113 -0.1792,-1.1089 -0.3416 -1.2489c -0.0616,-0.0560 -0.1456,-0.0840 -0.2352 -0.0840ZM 15.6510,10.5699 ZM 15.6286,13.6782 c -0.5993,-0.0000 -1.0025,-0.7673 -1.0025 -1.6242c 0.0000,-1.0473 0.4985,-1.6802 1.0249 -1.6802c 0.2408,-0.0000 0.4816,0.1512 0.6441 0.3696c 0.2352,0.3136 0.3584,0.7337 0.3584 1.2601c 0.0000,1.2433 -0.6161,1.6746 -1.0249 1.6746ZM 16.8775,13.6110 ZM 17.1967,13.3814 c 0.0000,-0.1624 0.1344,-0.2968 0.2968 -0.2968c 0.1624,-0.0000 0.2968,0.1344 0.2968 0.2968c 0.0000,0.1624 -0.1344,0.2968 -0.2968 0.2968c -0.1624,-0.0000 -0.2968,-0.1344 -0.2968 -0.2968ZM 18.1040,13.6110 ZM 18.4289,11.1300 c 0.0000,-0.3192 0.3080,-0.7561 0.8961 -0.7561c 0.4312,-0.0000 0.9353,0.1624 0.9353 0.8065c 0.0000,0.4256 -0.2184,0.6385 -0.5209 0.9297l -0.5321,0.5153 c -0.0280,0.0280 -0.4032,0.3976 -0.4032 0.6609h 0.9521 c 0.1904,-0.0000 0.2912,-0.0952 0.3696 -0.4032l 0.1400,0.0224 l -0.1120,0.7057 h -1.7306 c 0.0000,-0.3136 0.0504,-0.5545 0.5713 -1.0865l 0.3920,-0.3864 c 0.3136,-0.3192 0.4424,-0.5937 0.4424 -0.9353c 0.0000,-0.5097 -0.3472,-0.6553 -0.5377 -0.6553c -0.3864,-0.0000 -0.4928,0.2016 -0.4928 0.3360c 0.0000,0.0448 0.0112,0.0896 0.0224 0.1288c 0.0112,0.0392 0.0224,0.0784 0.0224 0.1232c 0.0000,0.1456 -0.1120,0.2016 -0.2016 0.2016c -0.1232,-0.0000 -0.2128,-0.0952 -0.2128 -0.2072ZM 20.5571,13.6110 ZM 21.7836,10.5699 c -0.2408,-0.0000 -0.5937,0.2352 -0.5937 1.5402c 0.0000,0.4592 0.0840,1.3833 0.5769 1.3833c 0.0952,-0.0000 0.3640,-0.0616 0.4816 -0.4985c 0.0728,-0.2688 0.1120,-0.6049 0.1120 -1.0921c 0.0000,-0.7113 -0.1792,-1.1089 -0.3416 -1.2489c -0.0616,-0.0560 -0.1456,-0.0840 -0.2352 -0.0840ZM 21.7836,10.5699 ZM 21.7612,13.6782 c -0.5993,-0.0000 -1.0025,-0.7673 -1.0025 -1.6242c 0.0000,-1.0473 0.4985,-1.6802 1.0249 -1.6802c 0.2408,-0.0000 0.4816,0.1512 0.6441 0.3696c 0.2352,0.3136 0.3584,0.7337 0.3584 1.2601c 0.0000,1.2433 -0.6161,1.6746 -1.0249 1.6746Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9161469209552453" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 24.2766,13.6110 h 2.5329 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 14.4245,22.0539 ZM 15.6510,19.0128 c -0.2408,-0.0000 -0.5937,0.2352 -0.5937 1.5402c 0.0000,0.4592 0.0840,1.3833 0.5769 1.3833c 0.0952,-0.0000 0.3640,-0.0616 0.4816 -0.4985c 0.0728,-0.2688 0.1120,-0.6049 0.1120 -1.0921c 0.0000,-0.7113 -0.1792,-1.1089 -0.3416 -1.2489c -0.0616,-0.0560 -0.1456,-0.0840 -0.2352 -0.0840ZM 15.6510,19.0128 ZM 15.6286,22.1211 c -0.5993,-0.0000 -1.0025,-0.7673 -1.0025 -1.6242c 0.0000,-1.0473 0.4985,-1.6802 1.0249 -1.6802c 0.2408,-0.0000 0.4816,0.1512 0.6441 0.3696c 0.2352,0.3136 0.3584,0.7337 0.3584 1.2601c 0.0000,1.2433 -0.6161,1.6746 -1.0249 1.6746ZM 16.8775,22.0539 ZM 17.1967,21.8243 c 0.0000,-0.1624 0.1344,-0.2968 0.2968 -0.2968c 0.1624,-0.0000 0.2968,0.1344 0.2968 0.2968c 0.0000,0.1624 -0.1344,0.2968 -0.2968 0.2968c -0.1624,-0.0000 -0.2968,-0.1344 -0.2968 -0.2968ZM 18.1040,22.0539 ZM 19.1569,19.3824 c -0.1064,-0.0000 -0.3528,0.1008 -0.4760 0.1568l -0.0672,-0.1736 c 0.4928,-0.2296 0.6833,-0.3472 0.9633 -0.5489h 0.1064 v 2.8171 c 0.0000,0.2016 0.0280,0.2576 0.2128 0.2576h 0.2912 c 0.0168,-0.0000 0.0448,0.0112 0.0448 0.0448v 0.1232 l -0.7673,-0.0112 l -0.7785,0.0112 v -0.1232 c 0.0056,-0.0168 0.0112,-0.0448 0.0448 -0.0448h 0.3360 c 0.2128,-0.0000 0.2128,-0.0952 0.2128 -0.2576v -1.9266 c 0.0000,-0.1904 0.0000,-0.3248 -0.1232 -0.3248ZM 20.5571,22.0539 ZM 21.8004,18.9512 c -0.3192,-0.0000 -0.5265,0.2520 -0.5265 0.4985c 0.0000,0.1624 0.0672,0.3584 0.4032 0.5769l 0.1624,0.1008 c 0.1456,-0.1064 0.4872,-0.3640 0.4872 -0.6497c 0.0000,-0.2464 -0.1792,-0.5265 -0.5265 -0.5265ZM 21.8004,18.9512 ZM 22.6573,19.4832 c 0.0000,0.3416 -0.3864,0.6105 -0.6217 0.7673l 0.3248,0.2128 c 0.2744,0.1792 0.4144,0.4256 0.4144 0.7337c 0.0000,0.4032 -0.3304,0.9241 -1.0249 0.9241c -0.5601,-0.0000 -0.9465,-0.2968 -0.9465 -0.8401c 0.0000,-0.2072 0.0896,-0.4480 0.3080 -0.6385c 0.1344,-0.1176 0.2520,-0.2184 0.3864 -0.3192l -0.0952,-0.0560 c -0.3248,-0.2016 -0.4872,-0.4200 -0.4872 -0.7169c 0.0000,-0.4088 0.3696,-0.7337 0.9129 -0.7337c 0.5209,-0.0000 0.8289,0.2856 0.8289 0.6665ZM 22.6573,19.4832 ZM 21.7612,21.9643 c 0.2408,-0.0000 0.6609,-0.1288 0.6609 -0.6609c 0.0000,-0.2520 -0.1568,-0.5041 -0.4872 -0.7057l -0.2464,-0.1512 c -0.4536,0.3024 -0.5545,0.6777 -0.5545 0.8345c 0.0000,0.4760 0.3864,0.6833 0.6273 0.6833Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9161469209552453" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 24.2766,22.0539 h 2.5329 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 14.4245,30.4967 ZM 15.6510,27.4556 c -0.2408,-0.0000 -0.5937,0.2352 -0.5937 1.5402c 0.0000,0.4592 0.0840,1.3833 0.5769 1.3833c 0.0952,-0.0000 0.3640,-0.0616 0.4816 -0.4985c 0.0728,-0.2688 0.1120,-0.6049 0.1120 -1.0921c 0.0000,-0.7113 -0.1792,-1.1089 -0.3416 -1.2489c -0.0616,-0.0560 -0.1456,-0.0840 -0.2352 -0.0840ZM 15.6510,27.4556 ZM 15.6286,30.5639 c -0.5993,-0.0000 -1.0025,-0.7673 -1.0025 -1.6242c 0.0000,-1.0473 0.4985,-1.6802 1.0249 -1.6802c 0.2408,-0.0000 0.4816,0.1512 0.6441 0.3696c 0.2352,0.3136 0.3584,0.7337 0.3584 1.2601c 0.0000,1.2433 -0.6161,1.6746 -1.0249 1.6746ZM 16.8775,30.4967 ZM 17.1967,30.2671 c 0.0000,-0.1624 0.1344,-0.2968 0.2968 -0.2968c 0.1624,-0.0000 0.2968,0.1344 0.2968 0.2968c 0.0000,0.1624 -0.1344,0.2968 -0.2968 0.2968c -0.1624,-0.0000 -0.2968,-0.1344 -0.2968 -0.2968ZM 18.1040,30.4967 ZM 19.1569,27.8253 c -0.1064,-0.0000 -0.3528,0.1008 -0.4760 0.1568l -0.0672,-0.1736 c 0.4928,-0.2296 0.6833,-0.3472 0.9633 -0.5489h 0.1064 v 2.8171 c 0.0000,0.2016 0.0280,0.2576 0.2128 0.2576h 0.2912 c 0.0168,-0.0000 0.0448,0.0112 0.0448 0.0448v 0.1232 l -0.7673,-0.0112 l -0.7785,0.0112 v -0.1232 c 0.0056,-0.0168 0.0112,-0.0448 0.0448 -0.0448h 0.3360 c 0.2128,-0.0000 0.2128,-0.0952 0.2128 -0.2576v -1.9266 c 0.0000,-0.1904 0.0000,-0.3248 -0.1232 -0.3248ZM 20.5571,30.4967 ZM 21.2068,29.0294 c -0.0056,0.0560 -0.0056,0.1400 -0.0056 0.1960c 0.0000,0.9409 0.4200,1.1761 0.7001 1.1761c 0.2576,-0.0000 0.5321,-0.2408 0.5321 -0.8233c 0.0000,-0.2632 -0.1344,-0.8009 -0.6721 -0.8009c -0.1176,-0.0000 -0.3304,0.0112 -0.5545 0.2520ZM 21.2068,29.0294 ZM 22.6741,27.4052 c -0.3640,0.0336 -0.6777,0.1288 -0.9465 0.3920c -0.2576,0.2520 -0.4424,0.6273 -0.5041 1.0753c 0.1288,-0.1568 0.4368,-0.2744 0.6497 -0.2744c 0.8289,-0.0000 0.9353,0.6833 0.9353 0.9409c 0.0000,0.3808 -0.1904,1.0249 -0.9633 1.0249c -0.4088,-0.0000 -1.0305,-0.2408 -1.0305 -1.3553c 0.0000,-0.5153 0.1736,-1.0193 0.5601 -1.4057c 0.3584,-0.3640 0.7337,-0.5153 1.2825 -0.5433Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9161469209552453" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 24.2766,30.4967 h 2.5329 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 14.4245,38.9396 ZM 15.6510,35.8985 c -0.2408,-0.0000 -0.5937,0.2352 -0.5937 1.5402c 0.0000,0.4592 0.0840,1.3833 0.5769 1.3833c 0.0952,-0.0000 0.3640,-0.0616 0.4816 -0.4985c 0.0728,-0.2688 0.1120,-0.6049 0.1120 -1.0921c 0.0000,-0.7113 -0.1792,-1.1089 -0.3416 -1.2489c -0.0616,-0.0560 -0.1456,-0.0840 -0.2352 -0.0840ZM 15.6510,35.8985 ZM 15.6286,39.0068 c -0.5993,-0.0000 -1.0025,-0.7673 -1.0025 -1.6242c 0.0000,-1.0473 0.4985,-1.6802 1.0249 -1.6802c 0.2408,-0.0000 0.4816,0.1512 0.6441 0.3696c 0.2352,0.3136 0.3584,0.7337 0.3584 1.2601c 0.0000,1.2433 -0.6161,1.6746 -1.0249 1.6746ZM 16.8775,38.9396 ZM 17.1967,38.7100 c 0.0000,-0.1624 0.1344,-0.2968 0.2968 -0.2968c 0.1624,-0.0000 0.2968,0.1344 0.2968 0.2968c 0.0000,0.1624 -0.1344,0.2968 -0.2968 0.2968c -0.1624,-0.0000 -0.2968,-0.1344 -0.2968 -0.2968ZM 18.1040,38.9396 ZM 19.1569,36.2681 c -0.1064,-0.0000 -0.3528,0.1008 -0.4760 0.1568l -0.0672,-0.1736 c 0.4928,-0.2296 0.6833,-0.3472 0.9633 -0.5489h 0.1064 v 2.8171 c 0.0000,0.2016 0.0280,0.2576 0.2128 0.2576h 0.2912 c 0.0168,-0.0000 0.0448,0.0112 0.0448 0.0448v 0.1232 l -0.7673,-0.0112 l -0.7785,0.0112 v -0.1232 c 0.0056,-0.0168 0.0112,-0.0448 0.0448 -0.0448h 0.3360 c 0.2128,-0.0000 0.2128,-0.0952 0.2128 -0.2576v -1.9266 c 0.0000,-0.1904 0.0000,-0.3248 -0.1232 -0.3248ZM 20.5571,38.9396 ZM 22.0020,36.9514 c 0.0000,-0.0392 0.0056,-0.0840 0.0560 -0.1120c 0.0616,-0.0448 0.1624,-0.0952 0.2464 -0.0952c 0.0728,-0.0000 0.0784,0.0616 0.0784 0.1736v 0.9017 h 0.4536 l -0.0336,0.2632 h -0.4200 v 0.4648 c 0.0000,0.1568 0.0224,0.2352 0.1848 0.2352h 0.1512 c 0.0336,-0.0000 0.0392,0.0280 0.0392 0.0392v 0.1232 c 0.0000,-0.0000 -0.3584,-0.0112 -0.5937 -0.0112c -0.2128,-0.0000 -0.5433,0.0112 -0.5433 0.0112v -0.1232 c 0.0000,-0.0112 0.0056,-0.0392 0.0392 -0.0392h 0.1512 c 0.1736,-0.0000 0.1904,-0.0728 0.1904 -0.2352v -0.4648 h -1.0977 c -0.0224,-0.0000 -0.0336,-0.0112 -0.0504 -0.0336l -0.0448,-0.0616 l -0.0672,-0.1176 c -0.0056,-0.0000 -0.0056,-0.0056 -0.0056 -0.0112c 0.0000,-0.0056 0.0056,-0.0112 0.0112 -0.0168c 0.3640,-0.4032 1.0081,-1.6522 1.2097 -2.1114c 0.0056,-0.0224 0.0168,-0.0280 0.0392 -0.0280c 0.0056,-0.0000 0.1288,0.0504 0.1960 0.0616c -0.2520,0.6777 -0.6665,1.4057 -1.0753 2.0554h 0.8849 v -0.8681 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9161469209552453" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 24.2766,38.9396 h 2.5329 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 14.4245,47.3824 ZM 15.6510,44.3413 c -0.2408,-0.0000 -0.5937,0.2352 -0.5937 1.5402c 0.0000,0.4592 0.0840,1.3833 0.5769 1.3833c 0.0952,-0.0000 0.3640,-0.0616 0.4816 -0.4985c 0.0728,-0.2688 0.1120,-0.6049 0.1120 -1.0921c 0.0000,-0.7113 -0.1792,-1.1089 -0.3416 -1.2489c -0.0616,-0.0560 -0.1456,-0.0840 -0.2352 -0.0840ZM 15.6510,44.3413 ZM 15.6286,47.4497 c -0.5993,-0.0000 -1.0025,-0.7673 -1.0025 -1.6242c 0.0000,-1.0473 0.4985,-1.6802 1.0249 -1.6802c 0.2408,-0.0000 0.4816,0.1512 0.6441 0.3696c 0.2352,0.3136 0.3584,0.7337 0.3584 1.2601c 0.0000,1.2433 -0.6161,1.6746 -1.0249 1.6746ZM 16.8775,47.3824 ZM 17.1967,47.1528 c 0.0000,-0.1624 0.1344,-0.2968 0.2968 -0.2968c 0.1624,-0.0000 0.2968,0.1344 0.2968 0.2968c 0.0000,0.1624 -0.1344,0.2968 -0.2968 0.2968c -0.1624,-0.0000 -0.2968,-0.1344 -0.2968 -0.2968ZM 18.1040,47.3824 ZM 19.1569,44.7110 c -0.1064,-0.0000 -0.3528,0.1008 -0.4760 0.1568l -0.0672,-0.1736 c 0.4928,-0.2296 0.6833,-0.3472 0.9633 -0.5489h 0.1064 v 2.8171 c 0.0000,0.2016 0.0280,0.2576 0.2128 0.2576h 0.2912 c 0.0168,-0.0000 0.0448,0.0112 0.0448 0.0448v 0.1232 l -0.7673,-0.0112 l -0.7785,0.0112 v -0.1232 c 0.0056,-0.0168 0.0112,-0.0448 0.0448 -0.0448h 0.3360 c 0.2128,-0.0000 0.2128,-0.0952 0.2128 -0.2576v -1.9266 c 0.0000,-0.1904 0.0000,-0.3248 -0.1232 -0.3248ZM 20.5571,47.3824 ZM 20.8819,44.9014 c 0.0000,-0.3192 0.3080,-0.7561 0.8961 -0.7561c 0.4312,-0.0000 0.9353,0.1624 0.9353 0.8065c 0.0000,0.4256 -0.2184,0.6385 -0.5209 0.9297l -0.5321,0.5153 c -0.0280,0.0280 -0.4032,0.3976 -0.4032 0.6609h 0.9521 c 0.1904,-0.0000 0.2912,-0.0952 0.3696 -0.4032l 0.1400,0.0224 l -0.1120,0.7057 h -1.7306 c 0.0000,-0.3136 0.0504,-0.5545 0.5713 -1.0865l 0.3920,-0.3864 c 0.3136,-0.3192 0.4424,-0.5937 0.4424 -0.9353c 0.0000,-0.5097 -0.3472,-0.6553 -0.5377 -0.6553c -0.3864,-0.0000 -0.4928,0.2016 -0.4928 0.3360c 0.0000,0.0448 0.0112,0.0896 0.0224 0.1288c 0.0112,0.0392 0.0224,0.0784 0.0224 0.1232c 0.0000,0.1456 -0.1120,0.2016 -0.2016 0.2016c -0.1232,-0.0000 -0.2128,-0.0952 -0.2128 -0.2072Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9161469209552453" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 24.2766,47.3824 h 2.5329 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 14.4245,55.8253 ZM 15.6510,52.7842 c -0.2408,-0.0000 -0.5937,0.2352 -0.5937 1.5402c 0.0000,0.4592 0.0840,1.3833 0.5769 1.3833c 0.0952,-0.0000 0.3640,-0.0616 0.4816 -0.4985c 0.0728,-0.2688 0.1120,-0.6049 0.1120 -1.0921c 0.0000,-0.7113 -0.1792,-1.1089 -0.3416 -1.2489c -0.0616,-0.0560 -0.1456,-0.0840 -0.2352 -0.0840ZM 15.6510,52.7842 ZM 15.6286,55.8925 c -0.5993,-0.0000 -1.0025,-0.7673 -1.0025 -1.6242c 0.0000,-1.0473 0.4985,-1.6802 1.0249 -1.6802c 0.2408,-0.0000 0.4816,0.1512 0.6441 0.3696c 0.2352,0.3136 0.3584,0.7337 0.3584 1.2601c 0.0000,1.2433 -0.6161,1.6746 -1.0249 1.6746ZM 16.8775,55.8253 ZM 17.1967,55.5957 c 0.0000,-0.1624 0.1344,-0.2968 0.2968 -0.2968c 0.1624,-0.0000 0.2968,0.1344 0.2968 0.2968c 0.0000,0.1624 -0.1344,0.2968 -0.2968 0.2968c -0.1624,-0.0000 -0.2968,-0.1344 -0.2968 -0.2968ZM 18.1040,55.8253 ZM 19.1569,53.1538 c -0.1064,-0.0000 -0.3528,0.1008 -0.4760 0.1568l -0.0672,-0.1736 c 0.4928,-0.2296 0.6833,-0.3472 0.9633 -0.5489h 0.1064 v 2.8171 c 0.0000,0.2016 0.0280,0.2576 0.2128 0.2576h 0.2912 c 0.0168,-0.0000 0.0448,0.0112 0.0448 0.0448v 0.1232 l -0.7673,-0.0112 l -0.7785,0.0112 v -0.1232 c 0.0056,-0.0168 0.0112,-0.0448 0.0448 -0.0448h 0.3360 c 0.2128,-0.0000 0.2128,-0.0952 0.2128 -0.2576v -1.9266 c 0.0000,-0.1904 0.0000,-0.3248 -0.1232 -0.3248ZM 20.5571,55.8253 ZM 21.7836,52.7842 c -0.2408,-0.0000 -0.5937,0.2352 -0.5937 1.5402c 0.0000,0.4592 0.0840,1.3833 0.5769 1.3833c 0.0952,-0.0000 0.3640,-0.0616 0.4816 -0.4985c 0.0728,-0.2688 0.1120,-0.6049 0.1120 -1.0921c 0.0000,-0.7113 -0.1792,-1.1089 -0.3416 -1.2489c -0.0616,-0.0560 -0.1456,-0.0840 -0.2352 -0.0840ZM 21.7836,52.7842 ZM 21.7612,55.8925 c -0.5993,-0.0000 -1.0025,-0.7673 -1.0025 -1.6242c 0.0000,-1.0473 0.4985,-1.6802 1.0249 -1.6802c 0.2408,-0.0000 0.4816,0.1512 0.6441 0.3696c 0.2352,0.3136 0.3584,0.7337 0.3584 1.2601c 0.0000,1.2433 -0.6161,1.6746 -1.0249 1.6746Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9161469209552453" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 24.2766,55.8253 h 2.5329 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 14.4245,64.2682 ZM 15.6510,61.2270 c -0.2408,-0.0000 -0.5937,0.2352 -0.5937 1.5402c 0.0000,0.4592 0.0840,1.3833 0.5769 1.3833c 0.0952,-0.0000 0.3640,-0.0616 0.4816 -0.4985c 0.0728,-0.2688 0.1120,-0.6049 0.1120 -1.0921c 0.0000,-0.7113 -0.1792,-1.1089 -0.3416 -1.2489c -0.0616,-0.0560 -0.1456,-0.0840 -0.2352 -0.0840ZM 15.6510,61.2270 ZM 15.6286,64.3354 c -0.5993,-0.0000 -1.0025,-0.7673 -1.0025 -1.6242c 0.0000,-1.0473 0.4985,-1.6802 1.0249 -1.6802c 0.2408,-0.0000 0.4816,0.1512 0.6441 0.3696c 0.2352,0.3136 0.3584,0.7337 0.3584 1.2601c 0.0000,1.2433 -0.6161,1.6746 -1.0249 1.6746ZM 16.8775,64.2682 ZM 17.1967,64.0385 c 0.0000,-0.1624 0.1344,-0.2968 0.2968 -0.2968c 0.1624,-0.0000 0.2968,0.1344 0.2968 0.2968c 0.0000,0.1624 -0.1344,0.2968 -0.2968 0.2968c -0.1624,-0.0000 -0.2968,-0.1344 -0.2968 -0.2968ZM 18.1040,64.2682 ZM 19.3306,61.2270 c -0.2408,-0.0000 -0.5937,0.2352 -0.5937 1.5402c 0.0000,0.4592 0.0840,1.3833 0.5769 1.3833c 0.0952,-0.0000 0.3640,-0.0616 0.4816 -0.4985c 0.0728,-0.2688 0.1120,-0.6049 0.1120 -1.0921c 0.0000,-0.7113 -0.1792,-1.1089 -0.3416 -1.2489c -0.0616,-0.0560 -0.1456,-0.0840 -0.2352 -0.0840ZM 19.3306,61.2270 ZM 19.3082,64.3354 c -0.5993,-0.0000 -1.0025,-0.7673 -1.0025 -1.6242c 0.0000,-1.0473 0.4985,-1.6802 1.0249 -1.6802c 0.2408,-0.0000 0.4816,0.1512 0.6441 0.3696c 0.2352,0.3136 0.3584,0.7337 0.3584 1.2601c 0.0000,1.2433 -0.6161,1.6746 -1.0249 1.6746ZM 20.5571,64.2682 ZM 21.8004,61.1654 c -0.3192,-0.0000 -0.5265,0.2520 -0.5265 0.4985c 0.0000,0.1624 0.0672,0.3584 0.4032 0.5769l 0.1624,0.1008 c 0.1456,-0.1064 0.4872,-0.3640 0.4872 -0.6497c 0.0000,-0.2464 -0.1792,-0.5265 -0.5265 -0.5265ZM 21.8004,61.1654 ZM 22.6573,61.6975 c 0.0000,0.3416 -0.3864,0.6105 -0.6217 0.7673l 0.3248,0.2128 c 0.2744,0.1792 0.4144,0.4256 0.4144 0.7337c 0.0000,0.4032 -0.3304,0.9241 -1.0249 0.9241c -0.5601,-0.0000 -0.9465,-0.2968 -0.9465 -0.8401c 0.0000,-0.2072 0.0896,-0.4480 0.3080 -0.6385c 0.1344,-0.1176 0.2520,-0.2184 0.3864 -0.3192l -0.0952,-0.0560 c -0.3248,-0.2016 -0.4872,-0.4200 -0.4872 -0.7169c 0.0000,-0.4088 0.3696,-0.7337 0.9129 -0.7337c 0.5209,-0.0000 0.8289,0.2856 0.8289 0.6665ZM 22.6573,61.6975 ZM 21.7612,64.1785 c 0.2408,-0.0000 0.6609,-0.1288 0.6609 -0.6609c 0.0000,-0.2520 -0.1568,-0.5041 -0.4872 -0.7057l -0.2464,-0.1512 c -0.4536,0.3024 -0.5545,0.6777 -0.5545 0.8345c 0.0000,0.4760 0.3864,0.6833 0.6273 0.6833Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9161469209552453" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 24.2766,64.2682 h 2.5329 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 14.4245,72.7110 ZM 15.6510,69.6699 c -0.2408,-0.0000 -0.5937,0.2352 -0.5937 1.5402c 0.0000,0.4592 0.0840,1.3833 0.5769 1.3833c 0.0952,-0.0000 0.3640,-0.0616 0.4816 -0.4985c 0.0728,-0.2688 0.1120,-0.6049 0.1120 -1.0921c 0.0000,-0.7113 -0.1792,-1.1089 -0.3416 -1.2489c -0.0616,-0.0560 -0.1456,-0.0840 -0.2352 -0.0840ZM 15.6510,69.6699 ZM 15.6286,72.7782 c -0.5993,-0.0000 -1.0025,-0.7673 -1.0025 -1.6242c 0.0000,-1.0473 0.4985,-1.6802 1.0249 -1.6802c 0.2408,-0.0000 0.4816,0.1512 0.6441 0.3696c 0.2352,0.3136 0.3584,0.7337 0.3584 1.2601c 0.0000,1.2433 -0.6161,1.6746 -1.0249 1.6746ZM 16.8775,72.7110 ZM 17.1967,72.4814 c 0.0000,-0.1624 0.1344,-0.2968 0.2968 -0.2968c 0.1624,-0.0000 0.2968,0.1344 0.2968 0.2968c 0.0000,0.1624 -0.1344,0.2968 -0.2968 0.2968c -0.1624,-0.0000 -0.2968,-0.1344 -0.2968 -0.2968ZM 18.1040,72.7110 ZM 19.3306,69.6699 c -0.2408,-0.0000 -0.5937,0.2352 -0.5937 1.5402c 0.0000,0.4592 0.0840,1.3833 0.5769 1.3833c 0.0952,-0.0000 0.3640,-0.0616 0.4816 -0.4985c 0.0728,-0.2688 0.1120,-0.6049 0.1120 -1.0921c 0.0000,-0.7113 -0.1792,-1.1089 -0.3416 -1.2489c -0.0616,-0.0560 -0.1456,-0.0840 -0.2352 -0.0840ZM 19.3306,69.6699 ZM 19.3082,72.7782 c -0.5993,-0.0000 -1.0025,-0.7673 -1.0025 -1.6242c 0.0000,-1.0473 0.4985,-1.6802 1.0249 -1.6802c 0.2408,-0.0000 0.4816,0.1512 0.6441 0.3696c 0.2352,0.3136 0.3584,0.7337 0.3584 1.2601c 0.0000,1.2433 -0.6161,1.6746 -1.0249 1.6746ZM 20.5571,72.7110 ZM 21.2068,71.2437 c -0.0056,0.0560 -0.0056,0.1400 -0.0056 0.1960c 0.0000,0.9409 0.4200,1.1761 0.7001 1.1761c 0.2576,-0.0000 0.5321,-0.2408 0.5321 -0.8233c 0.0000,-0.2632 -0.1344,-0.8009 -0.6721 -0.8009c -0.1176,-0.0000 -0.3304,0.0112 -0.5545 0.2520ZM 21.2068,71.2437 ZM 22.6741,69.6195 c -0.3640,0.0336 -0.6777,0.1288 -0.9465 0.3920c -0.2576,0.2520 -0.4424,0.6273 -0.5041 1.0753c 0.1288,-0.1568 0.4368,-0.2744 0.6497 -0.2744c 0.8289,-0.0000 0.9353,0.6833 0.9353 0.9409c 0.0000,0.3808 -0.1904,1.0249 -0.9633 1.0249c -0.4088,-0.0000 -1.0305,-0.2408 -1.0305 -1.3553c 0.0000,-0.5153 0.1736,-1.0193 0.5601 -1.4057c 0.3584,-0.3640 0.7337,-0.5153 1.2825 -0.5433Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9161469209552453" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 24.2766,72.7110 h 2.5329 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 14.4245,81.1539 ZM 15.6510,78.1128 c -0.2408,-0.0000 -0.5937,0.2352 -0.5937 1.5402c 0.0000,0.4592 0.0840,1.3833 0.5769 1.3833c 0.0952,-0.0000 0.3640,-0.0616 0.4816 -0.4985c 0.0728,-0.2688 0.1120,-0.6049 0.1120 -1.0921c 0.0000,-0.7113 -0.1792,-1.1089 -0.3416 -1.2489c -0.0616,-0.0560 -0.1456,-0.0840 -0.2352 -0.0840ZM 15.6510,78.1128 ZM 15.6286,81.2211 c -0.5993,-0.0000 -1.0025,-0.7673 -1.0025 -1.6242c 0.0000,-1.0473 0.4985,-1.6802 1.0249 -1.6802c 0.2408,-0.0000 0.4816,0.1512 0.6441 0.3696c 0.2352,0.3136 0.3584,0.7337 0.3584 1.2601c 0.0000,1.2433 -0.6161,1.6746 -1.0249 1.6746ZM 16.8775,81.1539 ZM 17.1967,80.9242 c 0.0000,-0.1624 0.1344,-0.2968 0.2968 -0.2968c 0.1624,-0.0000 0.2968,0.1344 0.2968 0.2968c 0.0000,0.1624 -0.1344,0.2968 -0.2968 0.2968c -0.1624,-0.0000 -0.2968,-0.1344 -0.2968 -0.2968ZM 18.1040,81.1539 ZM 19.3306,78.1128 c -0.2408,-0.0000 -0.5937,0.2352 -0.5937 1.5402c 0.0000,0.4592 0.0840,1.3833 0.5769 1.3833c 0.0952,-0.0000 0.3640,-0.0616 0.4816 -0.4985c 0.0728,-0.2688 0.1120,-0.6049 0.1120 -1.0921c 0.0000,-0.7113 -0.1792,-1.1089 -0.3416 -1.2489c -0.0616,-0.0560 -0.1456,-0.0840 -0.2352 -0.0840ZM 19.3306,78.1128 ZM 19.3082,81.2211 c -0.5993,-0.0000 -1.0025,-0.7673 -1.0025 -1.6242c 0.0000,-1.0473 0.4985,-1.6802 1.0249 -1.6802c 0.2408,-0.0000 0.4816,0.1512 0.6441 0.3696c 0.2352,0.3136 0.3584,0.7337 0.3584 1.2601c 0.0000,1.2433 -0.6161,1.6746 -1.0249 1.6746ZM 20.5571,81.1539 ZM 22.0020,79.1657 c 0.0000,-0.0392 0.0056,-0.0840 0.0560 -0.1120c 0.0616,-0.0448 0.1624,-0.0952 0.2464 -0.0952c 0.0728,-0.0000 0.0784,0.0616 0.0784 0.1736v 0.9017 h 0.4536 l -0.0336,0.2632 h -0.4200 v 0.4648 c 0.0000,0.1568 0.0224,0.2352 0.1848 0.2352h 0.1512 c 0.0336,-0.0000 0.0392,0.0280 0.0392 0.0392v 0.1232 c 0.0000,-0.0000 -0.3584,-0.0112 -0.5937 -0.0112c -0.2128,-0.0000 -0.5433,0.0112 -0.5433 0.0112v -0.1232 c 0.0000,-0.0112 0.0056,-0.0392 0.0392 -0.0392h 0.1512 c 0.1736,-0.0000 0.1904,-0.0728 0.1904 -0.2352v -0.4648 h -1.0977 c -0.0224,-0.0000 -0.0336,-0.0112 -0.0504 -0.0336l -0.0448,-0.0616 l -0.0672,-0.1176 c -0.0056,-0.0000 -0.0056,-0.0056 -0.0056 -0.0112c 0.0000,-0.0056 0.0056,-0.0112 0.0112 -0.0168c 0.3640,-0.4032 1.0081,-1.6522 1.2097 -2.1114c 0.0056,-0.0224 0.0168,-0.0280 0.0392 -0.0280c 0.0056,-0.0000 0.1288,0.0504 0.1960 0.0616c -0.2520,0.6777 -0.6665,1.4057 -1.0753 2.0554h 0.8849 v -0.8681 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9161469209552453" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 24.2766,81.1539 h 2.5329 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 14.4245,89.5967 ZM 15.6510,86.5556 c -0.2408,-0.0000 -0.5937,0.2352 -0.5937 1.5402c 0.0000,0.4592 0.0840,1.3833 0.5769 1.3833c 0.0952,-0.0000 0.3640,-0.0616 0.4816 -0.4985c 0.0728,-0.2688 0.1120,-0.6049 0.1120 -1.0921c 0.0000,-0.7113 -0.1792,-1.1089 -0.3416 -1.2489c -0.0616,-0.0560 -0.1456,-0.0840 -0.2352 -0.0840ZM 15.6510,86.5556 ZM 15.6286,89.6639 c -0.5993,-0.0000 -1.0025,-0.7673 -1.0025 -1.6242c 0.0000,-1.0473 0.4985,-1.6802 1.0249 -1.6802c 0.2408,-0.0000 0.4816,0.1512 0.6441 0.3696c 0.2352,0.3136 0.3584,0.7337 0.3584 1.2601c 0.0000,1.2433 -0.6161,1.6746 -1.0249 1.6746ZM 16.8775,89.5967 ZM 17.1967,89.3671 c 0.0000,-0.1624 0.1344,-0.2968 0.2968 -0.2968c 0.1624,-0.0000 0.2968,0.1344 0.2968 0.2968c 0.0000,0.1624 -0.1344,0.2968 -0.2968 0.2968c -0.1624,-0.0000 -0.2968,-0.1344 -0.2968 -0.2968ZM 18.1040,89.5967 ZM 19.3306,86.5556 c -0.2408,-0.0000 -0.5937,0.2352 -0.5937 1.5402c 0.0000,0.4592 0.0840,1.3833 0.5769 1.3833c 0.0952,-0.0000 0.3640,-0.0616 0.4816 -0.4985c 0.0728,-0.2688 0.1120,-0.6049 0.1120 -1.0921c 0.0000,-0.7113 -0.1792,-1.1089 -0.3416 -1.2489c -0.0616,-0.0560 -0.1456,-0.0840 -0.2352 -0.0840ZM 19.3306,86.5556 ZM 19.3082,89.6639 c -0.5993,-0.0000 -1.0025,-0.7673 -1.0025 -1.6242c 0.0000,-1.0473 0.4985,-1.6802 1.0249 -1.6802c 0.2408,-0.0000 0.4816,0.1512 0.6441 0.3696c 0.2352,0.3136 0.3584,0.7337 0.3584 1.2601c 0.0000,1.2433 -0.6161,1.6746 -1.0249 1.6746ZM 20.5571,89.5967 ZM 20.8819,87.1157 c 0.0000,-0.3192 0.3080,-0.7561 0.8961 -0.7561c 0.4312,-0.0000 0.9353,0.1624 0.9353 0.8065c 0.0000,0.4256 -0.2184,0.6385 -0.5209 0.9297l -0.5321,0.5153 c -0.0280,0.0280 -0.4032,0.3976 -0.4032 0.6609h 0.9521 c 0.1904,-0.0000 0.2912,-0.0952 0.3696 -0.4032l 0.1400,0.0224 l -0.1120,0.7057 h -1.7306 c 0.0000,-0.3136 0.0504,-0.5545 0.5713 -1.0865l 0.3920,-0.3864 c 0.3136,-0.3192 0.4424,-0.5937 0.4424 -0.9353c 0.0000,-0.5097 -0.3472,-0.6553 -0.5377 -0.6553c -0.3864,-0.0000 -0.4928,0.2016 -0.4928 0.3360c 0.0000,0.0448 0.0112,0.0896 0.0224 0.1288c 0.0112,0.0392 0.0224,0.0784 0.0224 0.1232c 0.0000,0.1456 -0.1120,0.2016 -0.2016 0.2016c -0.1232,-0.0000 -0.2128,-0.0952 -0.2128 -0.2072Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9161469209552453" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 24.2766,89.5967 h 2.5329 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 14.4245,98.0396 ZM 15.6510,94.9985 c -0.2408,-0.0000 -0.5937,0.2352 -0.5937 1.5402c 0.0000,0.4592 0.0840,1.3833 0.5769 1.3833c 0.0952,-0.0000 0.3640,-0.0616 0.4816 -0.4985c 0.0728,-0.2688 0.1120,-0.6049 0.1120 -1.0921c 0.0000,-0.7113 -0.1792,-1.1089 -0.3416 -1.2489c -0.0616,-0.0560 -0.1456,-0.0840 -0.2352 -0.0840ZM 15.6510,94.9985 ZM 15.6286,98.1068 c -0.5993,-0.0000 -1.0025,-0.7673 -1.0025 -1.6242c 0.0000,-1.0473 0.4985,-1.6802 1.0249 -1.6802c 0.2408,-0.0000 0.4816,0.1512 0.6441 0.3696c 0.2352,0.3136 0.3584,0.7337 0.3584 1.2601c 0.0000,1.2433 -0.6161,1.6746 -1.0249 1.6746ZM 16.8775,98.0396 ZM 17.1967,97.8099 c 0.0000,-0.1624 0.1344,-0.2968 0.2968 -0.2968c 0.1624,-0.0000 0.2968,0.1344 0.2968 0.2968c 0.0000,0.1624 -0.1344,0.2968 -0.2968 0.2968c -0.1624,-0.0000 -0.2968,-0.1344 -0.2968 -0.2968ZM 18.1040,98.0396 ZM 19.3306,94.9985 c -0.2408,-0.0000 -0.5937,0.2352 -0.5937 1.5402c 0.0000,0.4592 0.0840,1.3833 0.5769 1.3833c 0.0952,-0.0000 0.3640,-0.0616 0.4816 -0.4985c 0.0728,-0.2688 0.1120,-0.6049 0.1120 -1.0921c 0.0000,-0.7113 -0.1792,-1.1089 -0.3416 -1.2489c -0.0616,-0.0560 -0.1456,-0.0840 -0.2352 -0.0840ZM 19.3306,94.9985 ZM 19.3082,98.1068 c -0.5993,-0.0000 -1.0025,-0.7673 -1.0025 -1.6242c 0.0000,-1.0473 0.4985,-1.6802 1.0249 -1.6802c 0.2408,-0.0000 0.4816,0.1512 0.6441 0.3696c 0.2352,0.3136 0.3584,0.7337 0.3584 1.2601c 0.0000,1.2433 -0.6161,1.6746 -1.0249 1.6746ZM 20.5571,98.0396 ZM 21.7836,94.9985 c -0.2408,-0.0000 -0.5937,0.2352 -0.5937 1.5402c 0.0000,0.4592 0.0840,1.3833 0.5769 1.3833c 0.0952,-0.0000 0.3640,-0.0616 0.4816 -0.4985c 0.0728,-0.2688 0.1120,-0.6049 0.1120 -1.0921c 0.0000,-0.7113 -0.1792,-1.1089 -0.3416 -1.2489c -0.0616,-0.0560 -0.1456,-0.0840 -0.2352 -0.0840ZM 21.7836,94.9985 ZM 21.7612,98.1068 c -0.5993,-0.0000 -1.0025,-0.7673 -1.0025 -1.6242c 0.0000,-1.0473 0.4985,-1.6802 1.0249 -1.6802c 0.2408,-0.0000 0.4816,0.1512 0.6441 0.3696c 0.2352,0.3136 0.3584,0.7337 0.3584 1.2601c 0.0000,1.2433 -0.6161,1.6746 -1.0249 1.6746Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9161469209552453" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 24.2766,98.0396 h 2.5329 "/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 284.6987,101.4755 l -0.0000,-1.6886 h -253.2856 l -0.0000,1.6886 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 282.2456,108.5931 ZM 283.2986,105.9217 c -0.1064,-0.0000 -0.3528,0.1008 -0.4760 0.1568l -0.0672,-0.1736 c 0.4928,-0.2296 0.6833,-0.3472 0.9633 -0.5489h 0.1064 v 2.8171 c 0.0000,0.2016 0.0280,0.2576 0.2128 0.2576h 0.2912 c 0.0168,-0.0000 0.0448,0.0112 0.0448 0.0448v 0.1232 l -0.7673,-0.0112 l -0.7785,0.0112 v -0.1232 c 0.0056,-0.0168 0.0112,-0.0448 0.0448 -0.0448h 0.3360 c 0.2128,-0.0000 0.2128,-0.0952 0.2128 -0.2576v -1.9266 c 0.0000,-0.1904 0.0000,-0.3248 -0.1232 -0.3248ZM 284.6987,108.5931 ZM 285.0235,106.1121 c 0.0000,-0.3192 0.3080,-0.7561 0.8961 -0.7561c 0.4312,-0.0000 0.9353,0.1624 0.9353 0.8065c 0.0000,0.4256 -0.2184,0.6385 -0.5209 0.9297l -0.5321,0.5153 c -0.0280,0.0280 -0.4032,0.3976 -0.4032 0.6609h 0.9521 c 0.1904,-0.0000 0.2912,-0.0952 0.3696 -0.4032l 0.1400,0.0224 l -0.1120,0.7057 h -1.7306 c 0.0000,-0.3136 0.0504,-0.5545 0.5713 -1.0865l 0.3920,-0.3864 c 0.3136,-0.3192 0.4424,-0.5937 0.4424 -0.9353c 0.0000,-0.5097 -0.3472,-0.6553 -0.5377 -0.6553c -0.3864,-0.0000 -0.4928,0.2016 -0.4928 0.3360c 0.0000,0.0448 0.0112,0.0896 0.0224 0.1288c 0.0112,0.0392 0.0224,0.0784 0.0224 0.1232c 0.0000,0.1456 -0.1120,0.2016 -0.2016 0.2016c -0.1232,-0.0000 -0.2128,-0.0952 -0.2128 -0.2072Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9161469209552453" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 284.6987,99.7869 v 2.5329 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 240.0314,108.5931 ZM 241.0843,105.9217 c -0.1064,-0.0000 -0.3528,0.1008 -0.4760 0.1568l -0.0672,-0.1736 c 0.4928,-0.2296 0.6833,-0.3472 0.9633 -0.5489h 0.1064 v 2.8171 c 0.0000,0.2016 0.0280,0.2576 0.2128 0.2576h 0.2912 c 0.0168,-0.0000 0.0448,0.0112 0.0448 0.0448v 0.1232 l -0.7673,-0.0112 l -0.7785,0.0112 v -0.1232 c 0.0056,-0.0168 0.0112,-0.0448 0.0448 -0.0448h 0.3360 c 0.2128,-0.0000 0.2128,-0.0952 0.2128 -0.2576v -1.9266 c 0.0000,-0.1904 0.0000,-0.3248 -0.1232 -0.3248ZM 242.4844,108.5931 ZM 243.7109,105.5520 c -0.2408,-0.0000 -0.5937,0.2352 -0.5937 1.5402c 0.0000,0.4592 0.0840,1.3833 0.5769 1.3833c 0.0952,-0.0000 0.3640,-0.0616 0.4816 -0.4985c 0.0728,-0.2688 0.1120,-0.6049 0.1120 -1.0921c 0.0000,-0.7113 -0.1792,-1.1089 -0.3416 -1.2489c -0.0616,-0.0560 -0.1456,-0.0840 -0.2352 -0.0840ZM 243.7109,105.5520 ZM 243.6885,108.6603 c -0.5993,-0.0000 -1.0025,-0.7673 -1.0025 -1.6242c 0.0000,-1.0473 0.4985,-1.6802 1.0249 -1.6802c 0.2408,-0.0000 0.4816,0.1512 0.6441 0.3696c 0.2352,0.3136 0.3584,0.7337 0.3584 1.2601c 0.0000,1.2433 -0.6161,1.6746 -1.0249 1.6746Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9161469209552453" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 242.4844,99.7869 v 2.5329 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 199.0436,108.5931 ZM 200.2870,105.4904 c -0.3192,-0.0000 -0.5265,0.2520 -0.5265 0.4985c 0.0000,0.1624 0.0672,0.3584 0.4032 0.5769l 0.1624,0.1008 c 0.1456,-0.1064 0.4872,-0.3640 0.4872 -0.6497c 0.0000,-0.2464 -0.1792,-0.5265 -0.5265 -0.5265ZM 200.2870,105.4904 ZM 201.1438,106.0225 c 0.0000,0.3416 -0.3864,0.6105 -0.6217 0.7673l 0.3248,0.2128 c 0.2744,0.1792 0.4144,0.4256 0.4144 0.7337c 0.0000,0.4032 -0.3304,0.9241 -1.0249 0.9241c -0.5601,-0.0000 -0.9465,-0.2968 -0.9465 -0.8401c 0.0000,-0.2072 0.0896,-0.4480 0.3080 -0.6385c 0.1344,-0.1176 0.2520,-0.2184 0.3864 -0.3192l -0.0952,-0.0560 c -0.3248,-0.2016 -0.4872,-0.4200 -0.4872 -0.7169c 0.0000,-0.4088 0.3696,-0.7337 0.9129 -0.7337c 0.5209,-0.0000 0.8289,0.2856 0.8289 0.6665ZM 201.1438,106.0225 ZM 200.2478,108.5035 c 0.2408,-0.0000 0.6609,-0.1288 0.6609 -0.6609c 0.0000,-0.2520 -0.1568,-0.5041 -0.4872 -0.7057l -0.2464,-0.1512 c -0.4536,0.3024 -0.5545,0.6777 -0.5545 0.8345c 0.0000,0.4760 0.3864,0.6833 0.6273 0.6833Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9161469209552453" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 200.2702,99.7869 v 2.5329 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 156.8294,108.5931 ZM 157.4790,107.1258 c -0.0056,0.0560 -0.0056,0.1400 -0.0056 0.1960c 0.0000,0.9409 0.4200,1.1761 0.7001 1.1761c 0.2576,-0.0000 0.5321,-0.2408 0.5321 -0.8233c 0.0000,-0.2632 -0.1344,-0.8009 -0.6721 -0.8009c -0.1176,-0.0000 -0.3304,0.0112 -0.5545 0.2520ZM 157.4790,107.1258 ZM 158.9464,105.5016 c -0.3640,0.0336 -0.6777,0.1288 -0.9465 0.3920c -0.2576,0.2520 -0.4424,0.6273 -0.5041 1.0753c 0.1288,-0.1568 0.4368,-0.2744 0.6497 -0.2744c 0.8289,-0.0000 0.9353,0.6833 0.9353 0.9409c 0.0000,0.3808 -0.1904,1.0249 -0.9633 1.0249c -0.4088,-0.0000 -1.0305,-0.2408 -1.0305 -1.3553c 0.0000,-0.5153 0.1736,-1.0193 0.5601 -1.4057c 0.3584,-0.3640 0.7337,-0.5153 1.2825 -0.5433Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9161469209552453" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 158.0559,99.7869 v 2.5329 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 114.6151,108.5931 ZM 116.0600,106.6049 c 0.0000,-0.0392 0.0056,-0.0840 0.0560 -0.1120c 0.0616,-0.0448 0.1624,-0.0952 0.2464 -0.0952c 0.0728,-0.0000 0.0784,0.0616 0.0784 0.1736v 0.9017 h 0.4536 l -0.0336,0.2632 h -0.4200 v 0.4648 c 0.0000,0.1568 0.0224,0.2352 0.1848 0.2352h 0.1512 c 0.0336,-0.0000 0.0392,0.0280 0.0392 0.0392v 0.1232 c 0.0000,-0.0000 -0.3584,-0.0112 -0.5937 -0.0112c -0.2128,-0.0000 -0.5433,0.0112 -0.5433 0.0112v -0.1232 c 0.0000,-0.0112 0.0056,-0.0392 0.0392 -0.0392h 0.1512 c 0.1736,-0.0000 0.1904,-0.0728 0.1904 -0.2352v -0.4648 h -1.0977 c -0.0224,-0.0000 -0.0336,-0.0112 -0.0504 -0.0336l -0.0448,-0.0616 l -0.0672,-0.1176 c -0.0056,-0.0000 -0.0056,-0.0056 -0.0056 -0.0112c 0.0000,-0.0056 0.0056,-0.0112 0.0112 -0.0168c 0.3640,-0.4032 1.0081,-1.6522 1.2097 -2.1114c 0.0056,-0.0224 0.0168,-0.0280 0.0392 -0.0280c 0.0056,-0.0000 0.1288,0.0504 0.1960 0.0616c -0.2520,0.6777 -0.6665,1.4057 -1.0753 2.0554h 0.8849 v -0.8681 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9161469209552453" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 115.8416,99.7869 v 2.5329 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 72.4008,108.5931 ZM 72.7257,106.1121 c 0.0000,-0.3192 0.3080,-0.7561 0.8961 -0.7561c 0.4312,-0.0000 0.9353,0.1624 0.9353 0.8065c 0.0000,0.4256 -0.2184,0.6385 -0.5209 0.9297l -0.5321,0.5153 c -0.0280,0.0280 -0.4032,0.3976 -0.4032 0.6609h 0.9521 c 0.1904,-0.0000 0.2912,-0.0952 0.3696 -0.4032l 0.1400,0.0224 l -0.1120,0.7057 h -1.7306 c 0.0000,-0.3136 0.0504,-0.5545 0.5713 -1.0865l 0.3920,-0.3864 c 0.3136,-0.3192 0.4424,-0.5937 0.4424 -0.9353c 0.0000,-0.5097 -0.3472,-0.6553 -0.5377 -0.6553c -0.3864,-0.0000 -0.4928,0.2016 -0.4928 0.3360c 0.0000,0.0448 0.0112,0.0896 0.0224 0.1288c 0.0112,0.0392 0.0224,0.0784 0.0224 0.1232c 0.0000,0.1456 -0.1120,0.2016 -0.2016 0.2016c -0.1232,-0.0000 -0.2128,-0.0952 -0.2128 -0.2072Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9161469209552453" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 73.6274,99.7869 v 2.5329 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 30.1866,108.5931 ZM 31.4131,105.5520 c -0.2408,-0.0000 -0.5937,0.2352 -0.5937 1.5402c 0.0000,0.4592 0.0840,1.3833 0.5769 1.3833c 0.0952,-0.0000 0.3640,-0.0616 0.4816 -0.4985c 0.0728,-0.2688 0.1120,-0.6049 0.1120 -1.0921c 0.0000,-0.7113 -0.1792,-1.1089 -0.3416 -1.2489c -0.0616,-0.0560 -0.1456,-0.0840 -0.2352 -0.0840ZM 31.4131,105.5520 ZM 31.3907,108.6603 c -0.5993,-0.0000 -1.0025,-0.7673 -1.0025 -1.6242c 0.0000,-1.0473 0.4985,-1.6802 1.0249 -1.6802c 0.2408,-0.0000 0.4816,0.1512 0.6441 0.3696c 0.2352,0.3136 0.3584,0.7337 0.3584 1.2601c 0.0000,1.2433 -0.6161,1.6746 -1.0249 1.6746Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9161469209552453" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 31.4131,99.7869 v 2.5329 "/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 285.3120,96.4098 l -0.0000,-84.4285 h -253.2856 l -0.0000,84.4285 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="3.664587683820981" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 243.0977,96.4098 v -42.2143 "/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="3.664587683820981" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 221.9906,96.4098 v -37.9928 "/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="3.664587683820981" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 200.8834,96.4098 v -33.7714 "/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="3.664587683820981" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 179.7763,96.4098 v -29.5500 "/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="3.664587683820981" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 158.6692,96.4098 v -25.3286 "/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="3.664587683820981" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 137.5620,96.4098 v -21.1071 "/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="3.664587683820981" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 116.4549,96.4098 v -16.8857 "/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="3.664587683820981" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 95.3477,96.4098 v -12.6643 "/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="3.664587683820981" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 74.2406,96.4098 v -8.4429 "/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="3.664587683820981" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 53.1335,96.4098 v -4.2214 "/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="3.664587683820981" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 32.0263,96.4098 h 0.0000 "/></g></svg>
diff --git a/other/scratchpad.svg b/other/scratchpad.svg
new file mode 100644
--- /dev/null
+++ b/other/scratchpad.svg
@@ -0,0 +1,3 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="400.0000" stroke-opacity="1" viewBox="0 0 600 400" font-size="1" width="600.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 53.6188,276.0791 l -0.0000,-168.8571 h -3.3771 l -0.0000,168.8571 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 28.8489,107.2221 ZM 31.3020,101.1399 c -0.4816,-0.0000 -1.1873,0.4704 -1.1873 3.0803c 0.0000,0.9185 0.1680,2.7667 1.1537 2.7667c 0.1904,-0.0000 0.7281,-0.1232 0.9633 -0.9969c 0.1456,-0.5377 0.2240,-1.2097 0.2240 -2.1842c 0.0000,-1.4225 -0.3584,-2.2178 -0.6833 -2.4979c -0.1232,-0.1120 -0.2912,-0.1680 -0.4704 -0.1680ZM 31.3020,101.1399 ZM 31.2572,107.3565 c -1.1985,-0.0000 -2.0050,-1.5346 -2.0050 -3.2483c 0.0000,-2.0946 0.9969,-3.3603 2.0498 -3.3603c 0.4816,-0.0000 0.9633,0.3024 1.2881 0.7393c 0.4704,0.6273 0.7169,1.4673 0.7169 2.5203c 0.0000,2.4867 -1.2321,3.3491 -2.0498 3.3491ZM 33.7550,107.2221 ZM 34.3935,106.7628 c 0.0000,-0.3248 0.2688,-0.5937 0.5937 -0.5937c 0.3248,-0.0000 0.5937,0.2688 0.5937 0.5937c 0.0000,0.3248 -0.2688,0.5937 -0.5937 0.5937c -0.3248,-0.0000 -0.5937,-0.2688 -0.5937 -0.5937ZM 36.2081,107.2221 ZM 36.8577,102.2600 c 0.0000,-0.6385 0.6161,-1.5122 1.7922 -1.5122c 0.8625,-0.0000 1.8706,0.3248 1.8706 1.6130c 0.0000,0.8513 -0.4368,1.2769 -1.0417 1.8594l -1.0641,1.0305 c -0.0560,0.0560 -0.8065,0.7953 -0.8065 1.3217h 1.9042 c 0.3808,-0.0000 0.5825,-0.1904 0.7393 -0.8065l 0.2800,0.0448 l -0.2240,1.4113 h -3.4611 c 0.0000,-0.6273 0.1008,-1.1089 1.1425 -2.1730l 0.7841,-0.7729 c 0.6273,-0.6385 0.8849,-1.1873 0.8849 -1.8706c 0.0000,-1.0193 -0.6945,-1.3105 -1.0753 -1.3105c -0.7729,-0.0000 -0.9857,0.4032 -0.9857 0.6721c 0.0000,0.0896 0.0224,0.1792 0.0448 0.2576c 0.0224,0.0784 0.0448,0.1568 0.0448 0.2464c 0.0000,0.2912 -0.2240,0.4032 -0.4032 0.4032c -0.2464,-0.0000 -0.4256,-0.1904 -0.4256 -0.4144ZM 41.1142,107.2221 ZM 43.5672,101.1399 c -0.4816,-0.0000 -1.1873,0.4704 -1.1873 3.0803c 0.0000,0.9185 0.1680,2.7667 1.1537 2.7667c 0.1904,-0.0000 0.7281,-0.1232 0.9633 -0.9969c 0.1456,-0.5377 0.2240,-1.2097 0.2240 -2.1842c 0.0000,-1.4225 -0.3584,-2.2178 -0.6833 -2.4979c -0.1232,-0.1120 -0.2912,-0.1680 -0.4704 -0.1680ZM 43.5672,101.1399 ZM 43.5224,107.3565 c -1.1985,-0.0000 -2.0050,-1.5346 -2.0050 -3.2483c 0.0000,-2.0946 0.9969,-3.3603 2.0498 -3.3603c 0.4816,-0.0000 0.9633,0.3024 1.2881 0.7393c 0.4704,0.6273 0.7169,1.4673 0.7169 2.5203c 0.0000,2.4867 -1.2321,3.3491 -2.0498 3.3491Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8322938419104906" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 48.5531,107.2221 h 5.0657 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 28.8489,124.1078 ZM 31.3020,118.0256 c -0.4816,-0.0000 -1.1873,0.4704 -1.1873 3.0803c 0.0000,0.9185 0.1680,2.7667 1.1537 2.7667c 0.1904,-0.0000 0.7281,-0.1232 0.9633 -0.9969c 0.1456,-0.5377 0.2240,-1.2097 0.2240 -2.1842c 0.0000,-1.4225 -0.3584,-2.2178 -0.6833 -2.4979c -0.1232,-0.1120 -0.2912,-0.1680 -0.4704 -0.1680ZM 31.3020,118.0256 ZM 31.2572,124.2422 c -1.1985,-0.0000 -2.0050,-1.5346 -2.0050 -3.2483c 0.0000,-2.0946 0.9969,-3.3603 2.0498 -3.3603c 0.4816,-0.0000 0.9633,0.3024 1.2881 0.7393c 0.4704,0.6273 0.7169,1.4673 0.7169 2.5203c 0.0000,2.4867 -1.2321,3.3491 -2.0498 3.3491ZM 33.7550,124.1078 ZM 34.3935,123.6485 c 0.0000,-0.3248 0.2688,-0.5937 0.5937 -0.5937c 0.3248,-0.0000 0.5937,0.2688 0.5937 0.5937c 0.0000,0.3248 -0.2688,0.5937 -0.5937 0.5937c -0.3248,-0.0000 -0.5937,-0.2688 -0.5937 -0.5937ZM 36.2081,124.1078 ZM 38.3139,118.7648 c -0.2128,-0.0000 -0.7057,0.2016 -0.9521 0.3136l -0.1344,-0.3472 c 0.9857,-0.4592 1.3665,-0.6945 1.9266 -1.0977h 0.2128 v 5.6342 c 0.0000,0.4032 0.0560,0.5153 0.4256 0.5153h 0.5825 c 0.0336,-0.0000 0.0896,0.0224 0.0896 0.0896v 0.2464 l -1.5346,-0.0224 l -1.5570,0.0224 v -0.2464 c 0.0112,-0.0336 0.0224,-0.0896 0.0896 -0.0896h 0.6721 c 0.4256,-0.0000 0.4256,-0.1904 0.4256 -0.5153v -3.8532 c 0.0000,-0.3808 0.0000,-0.6497 -0.2464 -0.6497ZM 41.1142,124.1078 ZM 43.6008,117.9023 c -0.6385,-0.0000 -1.0529,0.5041 -1.0529 0.9969c 0.0000,0.3248 0.1344,0.7169 0.8065 1.1537l 0.3248,0.2016 c 0.2912,-0.2128 0.9745,-0.7281 0.9745 -1.2993c 0.0000,-0.4928 -0.3584,-1.0529 -1.0529 -1.0529ZM 43.6008,117.9023 ZM 45.3146,118.9665 c 0.0000,0.6833 -0.7729,1.2209 -1.2433 1.5346l 0.6497,0.4256 c 0.5489,0.3584 0.8289,0.8513 0.8289 1.4673c 0.0000,0.8065 -0.6609,1.8482 -2.0498 1.8482c -1.1201,-0.0000 -1.8930,-0.5937 -1.8930 -1.6802c 0.0000,-0.4144 0.1792,-0.8961 0.6161 -1.2769c 0.2688,-0.2352 0.5041,-0.4368 0.7729 -0.6385l -0.1904,-0.1120 c -0.6497,-0.4032 -0.9745,-0.8401 -0.9745 -1.4337c 0.0000,-0.8177 0.7393,-1.4673 1.8258 -1.4673c 1.0417,-0.0000 1.6578,0.5713 1.6578 1.3329ZM 45.3146,118.9665 ZM 43.5224,123.9286 c 0.4816,-0.0000 1.3217,-0.2576 1.3217 -1.3217c 0.0000,-0.5041 -0.3136,-1.0081 -0.9745 -1.4113l -0.4928,-0.3024 c -0.9073,0.6049 -1.1089,1.3553 -1.1089 1.6690c 0.0000,0.9521 0.7729,1.3665 1.2545 1.3665Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8322938419104906" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 48.5531,124.1078 h 5.0657 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 28.8489,140.9935 ZM 31.3020,134.9113 c -0.4816,-0.0000 -1.1873,0.4704 -1.1873 3.0803c 0.0000,0.9185 0.1680,2.7667 1.1537 2.7667c 0.1904,-0.0000 0.7281,-0.1232 0.9633 -0.9969c 0.1456,-0.5377 0.2240,-1.2097 0.2240 -2.1842c 0.0000,-1.4225 -0.3584,-2.2178 -0.6833 -2.4979c -0.1232,-0.1120 -0.2912,-0.1680 -0.4704 -0.1680ZM 31.3020,134.9113 ZM 31.2572,141.1279 c -1.1985,-0.0000 -2.0050,-1.5346 -2.0050 -3.2483c 0.0000,-2.0946 0.9969,-3.3603 2.0498 -3.3603c 0.4816,-0.0000 0.9633,0.3024 1.2881 0.7393c 0.4704,0.6273 0.7169,1.4673 0.7169 2.5203c 0.0000,2.4867 -1.2321,3.3491 -2.0498 3.3491ZM 33.7550,140.9935 ZM 34.3935,140.5342 c 0.0000,-0.3248 0.2688,-0.5937 0.5937 -0.5937c 0.3248,-0.0000 0.5937,0.2688 0.5937 0.5937c 0.0000,0.3248 -0.2688,0.5937 -0.5937 0.5937c -0.3248,-0.0000 -0.5937,-0.2688 -0.5937 -0.5937ZM 36.2081,140.9935 ZM 38.3139,135.6505 c -0.2128,-0.0000 -0.7057,0.2016 -0.9521 0.3136l -0.1344,-0.3472 c 0.9857,-0.4592 1.3665,-0.6945 1.9266 -1.0977h 0.2128 v 5.6342 c 0.0000,0.4032 0.0560,0.5153 0.4256 0.5153h 0.5825 c 0.0336,-0.0000 0.0896,0.0224 0.0896 0.0896v 0.2464 l -1.5346,-0.0224 l -1.5570,0.0224 v -0.2464 c 0.0112,-0.0336 0.0224,-0.0896 0.0896 -0.0896h 0.6721 c 0.4256,-0.0000 0.4256,-0.1904 0.4256 -0.5153v -3.8532 c 0.0000,-0.3808 0.0000,-0.6497 -0.2464 -0.6497ZM 41.1142,140.9935 ZM 42.4135,138.0588 c -0.0112,0.1120 -0.0112,0.2800 -0.0112 0.3920c 0.0000,1.8818 0.8401,2.3522 1.4001 2.3522c 0.5153,-0.0000 1.0641,-0.4816 1.0641 -1.6466c 0.0000,-0.5265 -0.2688,-1.6018 -1.3441 -1.6018c -0.2352,-0.0000 -0.6609,0.0224 -1.1089 0.5041ZM 42.4135,138.0588 ZM 45.3482,134.8105 c -0.7281,0.0672 -1.3553,0.2576 -1.8930 0.7841c -0.5153,0.5041 -0.8849,1.2545 -1.0081 2.1506c 0.2576,-0.3136 0.8737,-0.5489 1.2993 -0.5489c 1.6578,-0.0000 1.8706,1.3665 1.8706 1.8818c 0.0000,0.7617 -0.3808,2.0498 -1.9266 2.0498c -0.8177,-0.0000 -2.0610,-0.4816 -2.0610 -2.7107c 0.0000,-1.0305 0.3472,-2.0386 1.1201 -2.8115c 0.7169,-0.7281 1.4673,-1.0305 2.5651 -1.0865Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8322938419104906" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 48.5531,140.9935 h 5.0657 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 28.8489,157.8792 ZM 31.3020,151.7970 c -0.4816,-0.0000 -1.1873,0.4704 -1.1873 3.0803c 0.0000,0.9185 0.1680,2.7667 1.1537 2.7667c 0.1904,-0.0000 0.7281,-0.1232 0.9633 -0.9969c 0.1456,-0.5377 0.2240,-1.2097 0.2240 -2.1842c 0.0000,-1.4225 -0.3584,-2.2178 -0.6833 -2.4979c -0.1232,-0.1120 -0.2912,-0.1680 -0.4704 -0.1680ZM 31.3020,151.7970 ZM 31.2572,158.0136 c -1.1985,-0.0000 -2.0050,-1.5346 -2.0050 -3.2483c 0.0000,-2.0946 0.9969,-3.3603 2.0498 -3.3603c 0.4816,-0.0000 0.9633,0.3024 1.2881 0.7393c 0.4704,0.6273 0.7169,1.4673 0.7169 2.5203c 0.0000,2.4867 -1.2321,3.3491 -2.0498 3.3491ZM 33.7550,157.8792 ZM 34.3935,157.4199 c 0.0000,-0.3248 0.2688,-0.5937 0.5937 -0.5937c 0.3248,-0.0000 0.5937,0.2688 0.5937 0.5937c 0.0000,0.3248 -0.2688,0.5937 -0.5937 0.5937c -0.3248,-0.0000 -0.5937,-0.2688 -0.5937 -0.5937ZM 36.2081,157.8792 ZM 38.3139,152.5363 c -0.2128,-0.0000 -0.7057,0.2016 -0.9521 0.3136l -0.1344,-0.3472 c 0.9857,-0.4592 1.3665,-0.6945 1.9266 -1.0977h 0.2128 v 5.6342 c 0.0000,0.4032 0.0560,0.5153 0.4256 0.5153h 0.5825 c 0.0336,-0.0000 0.0896,0.0224 0.0896 0.0896v 0.2464 l -1.5346,-0.0224 l -1.5570,0.0224 v -0.2464 c 0.0112,-0.0336 0.0224,-0.0896 0.0896 -0.0896h 0.6721 c 0.4256,-0.0000 0.4256,-0.1904 0.4256 -0.5153v -3.8532 c 0.0000,-0.3808 0.0000,-0.6497 -0.2464 -0.6497ZM 41.1142,157.8792 ZM 44.0041,153.9028 c 0.0000,-0.0784 0.0112,-0.1680 0.1120 -0.2240c 0.1232,-0.0896 0.3248,-0.1904 0.4928 -0.1904c 0.1456,-0.0000 0.1568,0.1232 0.1568 0.3472v 1.8034 h 0.9073 l -0.0672,0.5265 h -0.8401 v 0.9297 c 0.0000,0.3136 0.0448,0.4704 0.3696 0.4704h 0.3024 c 0.0672,-0.0000 0.0784,0.0560 0.0784 0.0784v 0.2464 c 0.0000,-0.0000 -0.7169,-0.0224 -1.1873 -0.0224c -0.4256,-0.0000 -1.0865,0.0224 -1.0865 0.0224v -0.2464 c 0.0000,-0.0224 0.0112,-0.0784 0.0784 -0.0784h 0.3024 c 0.3472,-0.0000 0.3808,-0.1456 0.3808 -0.4704v -0.9297 h -2.1954 c -0.0448,-0.0000 -0.0672,-0.0224 -0.1008 -0.0672l -0.0896,-0.1232 l -0.1344,-0.2352 c -0.0112,-0.0000 -0.0112,-0.0112 -0.0112 -0.0224c 0.0000,-0.0112 0.0112,-0.0224 0.0224 -0.0336c 0.7281,-0.8065 2.0162,-3.3043 2.4194 -4.2228c 0.0112,-0.0448 0.0336,-0.0560 0.0784 -0.0560c 0.0112,-0.0000 0.2576,0.1008 0.3920 0.1232c -0.5041,1.3553 -1.3329,2.8115 -2.1506 4.1108h 1.7698 v -1.7362 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8322938419104906" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 48.5531,157.8792 h 5.0657 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 28.8489,174.7649 ZM 31.3020,168.6827 c -0.4816,-0.0000 -1.1873,0.4704 -1.1873 3.0803c 0.0000,0.9185 0.1680,2.7667 1.1537 2.7667c 0.1904,-0.0000 0.7281,-0.1232 0.9633 -0.9969c 0.1456,-0.5377 0.2240,-1.2097 0.2240 -2.1842c 0.0000,-1.4225 -0.3584,-2.2178 -0.6833 -2.4979c -0.1232,-0.1120 -0.2912,-0.1680 -0.4704 -0.1680ZM 31.3020,168.6827 ZM 31.2572,174.8993 c -1.1985,-0.0000 -2.0050,-1.5346 -2.0050 -3.2483c 0.0000,-2.0946 0.9969,-3.3603 2.0498 -3.3603c 0.4816,-0.0000 0.9633,0.3024 1.2881 0.7393c 0.4704,0.6273 0.7169,1.4673 0.7169 2.5203c 0.0000,2.4867 -1.2321,3.3491 -2.0498 3.3491ZM 33.7550,174.7649 ZM 34.3935,174.3057 c 0.0000,-0.3248 0.2688,-0.5937 0.5937 -0.5937c 0.3248,-0.0000 0.5937,0.2688 0.5937 0.5937c 0.0000,0.3248 -0.2688,0.5937 -0.5937 0.5937c -0.3248,-0.0000 -0.5937,-0.2688 -0.5937 -0.5937ZM 36.2081,174.7649 ZM 38.3139,169.4220 c -0.2128,-0.0000 -0.7057,0.2016 -0.9521 0.3136l -0.1344,-0.3472 c 0.9857,-0.4592 1.3665,-0.6945 1.9266 -1.0977h 0.2128 v 5.6342 c 0.0000,0.4032 0.0560,0.5153 0.4256 0.5153h 0.5825 c 0.0336,-0.0000 0.0896,0.0224 0.0896 0.0896v 0.2464 l -1.5346,-0.0224 l -1.5570,0.0224 v -0.2464 c 0.0112,-0.0336 0.0224,-0.0896 0.0896 -0.0896h 0.6721 c 0.4256,-0.0000 0.4256,-0.1904 0.4256 -0.5153v -3.8532 c 0.0000,-0.3808 0.0000,-0.6497 -0.2464 -0.6497ZM 41.1142,174.7649 ZM 41.7638,169.8028 c 0.0000,-0.6385 0.6161,-1.5122 1.7922 -1.5122c 0.8625,-0.0000 1.8706,0.3248 1.8706 1.6130c 0.0000,0.8513 -0.4368,1.2769 -1.0417 1.8594l -1.0641,1.0305 c -0.0560,0.0560 -0.8065,0.7953 -0.8065 1.3217h 1.9042 c 0.3808,-0.0000 0.5825,-0.1904 0.7393 -0.8065l 0.2800,0.0448 l -0.2240,1.4113 h -3.4611 c 0.0000,-0.6273 0.1008,-1.1089 1.1425 -2.1730l 0.7841,-0.7729 c 0.6273,-0.6385 0.8849,-1.1873 0.8849 -1.8706c 0.0000,-1.0193 -0.6945,-1.3105 -1.0753 -1.3105c -0.7729,-0.0000 -0.9857,0.4032 -0.9857 0.6721c 0.0000,0.0896 0.0224,0.1792 0.0448 0.2576c 0.0224,0.0784 0.0448,0.1568 0.0448 0.2464c 0.0000,0.2912 -0.2240,0.4032 -0.4032 0.4032c -0.2464,-0.0000 -0.4256,-0.1904 -0.4256 -0.4144Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8322938419104906" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 48.5531,174.7649 h 5.0657 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 28.8489,191.6506 ZM 31.3020,185.5684 c -0.4816,-0.0000 -1.1873,0.4704 -1.1873 3.0803c 0.0000,0.9185 0.1680,2.7667 1.1537 2.7667c 0.1904,-0.0000 0.7281,-0.1232 0.9633 -0.9969c 0.1456,-0.5377 0.2240,-1.2097 0.2240 -2.1842c 0.0000,-1.4225 -0.3584,-2.2178 -0.6833 -2.4979c -0.1232,-0.1120 -0.2912,-0.1680 -0.4704 -0.1680ZM 31.3020,185.5684 ZM 31.2572,191.7850 c -1.1985,-0.0000 -2.0050,-1.5346 -2.0050 -3.2483c 0.0000,-2.0946 0.9969,-3.3603 2.0498 -3.3603c 0.4816,-0.0000 0.9633,0.3024 1.2881 0.7393c 0.4704,0.6273 0.7169,1.4673 0.7169 2.5203c 0.0000,2.4867 -1.2321,3.3491 -2.0498 3.3491ZM 33.7550,191.6506 ZM 34.3935,191.1914 c 0.0000,-0.3248 0.2688,-0.5937 0.5937 -0.5937c 0.3248,-0.0000 0.5937,0.2688 0.5937 0.5937c 0.0000,0.3248 -0.2688,0.5937 -0.5937 0.5937c -0.3248,-0.0000 -0.5937,-0.2688 -0.5937 -0.5937ZM 36.2081,191.6506 ZM 38.3139,186.3077 c -0.2128,-0.0000 -0.7057,0.2016 -0.9521 0.3136l -0.1344,-0.3472 c 0.9857,-0.4592 1.3665,-0.6945 1.9266 -1.0977h 0.2128 v 5.6342 c 0.0000,0.4032 0.0560,0.5153 0.4256 0.5153h 0.5825 c 0.0336,-0.0000 0.0896,0.0224 0.0896 0.0896v 0.2464 l -1.5346,-0.0224 l -1.5570,0.0224 v -0.2464 c 0.0112,-0.0336 0.0224,-0.0896 0.0896 -0.0896h 0.6721 c 0.4256,-0.0000 0.4256,-0.1904 0.4256 -0.5153v -3.8532 c 0.0000,-0.3808 0.0000,-0.6497 -0.2464 -0.6497ZM 41.1142,191.6506 ZM 43.5672,185.5684 c -0.4816,-0.0000 -1.1873,0.4704 -1.1873 3.0803c 0.0000,0.9185 0.1680,2.7667 1.1537 2.7667c 0.1904,-0.0000 0.7281,-0.1232 0.9633 -0.9969c 0.1456,-0.5377 0.2240,-1.2097 0.2240 -2.1842c 0.0000,-1.4225 -0.3584,-2.2178 -0.6833 -2.4979c -0.1232,-0.1120 -0.2912,-0.1680 -0.4704 -0.1680ZM 43.5672,185.5684 ZM 43.5224,191.7850 c -1.1985,-0.0000 -2.0050,-1.5346 -2.0050 -3.2483c 0.0000,-2.0946 0.9969,-3.3603 2.0498 -3.3603c 0.4816,-0.0000 0.9633,0.3024 1.2881 0.7393c 0.4704,0.6273 0.7169,1.4673 0.7169 2.5203c 0.0000,2.4867 -1.2321,3.3491 -2.0498 3.3491Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8322938419104906" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 48.5531,191.6506 h 5.0657 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 28.8489,208.5363 ZM 31.3020,202.4541 c -0.4816,-0.0000 -1.1873,0.4704 -1.1873 3.0803c 0.0000,0.9185 0.1680,2.7667 1.1537 2.7667c 0.1904,-0.0000 0.7281,-0.1232 0.9633 -0.9969c 0.1456,-0.5377 0.2240,-1.2097 0.2240 -2.1842c 0.0000,-1.4225 -0.3584,-2.2178 -0.6833 -2.4979c -0.1232,-0.1120 -0.2912,-0.1680 -0.4704 -0.1680ZM 31.3020,202.4541 ZM 31.2572,208.6707 c -1.1985,-0.0000 -2.0050,-1.5346 -2.0050 -3.2483c 0.0000,-2.0946 0.9969,-3.3603 2.0498 -3.3603c 0.4816,-0.0000 0.9633,0.3024 1.2881 0.7393c 0.4704,0.6273 0.7169,1.4673 0.7169 2.5203c 0.0000,2.4867 -1.2321,3.3491 -2.0498 3.3491ZM 33.7550,208.5363 ZM 34.3935,208.0771 c 0.0000,-0.3248 0.2688,-0.5937 0.5937 -0.5937c 0.3248,-0.0000 0.5937,0.2688 0.5937 0.5937c 0.0000,0.3248 -0.2688,0.5937 -0.5937 0.5937c -0.3248,-0.0000 -0.5937,-0.2688 -0.5937 -0.5937ZM 36.2081,208.5363 ZM 38.6611,202.4541 c -0.4816,-0.0000 -1.1873,0.4704 -1.1873 3.0803c 0.0000,0.9185 0.1680,2.7667 1.1537 2.7667c 0.1904,-0.0000 0.7281,-0.1232 0.9633 -0.9969c 0.1456,-0.5377 0.2240,-1.2097 0.2240 -2.1842c 0.0000,-1.4225 -0.3584,-2.2178 -0.6833 -2.4979c -0.1232,-0.1120 -0.2912,-0.1680 -0.4704 -0.1680ZM 38.6611,202.4541 ZM 38.6163,208.6707 c -1.1985,-0.0000 -2.0050,-1.5346 -2.0050 -3.2483c 0.0000,-2.0946 0.9969,-3.3603 2.0498 -3.3603c 0.4816,-0.0000 0.9633,0.3024 1.2881 0.7393c 0.4704,0.6273 0.7169,1.4673 0.7169 2.5203c 0.0000,2.4867 -1.2321,3.3491 -2.0498 3.3491ZM 41.1142,208.5363 ZM 43.6008,202.3309 c -0.6385,-0.0000 -1.0529,0.5041 -1.0529 0.9969c 0.0000,0.3248 0.1344,0.7169 0.8065 1.1537l 0.3248,0.2016 c 0.2912,-0.2128 0.9745,-0.7281 0.9745 -1.2993c 0.0000,-0.4928 -0.3584,-1.0529 -1.0529 -1.0529ZM 43.6008,202.3309 ZM 45.3146,203.3950 c 0.0000,0.6833 -0.7729,1.2209 -1.2433 1.5346l 0.6497,0.4256 c 0.5489,0.3584 0.8289,0.8513 0.8289 1.4673c 0.0000,0.8065 -0.6609,1.8482 -2.0498 1.8482c -1.1201,-0.0000 -1.8930,-0.5937 -1.8930 -1.6802c 0.0000,-0.4144 0.1792,-0.8961 0.6161 -1.2769c 0.2688,-0.2352 0.5041,-0.4368 0.7729 -0.6385l -0.1904,-0.1120 c -0.6497,-0.4032 -0.9745,-0.8401 -0.9745 -1.4337c 0.0000,-0.8177 0.7393,-1.4673 1.8258 -1.4673c 1.0417,-0.0000 1.6578,0.5713 1.6578 1.3329ZM 45.3146,203.3950 ZM 43.5224,208.3571 c 0.4816,-0.0000 1.3217,-0.2576 1.3217 -1.3217c 0.0000,-0.5041 -0.3136,-1.0081 -0.9745 -1.4113l -0.4928,-0.3024 c -0.9073,0.6049 -1.1089,1.3553 -1.1089 1.6690c 0.0000,0.9521 0.7729,1.3665 1.2545 1.3665Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8322938419104906" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 48.5531,208.5363 h 5.0657 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 28.8489,225.4220 ZM 31.3020,219.3398 c -0.4816,-0.0000 -1.1873,0.4704 -1.1873 3.0803c 0.0000,0.9185 0.1680,2.7667 1.1537 2.7667c 0.1904,-0.0000 0.7281,-0.1232 0.9633 -0.9969c 0.1456,-0.5377 0.2240,-1.2097 0.2240 -2.1842c 0.0000,-1.4225 -0.3584,-2.2178 -0.6833 -2.4979c -0.1232,-0.1120 -0.2912,-0.1680 -0.4704 -0.1680ZM 31.3020,219.3398 ZM 31.2572,225.5564 c -1.1985,-0.0000 -2.0050,-1.5346 -2.0050 -3.2483c 0.0000,-2.0946 0.9969,-3.3603 2.0498 -3.3603c 0.4816,-0.0000 0.9633,0.3024 1.2881 0.7393c 0.4704,0.6273 0.7169,1.4673 0.7169 2.5203c 0.0000,2.4867 -1.2321,3.3491 -2.0498 3.3491ZM 33.7550,225.4220 ZM 34.3935,224.9628 c 0.0000,-0.3248 0.2688,-0.5937 0.5937 -0.5937c 0.3248,-0.0000 0.5937,0.2688 0.5937 0.5937c 0.0000,0.3248 -0.2688,0.5937 -0.5937 0.5937c -0.3248,-0.0000 -0.5937,-0.2688 -0.5937 -0.5937ZM 36.2081,225.4220 ZM 38.6611,219.3398 c -0.4816,-0.0000 -1.1873,0.4704 -1.1873 3.0803c 0.0000,0.9185 0.1680,2.7667 1.1537 2.7667c 0.1904,-0.0000 0.7281,-0.1232 0.9633 -0.9969c 0.1456,-0.5377 0.2240,-1.2097 0.2240 -2.1842c 0.0000,-1.4225 -0.3584,-2.2178 -0.6833 -2.4979c -0.1232,-0.1120 -0.2912,-0.1680 -0.4704 -0.1680ZM 38.6611,219.3398 ZM 38.6163,225.5564 c -1.1985,-0.0000 -2.0050,-1.5346 -2.0050 -3.2483c 0.0000,-2.0946 0.9969,-3.3603 2.0498 -3.3603c 0.4816,-0.0000 0.9633,0.3024 1.2881 0.7393c 0.4704,0.6273 0.7169,1.4673 0.7169 2.5203c 0.0000,2.4867 -1.2321,3.3491 -2.0498 3.3491ZM 41.1142,225.4220 ZM 42.4135,222.4873 c -0.0112,0.1120 -0.0112,0.2800 -0.0112 0.3920c 0.0000,1.8818 0.8401,2.3522 1.4001 2.3522c 0.5153,-0.0000 1.0641,-0.4816 1.0641 -1.6466c 0.0000,-0.5265 -0.2688,-1.6018 -1.3441 -1.6018c -0.2352,-0.0000 -0.6609,0.0224 -1.1089 0.5041ZM 42.4135,222.4873 ZM 45.3482,219.2390 c -0.7281,0.0672 -1.3553,0.2576 -1.8930 0.7841c -0.5153,0.5041 -0.8849,1.2545 -1.0081 2.1506c 0.2576,-0.3136 0.8737,-0.5489 1.2993 -0.5489c 1.6578,-0.0000 1.8706,1.3665 1.8706 1.8818c 0.0000,0.7617 -0.3808,2.0498 -1.9266 2.0498c -0.8177,-0.0000 -2.0610,-0.4816 -2.0610 -2.7107c 0.0000,-1.0305 0.3472,-2.0386 1.1201 -2.8115c 0.7169,-0.7281 1.4673,-1.0305 2.5651 -1.0865Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8322938419104906" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 48.5531,225.4220 h 5.0657 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 28.8489,242.3077 ZM 31.3020,236.2255 c -0.4816,-0.0000 -1.1873,0.4704 -1.1873 3.0803c 0.0000,0.9185 0.1680,2.7667 1.1537 2.7667c 0.1904,-0.0000 0.7281,-0.1232 0.9633 -0.9969c 0.1456,-0.5377 0.2240,-1.2097 0.2240 -2.1842c 0.0000,-1.4225 -0.3584,-2.2178 -0.6833 -2.4979c -0.1232,-0.1120 -0.2912,-0.1680 -0.4704 -0.1680ZM 31.3020,236.2255 ZM 31.2572,242.4421 c -1.1985,-0.0000 -2.0050,-1.5346 -2.0050 -3.2483c 0.0000,-2.0946 0.9969,-3.3603 2.0498 -3.3603c 0.4816,-0.0000 0.9633,0.3024 1.2881 0.7393c 0.4704,0.6273 0.7169,1.4673 0.7169 2.5203c 0.0000,2.4867 -1.2321,3.3491 -2.0498 3.3491ZM 33.7550,242.3077 ZM 34.3935,241.8485 c 0.0000,-0.3248 0.2688,-0.5937 0.5937 -0.5937c 0.3248,-0.0000 0.5937,0.2688 0.5937 0.5937c 0.0000,0.3248 -0.2688,0.5937 -0.5937 0.5937c -0.3248,-0.0000 -0.5937,-0.2688 -0.5937 -0.5937ZM 36.2081,242.3077 ZM 38.6611,236.2255 c -0.4816,-0.0000 -1.1873,0.4704 -1.1873 3.0803c 0.0000,0.9185 0.1680,2.7667 1.1537 2.7667c 0.1904,-0.0000 0.7281,-0.1232 0.9633 -0.9969c 0.1456,-0.5377 0.2240,-1.2097 0.2240 -2.1842c 0.0000,-1.4225 -0.3584,-2.2178 -0.6833 -2.4979c -0.1232,-0.1120 -0.2912,-0.1680 -0.4704 -0.1680ZM 38.6611,236.2255 ZM 38.6163,242.4421 c -1.1985,-0.0000 -2.0050,-1.5346 -2.0050 -3.2483c 0.0000,-2.0946 0.9969,-3.3603 2.0498 -3.3603c 0.4816,-0.0000 0.9633,0.3024 1.2881 0.7393c 0.4704,0.6273 0.7169,1.4673 0.7169 2.5203c 0.0000,2.4867 -1.2321,3.3491 -2.0498 3.3491ZM 41.1142,242.3077 ZM 44.0041,238.3313 c 0.0000,-0.0784 0.0112,-0.1680 0.1120 -0.2240c 0.1232,-0.0896 0.3248,-0.1904 0.4928 -0.1904c 0.1456,-0.0000 0.1568,0.1232 0.1568 0.3472v 1.8034 h 0.9073 l -0.0672,0.5265 h -0.8401 v 0.9297 c 0.0000,0.3136 0.0448,0.4704 0.3696 0.4704h 0.3024 c 0.0672,-0.0000 0.0784,0.0560 0.0784 0.0784v 0.2464 c 0.0000,-0.0000 -0.7169,-0.0224 -1.1873 -0.0224c -0.4256,-0.0000 -1.0865,0.0224 -1.0865 0.0224v -0.2464 c 0.0000,-0.0224 0.0112,-0.0784 0.0784 -0.0784h 0.3024 c 0.3472,-0.0000 0.3808,-0.1456 0.3808 -0.4704v -0.9297 h -2.1954 c -0.0448,-0.0000 -0.0672,-0.0224 -0.1008 -0.0672l -0.0896,-0.1232 l -0.1344,-0.2352 c -0.0112,-0.0000 -0.0112,-0.0112 -0.0112 -0.0224c 0.0000,-0.0112 0.0112,-0.0224 0.0224 -0.0336c 0.7281,-0.8065 2.0162,-3.3043 2.4194 -4.2228c 0.0112,-0.0448 0.0336,-0.0560 0.0784 -0.0560c 0.0112,-0.0000 0.2576,0.1008 0.3920 0.1232c -0.5041,1.3553 -1.3329,2.8115 -2.1506 4.1108h 1.7698 v -1.7362 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8322938419104906" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 48.5531,242.3077 h 5.0657 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 28.8489,259.1934 ZM 31.3020,253.1112 c -0.4816,-0.0000 -1.1873,0.4704 -1.1873 3.0803c 0.0000,0.9185 0.1680,2.7667 1.1537 2.7667c 0.1904,-0.0000 0.7281,-0.1232 0.9633 -0.9969c 0.1456,-0.5377 0.2240,-1.2097 0.2240 -2.1842c 0.0000,-1.4225 -0.3584,-2.2178 -0.6833 -2.4979c -0.1232,-0.1120 -0.2912,-0.1680 -0.4704 -0.1680ZM 31.3020,253.1112 ZM 31.2572,259.3278 c -1.1985,-0.0000 -2.0050,-1.5346 -2.0050 -3.2483c 0.0000,-2.0946 0.9969,-3.3603 2.0498 -3.3603c 0.4816,-0.0000 0.9633,0.3024 1.2881 0.7393c 0.4704,0.6273 0.7169,1.4673 0.7169 2.5203c 0.0000,2.4867 -1.2321,3.3491 -2.0498 3.3491ZM 33.7550,259.1934 ZM 34.3935,258.7342 c 0.0000,-0.3248 0.2688,-0.5937 0.5937 -0.5937c 0.3248,-0.0000 0.5937,0.2688 0.5937 0.5937c 0.0000,0.3248 -0.2688,0.5937 -0.5937 0.5937c -0.3248,-0.0000 -0.5937,-0.2688 -0.5937 -0.5937ZM 36.2081,259.1934 ZM 38.6611,253.1112 c -0.4816,-0.0000 -1.1873,0.4704 -1.1873 3.0803c 0.0000,0.9185 0.1680,2.7667 1.1537 2.7667c 0.1904,-0.0000 0.7281,-0.1232 0.9633 -0.9969c 0.1456,-0.5377 0.2240,-1.2097 0.2240 -2.1842c 0.0000,-1.4225 -0.3584,-2.2178 -0.6833 -2.4979c -0.1232,-0.1120 -0.2912,-0.1680 -0.4704 -0.1680ZM 38.6611,253.1112 ZM 38.6163,259.3278 c -1.1985,-0.0000 -2.0050,-1.5346 -2.0050 -3.2483c 0.0000,-2.0946 0.9969,-3.3603 2.0498 -3.3603c 0.4816,-0.0000 0.9633,0.3024 1.2881 0.7393c 0.4704,0.6273 0.7169,1.4673 0.7169 2.5203c 0.0000,2.4867 -1.2321,3.3491 -2.0498 3.3491ZM 41.1142,259.1934 ZM 41.7638,254.2313 c 0.0000,-0.6385 0.6161,-1.5122 1.7922 -1.5122c 0.8625,-0.0000 1.8706,0.3248 1.8706 1.6130c 0.0000,0.8513 -0.4368,1.2769 -1.0417 1.8594l -1.0641,1.0305 c -0.0560,0.0560 -0.8065,0.7953 -0.8065 1.3217h 1.9042 c 0.3808,-0.0000 0.5825,-0.1904 0.7393 -0.8065l 0.2800,0.0448 l -0.2240,1.4113 h -3.4611 c 0.0000,-0.6273 0.1008,-1.1089 1.1425 -2.1730l 0.7841,-0.7729 c 0.6273,-0.6385 0.8849,-1.1873 0.8849 -1.8706c 0.0000,-1.0193 -0.6945,-1.3105 -1.0753 -1.3105c -0.7729,-0.0000 -0.9857,0.4032 -0.9857 0.6721c 0.0000,0.0896 0.0224,0.1792 0.0448 0.2576c 0.0224,0.0784 0.0448,0.1568 0.0448 0.2464c 0.0000,0.2912 -0.2240,0.4032 -0.4032 0.4032c -0.2464,-0.0000 -0.4256,-0.1904 -0.4256 -0.4144Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8322938419104906" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 48.5531,259.1934 h 5.0657 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 28.8489,276.0791 ZM 31.3020,269.9969 c -0.4816,-0.0000 -1.1873,0.4704 -1.1873 3.0803c 0.0000,0.9185 0.1680,2.7667 1.1537 2.7667c 0.1904,-0.0000 0.7281,-0.1232 0.9633 -0.9969c 0.1456,-0.5377 0.2240,-1.2097 0.2240 -2.1842c 0.0000,-1.4225 -0.3584,-2.2178 -0.6833 -2.4979c -0.1232,-0.1120 -0.2912,-0.1680 -0.4704 -0.1680ZM 31.3020,269.9969 ZM 31.2572,276.2136 c -1.1985,-0.0000 -2.0050,-1.5346 -2.0050 -3.2483c 0.0000,-2.0946 0.9969,-3.3603 2.0498 -3.3603c 0.4816,-0.0000 0.9633,0.3024 1.2881 0.7393c 0.4704,0.6273 0.7169,1.4673 0.7169 2.5203c 0.0000,2.4867 -1.2321,3.3491 -2.0498 3.3491ZM 33.7550,276.0791 ZM 34.3935,275.6199 c 0.0000,-0.3248 0.2688,-0.5937 0.5937 -0.5937c 0.3248,-0.0000 0.5937,0.2688 0.5937 0.5937c 0.0000,0.3248 -0.2688,0.5937 -0.5937 0.5937c -0.3248,-0.0000 -0.5937,-0.2688 -0.5937 -0.5937ZM 36.2081,276.0791 ZM 38.6611,269.9969 c -0.4816,-0.0000 -1.1873,0.4704 -1.1873 3.0803c 0.0000,0.9185 0.1680,2.7667 1.1537 2.7667c 0.1904,-0.0000 0.7281,-0.1232 0.9633 -0.9969c 0.1456,-0.5377 0.2240,-1.2097 0.2240 -2.1842c 0.0000,-1.4225 -0.3584,-2.2178 -0.6833 -2.4979c -0.1232,-0.1120 -0.2912,-0.1680 -0.4704 -0.1680ZM 38.6611,269.9969 ZM 38.6163,276.2136 c -1.1985,-0.0000 -2.0050,-1.5346 -2.0050 -3.2483c 0.0000,-2.0946 0.9969,-3.3603 2.0498 -3.3603c 0.4816,-0.0000 0.9633,0.3024 1.2881 0.7393c 0.4704,0.6273 0.7169,1.4673 0.7169 2.5203c 0.0000,2.4867 -1.2321,3.3491 -2.0498 3.3491ZM 41.1142,276.0791 ZM 43.5672,269.9969 c -0.4816,-0.0000 -1.1873,0.4704 -1.1873 3.0803c 0.0000,0.9185 0.1680,2.7667 1.1537 2.7667c 0.1904,-0.0000 0.7281,-0.1232 0.9633 -0.9969c 0.1456,-0.5377 0.2240,-1.2097 0.2240 -2.1842c 0.0000,-1.4225 -0.3584,-2.2178 -0.6833 -2.4979c -0.1232,-0.1120 -0.2912,-0.1680 -0.4704 -0.1680ZM 43.5672,269.9969 ZM 43.5224,276.2136 c -1.1985,-0.0000 -2.0050,-1.5346 -2.0050 -3.2483c 0.0000,-2.0946 0.9969,-3.3603 2.0498 -3.3603c 0.4816,-0.0000 0.9633,0.3024 1.2881 0.7393c 0.4704,0.6273 0.7169,1.4673 0.7169 2.5203c 0.0000,2.4867 -1.2321,3.3491 -2.0498 3.3491Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8322938419104906" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 48.5531,276.0791 h 5.0657 "/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 569.3974,282.9510 l -0.0000,-3.3771 h -506.5712 l -0.0000,3.3771 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 564.4913,297.1863 ZM 566.5971,291.8433 c -0.2128,-0.0000 -0.7057,0.2016 -0.9521 0.3136l -0.1344,-0.3472 c 0.9857,-0.4592 1.3665,-0.6945 1.9266 -1.0977h 0.2128 v 5.6342 c 0.0000,0.4032 0.0560,0.5153 0.4256 0.5153h 0.5825 c 0.0336,-0.0000 0.0896,0.0224 0.0896 0.0896v 0.2464 l -1.5346,-0.0224 l -1.5570,0.0224 v -0.2464 c 0.0112,-0.0336 0.0224,-0.0896 0.0896 -0.0896h 0.6721 c 0.4256,-0.0000 0.4256,-0.1904 0.4256 -0.5153v -3.8532 c 0.0000,-0.3808 0.0000,-0.6497 -0.2464 -0.6497ZM 569.3974,297.1863 ZM 570.0471,292.2242 c 0.0000,-0.6385 0.6161,-1.5122 1.7922 -1.5122c 0.8625,-0.0000 1.8706,0.3248 1.8706 1.6130c 0.0000,0.8513 -0.4368,1.2769 -1.0417 1.8594l -1.0641,1.0305 c -0.0560,0.0560 -0.8065,0.7953 -0.8065 1.3217h 1.9042 c 0.3808,-0.0000 0.5825,-0.1904 0.7393 -0.8065l 0.2800,0.0448 l -0.2240,1.4113 h -3.4611 c 0.0000,-0.6273 0.1008,-1.1089 1.1425 -2.1730l 0.7841,-0.7729 c 0.6273,-0.6385 0.8849,-1.1873 0.8849 -1.8706c 0.0000,-1.0193 -0.6945,-1.3105 -1.0753 -1.3105c -0.7729,-0.0000 -0.9857,0.4032 -0.9857 0.6721c 0.0000,0.0896 0.0224,0.1792 0.0448 0.2576c 0.0224,0.0784 0.0448,0.1568 0.0448 0.2464c 0.0000,0.2912 -0.2240,0.4032 -0.4032 0.4032c -0.2464,-0.0000 -0.4256,-0.1904 -0.4256 -0.4144Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8322938419104906" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 569.3974,279.5739 v 5.0657 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 480.0628,297.1863 ZM 482.1686,291.8433 c -0.2128,-0.0000 -0.7057,0.2016 -0.9521 0.3136l -0.1344,-0.3472 c 0.9857,-0.4592 1.3665,-0.6945 1.9266 -1.0977h 0.2128 v 5.6342 c 0.0000,0.4032 0.0560,0.5153 0.4256 0.5153h 0.5825 c 0.0336,-0.0000 0.0896,0.0224 0.0896 0.0896v 0.2464 l -1.5346,-0.0224 l -1.5570,0.0224 v -0.2464 c 0.0112,-0.0336 0.0224,-0.0896 0.0896 -0.0896h 0.6721 c 0.4256,-0.0000 0.4256,-0.1904 0.4256 -0.5153v -3.8532 c 0.0000,-0.3808 0.0000,-0.6497 -0.2464 -0.6497ZM 484.9689,297.1863 ZM 487.4219,291.1041 c -0.4816,-0.0000 -1.1873,0.4704 -1.1873 3.0803c 0.0000,0.9185 0.1680,2.7667 1.1537 2.7667c 0.1904,-0.0000 0.7281,-0.1232 0.9633 -0.9969c 0.1456,-0.5377 0.2240,-1.2097 0.2240 -2.1842c 0.0000,-1.4225 -0.3584,-2.2178 -0.6833 -2.4979c -0.1232,-0.1120 -0.2912,-0.1680 -0.4704 -0.1680ZM 487.4219,291.1041 ZM 487.3771,297.3207 c -1.1985,-0.0000 -2.0050,-1.5346 -2.0050 -3.2483c 0.0000,-2.0946 0.9969,-3.3603 2.0498 -3.3603c 0.4816,-0.0000 0.9633,0.3024 1.2881 0.7393c 0.4704,0.6273 0.7169,1.4673 0.7169 2.5203c 0.0000,2.4867 -1.2321,3.3491 -2.0498 3.3491Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8322938419104906" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 484.9689,279.5739 v 5.0657 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 398.0873,297.1863 ZM 400.5739,290.9808 c -0.6385,-0.0000 -1.0529,0.5041 -1.0529 0.9969c 0.0000,0.3248 0.1344,0.7169 0.8065 1.1537l 0.3248,0.2016 c 0.2912,-0.2128 0.9745,-0.7281 0.9745 -1.2993c 0.0000,-0.4928 -0.3584,-1.0529 -1.0529 -1.0529ZM 400.5739,290.9808 ZM 402.2877,292.0450 c 0.0000,0.6833 -0.7729,1.2209 -1.2433 1.5346l 0.6497,0.4256 c 0.5489,0.3584 0.8289,0.8513 0.8289 1.4673c 0.0000,0.8065 -0.6609,1.8482 -2.0498 1.8482c -1.1201,-0.0000 -1.8930,-0.5937 -1.8930 -1.6802c 0.0000,-0.4144 0.1792,-0.8961 0.6161 -1.2769c 0.2688,-0.2352 0.5041,-0.4368 0.7729 -0.6385l -0.1904,-0.1120 c -0.6497,-0.4032 -0.9745,-0.8401 -0.9745 -1.4337c 0.0000,-0.8177 0.7393,-1.4673 1.8258 -1.4673c 1.0417,-0.0000 1.6578,0.5713 1.6578 1.3329ZM 402.2877,292.0450 ZM 400.4955,297.0071 c 0.4816,-0.0000 1.3217,-0.2576 1.3217 -1.3217c 0.0000,-0.5041 -0.3136,-1.0081 -0.9745 -1.4113l -0.4928,-0.3024 c -0.9073,0.6049 -1.1089,1.3553 -1.1089 1.6690c 0.0000,0.9521 0.7729,1.3665 1.2545 1.3665Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8322938419104906" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 400.5403,279.5739 v 5.0657 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 313.6587,297.1863 ZM 314.9581,294.2516 c -0.0112,0.1120 -0.0112,0.2800 -0.0112 0.3920c 0.0000,1.8818 0.8401,2.3522 1.4001 2.3522c 0.5153,-0.0000 1.0641,-0.4816 1.0641 -1.6466c 0.0000,-0.5265 -0.2688,-1.6018 -1.3441 -1.6018c -0.2352,-0.0000 -0.6609,0.0224 -1.1089 0.5041ZM 314.9581,294.2516 ZM 317.8928,291.0033 c -0.7281,0.0672 -1.3553,0.2576 -1.8930 0.7841c -0.5153,0.5041 -0.8849,1.2545 -1.0081 2.1506c 0.2576,-0.3136 0.8737,-0.5489 1.2993 -0.5489c 1.6578,-0.0000 1.8706,1.3665 1.8706 1.8818c 0.0000,0.7617 -0.3808,2.0498 -1.9266 2.0498c -0.8177,-0.0000 -2.0610,-0.4816 -2.0610 -2.7107c 0.0000,-1.0305 0.3472,-2.0386 1.1201 -2.8115c 0.7169,-0.7281 1.4673,-1.0305 2.5651 -1.0865Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8322938419104906" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 316.1118,279.5739 v 5.0657 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 229.2302,297.1863 ZM 232.1201,293.2099 c 0.0000,-0.0784 0.0112,-0.1680 0.1120 -0.2240c 0.1232,-0.0896 0.3248,-0.1904 0.4928 -0.1904c 0.1456,-0.0000 0.1568,0.1232 0.1568 0.3472v 1.8034 h 0.9073 l -0.0672,0.5265 h -0.8401 v 0.9297 c 0.0000,0.3136 0.0448,0.4704 0.3696 0.4704h 0.3024 c 0.0672,-0.0000 0.0784,0.0560 0.0784 0.0784v 0.2464 c 0.0000,-0.0000 -0.7169,-0.0224 -1.1873 -0.0224c -0.4256,-0.0000 -1.0865,0.0224 -1.0865 0.0224v -0.2464 c 0.0000,-0.0224 0.0112,-0.0784 0.0784 -0.0784h 0.3024 c 0.3472,-0.0000 0.3808,-0.1456 0.3808 -0.4704v -0.9297 h -2.1954 c -0.0448,-0.0000 -0.0672,-0.0224 -0.1008 -0.0672l -0.0896,-0.1232 l -0.1344,-0.2352 c -0.0112,-0.0000 -0.0112,-0.0112 -0.0112 -0.0224c 0.0000,-0.0112 0.0112,-0.0224 0.0224 -0.0336c 0.7281,-0.8065 2.0162,-3.3043 2.4194 -4.2228c 0.0112,-0.0448 0.0336,-0.0560 0.0784 -0.0560c 0.0112,-0.0000 0.2576,0.1008 0.3920 0.1232c -0.5041,1.3553 -1.3329,2.8115 -2.1506 4.1108h 1.7698 v -1.7362 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8322938419104906" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.6832,279.5739 v 5.0657 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 144.8017,297.1863 ZM 145.4513,292.2242 c 0.0000,-0.6385 0.6161,-1.5122 1.7922 -1.5122c 0.8625,-0.0000 1.8706,0.3248 1.8706 1.6130c 0.0000,0.8513 -0.4368,1.2769 -1.0417 1.8594l -1.0641,1.0305 c -0.0560,0.0560 -0.8065,0.7953 -0.8065 1.3217h 1.9042 c 0.3808,-0.0000 0.5825,-0.1904 0.7393 -0.8065l 0.2800,0.0448 l -0.2240,1.4113 h -3.4611 c 0.0000,-0.6273 0.1008,-1.1089 1.1425 -2.1730l 0.7841,-0.7729 c 0.6273,-0.6385 0.8849,-1.1873 0.8849 -1.8706c 0.0000,-1.0193 -0.6945,-1.3105 -1.0753 -1.3105c -0.7729,-0.0000 -0.9857,0.4032 -0.9857 0.6721c 0.0000,0.0896 0.0224,0.1792 0.0448 0.2576c 0.0224,0.0784 0.0448,0.1568 0.0448 0.2464c 0.0000,0.2912 -0.2240,0.4032 -0.4032 0.4032c -0.2464,-0.0000 -0.4256,-0.1904 -0.4256 -0.4144Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8322938419104906" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 147.2547,279.5739 v 5.0657 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 60.3731,297.1863 ZM 62.8262,291.1041 c -0.4816,-0.0000 -1.1873,0.4704 -1.1873 3.0803c 0.0000,0.9185 0.1680,2.7667 1.1537 2.7667c 0.1904,-0.0000 0.7281,-0.1232 0.9633 -0.9969c 0.1456,-0.5377 0.2240,-1.2097 0.2240 -2.1842c 0.0000,-1.4225 -0.3584,-2.2178 -0.6833 -2.4979c -0.1232,-0.1120 -0.2912,-0.1680 -0.4704 -0.1680ZM 62.8262,291.1041 ZM 62.7814,297.3207 c -1.1985,-0.0000 -2.0050,-1.5346 -2.0050 -3.2483c 0.0000,-2.0946 0.9969,-3.3603 2.0498 -3.3603c 0.4816,-0.0000 0.9633,0.3024 1.2881 0.7393c 0.4704,0.6273 0.7169,1.4673 0.7169 2.5203c 0.0000,2.4867 -1.2321,3.3491 -2.0498 3.3491Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8322938419104906" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 62.8262,279.5739 v 5.0657 "/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 570.6239,272.8196 l -0.0000,-168.8571 h -506.5712 l -0.0000,168.8571 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="7.329175367641962" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 486.1954,272.8196 v -84.4285 "/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="7.329175367641962" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 443.9811,272.8196 v -75.9857 "/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="7.329175367641962" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 401.7668,272.8196 v -67.5428 "/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="7.329175367641962" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 359.5526,272.8196 v -59.1000 "/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="7.329175367641962" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 317.3383,272.8196 v -50.6571 "/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="7.329175367641962" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 275.1240,272.8196 v -42.2143 "/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="7.329175367641962" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 232.9098,272.8196 v -33.7714 "/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="7.329175367641962" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 190.6955,272.8196 v -25.3286 "/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="7.329175367641962" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 148.4812,272.8196 v -16.8857 "/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="7.329175367641962" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 106.2670,272.8196 v -8.4429 "/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="7.329175367641962" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 64.0527,272.8196 h 0.0000 "/></g></svg>
diff --git a/other/skinnyExample.svg b/other/skinnyExample.svg
--- a/other/skinnyExample.svg
+++ b/other/skinnyExample.svg
@@ -1,3 +1,3 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="150.0000" stroke-opacity="1" viewBox="0 0 600 150" font-size="1" width="600.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 555.3626,81.7160 ZM 561.7229,73.6309 l -2.7549,-2.7549 c -0.8025,-0.8025 -1.4134,-0.7905 -1.8686 -0.3354c -0.4671,0.4671 -0.5989,1.0780 -0.5390 2.2878c 0.1677,0.1198 0.3354,0.2875 0.5031 0.4552l 2.5034,2.5034 c 0.3474,0.3474 0.6468,0.4073 1.0421 0.0120l 0.2036,-0.2036 c 0.0599,-0.0599 0.1437,-0.0719 0.2036 -0.0120l 0.2276,0.2276 l -0.0000,0.0479 c 0.0000,-0.0000 -0.8265,0.7786 -1.2936 1.2457c -0.4312,0.4312 -1.2337,1.2816 -1.2337 1.2816l -0.0479,0.0000 l -0.2276,-0.2276 c -0.0599,-0.0599 -0.0599,-0.1318 0.0000 -0.1916l 0.2396,-0.2396 c 0.4073,-0.4073 0.3354,-0.6947 -0.0120 -1.0421l -2.7310,-2.7310 c -0.8025,-0.8025 -1.4493,-0.8025 -1.9045 -0.3474c -0.4192,0.4192 -0.5151,1.1140 -0.4911 2.2638l 2.9705,2.9705 c 0.3474,0.3474 0.6468,0.4073 1.0421 0.0120l 0.2276,-0.2276 c 0.0479,-0.0479 0.1318,-0.0599 0.1916 -0.0000l 0.2276,0.2276 l -0.0000,0.0479 c 0.0000,-0.0000 -0.8385,0.7905 -1.3056 1.2577c -0.4312,0.4312 -1.2218,1.2697 -1.2218 1.2697l -0.0479,0.0000 l -0.2276,-0.2276 c -0.0599,-0.0599 -0.0599,-0.1318 0.0000 -0.1916l 0.2276,-0.2276 c 0.4073,-0.4073 0.3354,-0.6947 -0.0120 -1.0421l -2.9825,-2.9825 c -0.6827,-0.6827 -0.8385,-0.6229 -0.9942 -0.4671c -0.1557,0.1557 -0.2875,0.3114 -0.4432 0.5630l -0.3953,-0.2755 c 0.6229,-0.8864 0.7426,-1.1020 0.8984 -1.5931c 0.0599,-0.1797 0.1198,-0.3114 0.2036 -0.3953l 0.1797,-0.1797 l 1.0062,1.0780 l 0.0359,-0.0359 c -0.0359,-1.1619 0.0240,-2.1081 0.7666 -2.8508c 0.6708,-0.6708 1.5811,-0.5989 2.1920 -0.1318c -0.0240,-1.4134 0.2276,-2.2878 0.8744 -2.9346c 1.0541,-1.0541 2.1081,-0.3593 3.1742 0.7067l 2.4914,2.4914 c 0.3474,0.3474 0.6468,0.4073 1.0421 0.0120l 0.2276,-0.2276 c 0.0479,-0.0479 0.1318,-0.0599 0.1916 -0.0000l 0.2276,0.2276 l -0.0000,0.0479 c 0.0000,-0.0000 -0.8385,0.7905 -1.3056 1.2577c -0.4312,0.4312 -1.2218,1.2697 -1.2218 1.2697l -0.0479,0.0000 l -0.2276,-0.2276 c -0.0599,-0.0599 -0.0599,-0.1318 0.0000 -0.1916l 0.2276,-0.2276 c 0.3953,-0.3953 0.3354,-0.6947 -0.0120 -1.0421ZM 564.4659,72.6127 ZM 565.0169,66.1925 l -0.7067,1.1858 c -0.7307,1.3775 -0.3354,2.0842 0.2036 2.6232c 0.3713,0.3713 1.1140,0.7546 1.8686 -0.0000c 0.3593,-0.3593 0.5630,-1.2577 0.6109 -1.8326l -1.9764,-1.9764 ZM 565.0169,66.1925 ZM 568.8618,68.5043 c -0.4552,0.4552 -1.1140,0.2995 -1.4493 0.0599l -0.0838,0.4671 c -0.1677,0.9343 -0.2515,1.2577 -0.8025 1.8087c -0.8385,0.8385 -1.9285,0.9702 -2.8268 0.0719c -0.9103,-0.9103 -0.7546,-2.3118 0.0958 -3.7371l 0.8265,-1.3775 c -1.3535,-1.3535 -2.2279,-0.9822 -2.6352 -0.5749c -0.4552,0.4552 -0.7786,1.1858 -0.4073 1.5571c 0.1318,0.1318 0.2276,0.1797 0.2755 0.2036c 0.0719,0.0240 0.1677,0.0958 0.2515 0.1797c 0.1557,0.1557 0.2755,0.5151 -0.0719 0.8624c -0.2875,0.2875 -0.6708,0.2875 -0.9582 -0.0000c -0.6947,-0.6947 -0.1797,-2.4315 0.5869 -3.1981c 0.8744,-0.8744 2.2399,-1.5212 3.9408 0.1797l 1.7608,1.7608 c 0.7307,0.7307 1.0541,1.0301 1.3296 0.7546c 0.2635,-0.2635 0.0000,-0.6708 -0.2515 -0.9463l 0.3593,-0.2396 c 0.8025,0.9463 0.6708,1.5571 0.0599 2.1680ZM 569.8680,67.2107 ZM 567.4125,60.0358 c -0.2396,0.2396 -0.2276,0.3474 -0.1437 0.4312c 0.0599,0.0599 0.2156,0.1198 0.5630 0.2036l 1.8087,0.3474 c 0.1078,0.0359 0.1797,0.0359 0.2276 -0.0120c 0.0359,-0.0359 0.0359,-0.0838 0.0240 -0.1916l -0.3114,-1.8686 c -0.0359,-0.2995 -0.0958,-0.5031 -0.1916 -0.5989c -0.0958,-0.0958 -0.2276,-0.0599 -0.3953 0.1078l -0.1916,0.1916 c -0.0359,0.0359 -0.0958,0.0479 -0.1557 -0.0120l -0.2276,-0.2276 l 0.0000,-0.0719 c 0.0000,-0.0000 0.5869,-0.5390 0.9582 -0.9103c 0.3833,-0.3833 0.9463,-0.9942 0.9463 -0.9942l 0.0359,0.0120 l 0.2276,0.2276 c 0.0838,0.0838 0.0240,0.1677 -0.0479 0.2396c -0.4432,0.4432 -0.4791,0.7666 -0.3593 1.7727l 0.2755,2.2878 c 0.0120,0.0599 0.0240,0.0958 0.0479 0.1198c 0.0240,0.0240 0.0719,0.0479 0.1318 0.0599l 2.5992,0.4432 c 1.3296,0.2276 1.4973,0.0838 1.8805 -0.2995c 0.1198,-0.1198 0.1916,-0.1437 0.2635 -0.0719l 0.2276,0.2276 l 0.0120,0.0359 c 0.0000,-0.0000 -0.6708,0.6229 -1.0780 1.0301c -0.4911,0.4911 -1.2218,1.2697 -1.2218 1.2697l -0.0479,0.0000 l -0.2276,-0.2276 c -0.0599,-0.0599 -0.0719,-0.1198 -0.0120 -0.1797l 0.1437,-0.1437 c 0.1916,-0.1916 0.2396,-0.3114 0.1437 -0.4073c -0.1078,-0.1078 -0.4192,-0.1557 -0.8624 -0.2156l -1.6530,-0.2635 c -0.1078,-0.0120 -0.1557,-0.0120 -0.1916 0.0240c -0.0240,0.0240 -0.0240,0.0958 -0.0000 0.2156l 0.3354,1.8446 c 0.0599,0.4192 0.0838,0.5151 0.1677 0.5989c 0.0838,0.0838 0.2036,0.0599 0.3833 -0.1198l 0.1677,-0.1677 c 0.0599,-0.0599 0.1198,-0.0479 0.1797 0.0120l 0.2276,0.2276 l -0.0000,0.0479 c 0.0000,-0.0000 -0.6468,0.5989 -1.0301 0.9822c -0.3474,0.3474 -0.8744,0.9223 -0.8744 0.9223l -0.0479,0.0000 l -0.2036,-0.2036 c -0.0719,-0.0719 -0.0719,-0.1677 0.0359 -0.2755c 0.2875,-0.2875 0.5031,-0.6229 0.3593 -1.7727l -0.2875,-2.2998 c -0.0120,-0.0359 -0.0240,-0.0719 -0.0599 -0.1078c -0.0359,-0.0359 -0.0719,-0.0479 -0.1318 -0.0599l -2.5633,-0.4791 c -0.8265,-0.1557 -1.3296,-0.2276 -1.7488 0.1916c -0.0838,0.0838 -0.2036,0.1318 -0.2515 0.0838l -0.2276,-0.2276 l -0.0120,-0.0599 l 0.9702,-0.9223 l 1.3056,-1.3535 l 0.0719,-0.0000 l 0.2156,0.2156 c 0.0599,0.0599 0.0479,0.1437 -0.0000 0.1916l -0.1797,0.1797 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 337.1786,81.7160 ZM 333.7170,73.7507 c -0.2276,0.2276 -0.5390,0.9702 -0.6827 1.3535l -0.5151,-0.2276 c 0.5630,-1.5452 0.7187,-2.2040 0.8864 -3.2341l 0.2276,-0.2276 l 6.0249,6.0249 c 0.4312,0.4312 0.6109,0.4911 1.0062 0.0958l 0.6229,-0.6229 c 0.0359,-0.0359 0.1198,-0.0719 0.1916 -0.0000l 0.2635,0.2635 l -1.6649,1.6170 l -1.6410,1.6889 l -0.2635,-0.2635 c -0.0240,-0.0479 -0.0719,-0.1198 0.0000 -0.1916l 0.7187,-0.7187 c 0.4552,-0.4552 0.2515,-0.6588 -0.0958 -1.0062l -4.1204,-4.1204 c -0.4073,-0.4073 -0.6947,-0.6947 -0.9582 -0.4312ZM 342.4250,76.4697 ZM 341.2631,74.2777 l 0.3114,-0.3354 c 0.3354,0.2635 1.0421,0.7067 1.5811 0.7187c 0.2515,0.0120 0.7905,-0.0958 1.2337 -0.5390c 0.4192,-0.4192 0.7067,-1.3775 0.1198 -1.9644c -0.5151,-0.5151 -1.1499,-0.5749 -2.5034 -0.0359c -1.2577,0.4911 -1.9644,0.6947 -2.8627 -0.2036c -0.8025,-0.8025 -0.6708,-2.0842 0.2755 -3.0304c 0.5989,-0.5989 1.1499,-0.9343 1.7129 -1.1140c 0.4552,0.3114 0.8984,0.6827 1.3535 1.0900l -0.3114,0.3354 c -1.2337,-0.7307 -2.1441,-0.2036 -2.3956 0.0479c -0.4552,0.4552 -0.7426,1.1020 -0.0838 1.7608c 0.4791,0.4791 0.9463,0.4911 1.8446 0.0719c 1.3296,-0.6109 2.5393,-0.9582 3.4976 -0.0000c 1.1858,1.1858 0.2755,2.7909 -0.2875 3.3538c -0.4192,0.4192 -0.8145,0.7187 -1.2098 0.9463c -0.0958,0.0719 -0.1677,0.1198 -0.2515 0.2036c -0.0599,0.0599 -0.1437,0.1677 -0.2396 0.3114c -0.5031,-0.5031 -1.1499,-1.0780 -1.7847 -1.6170ZM 346.8689,72.0258 ZM 344.1498,65.3780 l 3.0664,3.0664 c 0.7426,0.7426 1.1738,1.0301 1.4973 0.7067c 0.3114,-0.3114 0.4552,-0.6468 0.5270 -1.1978l 0.4192,-0.0120 c 0.0599,0.9942 -0.1557,1.7368 -0.7067 2.2878c -0.5510,0.5510 -1.2098,0.5390 -2.0602 -0.3114l -3.6413,-3.6413 l -0.7786,0.7786 c -0.0359,0.0359 -0.0599,0.0359 -0.0958 0.0000l -0.3713,-0.3713 c -0.0359,-0.0359 -0.0359,-0.0599 -0.0120 -0.0838c 0.8025,-0.8025 0.5270,-1.4613 -0.3833 -2.3716l -0.2276,-0.2276 l 0.4552,-0.9343 l 1.8446,1.8446 l 1.3176,-1.3176 c 0.0599,-0.0599 0.1198,-0.0719 0.1677 -0.0240l 0.2396,0.2396 c 0.1078,0.1078 -0.0120,0.3234 -0.1318 0.4432l -1.1259,1.1259 ZM 353.4807,65.4140 ZM 350.0071,53.9390 c -1.1499,1.1499 -1.4254,3.5096 1.0900 6.0249c 2.2998,2.2998 5.0907,2.2159 6.5280 0.7786c 1.3655,-1.3655 1.1140,-3.7252 -1.0301 -5.8692c -2.4914,-2.4914 -4.8990,-2.6232 -6.5879 -0.9343ZM 350.0071,53.9390 ZM 357.4694,53.5437 c 2.3956,2.3956 2.6112,5.5578 0.3234 7.8456l -0.2036,0.2036 c -0.0479,0.1916 -0.0000,0.4073 0.0240 0.5031c 0.4312,-0.3593 1.1499,-0.7187 1.9884 -0.8624c 0.8864,-0.1437 1.9764,-0.4671 2.4555 -0.9463c 0.3474,-0.3474 0.6588,-0.8984 0.5869 -1.4733l 0.3593,-0.0719 c 0.2036,1.1379 0.0120,1.9524 -0.7546 2.7190c -0.6708,0.6708 -1.4733,0.9463 -2.5034 1.1140c -1.0900,0.1557 -1.8925,0.3114 -2.3956 0.8145c -0.1797,0.1797 -0.5031,0.7905 -0.1916 1.5811l -0.6947,0.2396 c -0.0599,-0.2515 -0.2036,-1.1619 0.3953 -2.1920c 0.0958,-0.1677 0.1797,-0.3474 0.1677 -0.4552c -0.0120,-0.1318 -0.0120,-0.3713 0.0120 -0.5390c -2.0243,1.4254 -4.7433,1.3176 -6.8275 -0.7666c -2.3477,-2.3477 -2.5992,-5.7375 -0.4552 -7.8815c 2.1560,-2.1560 5.3422,-2.2040 7.7138 0.1677Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 299.7877,81.7160 ZM 306.1480,73.6309 l -2.7549,-2.7549 c -0.8025,-0.8025 -1.4134,-0.7905 -1.8686 -0.3354c -0.4671,0.4671 -0.5989,1.0780 -0.5390 2.2878c 0.1677,0.1198 0.3354,0.2875 0.5031 0.4552l 2.5034,2.5034 c 0.3474,0.3474 0.6468,0.4073 1.0421 0.0120l 0.2036,-0.2036 c 0.0599,-0.0599 0.1437,-0.0719 0.2036 -0.0120l 0.2276,0.2276 l -0.0000,0.0479 c 0.0000,-0.0000 -0.8265,0.7786 -1.2936 1.2457c -0.4312,0.4312 -1.2337,1.2816 -1.2337 1.2816l -0.0479,0.0000 l -0.2276,-0.2276 c -0.0599,-0.0599 -0.0599,-0.1318 0.0000 -0.1916l 0.2396,-0.2396 c 0.4073,-0.4073 0.3354,-0.6947 -0.0120 -1.0421l -2.7310,-2.7310 c -0.8025,-0.8025 -1.4493,-0.8025 -1.9045 -0.3474c -0.4192,0.4192 -0.5151,1.1140 -0.4911 2.2638l 2.9705,2.9705 c 0.3474,0.3474 0.6468,0.4073 1.0421 0.0120l 0.2276,-0.2276 c 0.0479,-0.0479 0.1318,-0.0599 0.1916 -0.0000l 0.2276,0.2276 l -0.0000,0.0479 c 0.0000,-0.0000 -0.8385,0.7905 -1.3056 1.2577c -0.4312,0.4312 -1.2218,1.2697 -1.2218 1.2697l -0.0479,0.0000 l -0.2276,-0.2276 c -0.0599,-0.0599 -0.0599,-0.1318 0.0000 -0.1916l 0.2276,-0.2276 c 0.4073,-0.4073 0.3354,-0.6947 -0.0120 -1.0421l -2.9825,-2.9825 c -0.6827,-0.6827 -0.8385,-0.6229 -0.9942 -0.4671c -0.1557,0.1557 -0.2875,0.3114 -0.4432 0.5630l -0.3953,-0.2755 c 0.6229,-0.8864 0.7426,-1.1020 0.8984 -1.5931c 0.0599,-0.1797 0.1198,-0.3114 0.2036 -0.3953l 0.1797,-0.1797 l 1.0062,1.0780 l 0.0359,-0.0359 c -0.0359,-1.1619 0.0240,-2.1081 0.7666 -2.8508c 0.6708,-0.6708 1.5811,-0.5989 2.1920 -0.1318c -0.0240,-1.4134 0.2276,-2.2878 0.8744 -2.9346c 1.0541,-1.0541 2.1081,-0.3593 3.1742 0.7067l 2.4914,2.4914 c 0.3474,0.3474 0.6468,0.4073 1.0421 0.0120l 0.2276,-0.2276 c 0.0479,-0.0479 0.1318,-0.0599 0.1916 -0.0000l 0.2276,0.2276 l -0.0000,0.0479 c 0.0000,-0.0000 -0.8385,0.7905 -1.3056 1.2577c -0.4312,0.4312 -1.2218,1.2697 -1.2218 1.2697l -0.0479,0.0000 l -0.2276,-0.2276 c -0.0599,-0.0599 -0.0599,-0.1318 0.0000 -0.1916l 0.2276,-0.2276 c 0.3953,-0.3953 0.3354,-0.6947 -0.0120 -1.0421ZM 308.8910,72.6127 ZM 306.9385,67.9293 l 2.2040,-2.2040 c 0.1198,-0.1198 0.1078,-0.2276 0.0000 -0.3354c -1.1140,-1.1140 -1.9644,-0.8385 -2.3956 -0.4073c -0.2755,0.2755 -1.0660,1.2816 0.1916 2.9466ZM 306.9385,67.9293 ZM 312.3047,66.9711 l 0.4312,-0.0479 c 0.1677,1.0780 -0.0958,2.2279 -0.9582 3.0903c -1.6410,1.6410 -3.5575,1.1140 -4.8631 -0.1916c -1.8207,-1.8207 -1.7129,-4.1085 -0.5749 -5.2464c 1.5811,-1.5811 3.1862,-0.7187 4.1923 0.2875c 0.1318,0.1318 0.1198,0.2875 -0.0120 0.4192l -3.1502,3.1502 c 0.0599,0.0838 0.1318,0.1557 0.2276 0.2515c 1.2218,1.2218 3.0185,1.3176 3.8809 0.4552c 0.6588,-0.6588 0.8624,-1.2936 0.8265 -2.1680ZM 313.4306,68.0731 ZM 316.3652,63.0064 l -3.1023,-3.1023 c -0.7426,-0.1677 -1.3176,-0.0958 -1.8805 0.4671c -0.2396,0.2396 -0.6947,0.7666 -0.5151 1.7129c 0.0838,0.4192 0.3953,1.1379 1.2577 2.0003c 1.5691,1.5691 3.1023,1.4733 3.7491 0.8265c 0.3953,-0.3953 0.4791,-0.9582 0.4911 -1.9045ZM 316.3652,63.0064 ZM 309.9690,54.8134 l 6.9233,6.9233 c 0.3593,0.3593 0.5749,0.5270 0.6827 0.5869c 0.1437,0.0719 0.3474,0.0120 0.4432 -0.0838c 0.1437,-0.1437 0.4073,-0.4073 0.5510 -0.6229l 0.3833,0.2875 c -0.5749,0.8145 -1.0660,1.5691 -1.1020 2.0363l -0.2875,0.2875 l -0.7905,-0.8624 c 0.0120,0.9223 -0.0958,1.7488 -0.7067 2.3597c -1.2936,1.2936 -3.1862,0.9822 -4.6594 -0.4911c -0.8864,-0.8864 -1.3895,-1.8686 -1.3895 -2.8987c 0.0240,-0.9343 0.2875,-1.7248 1.0780 -2.5154c 0.2396,-0.2396 0.8744,-0.6588 1.3056 -0.7786l -1.8326,-1.8326 c -0.6827,-0.6827 -0.9822,-0.7666 -1.2218 -0.5270l -0.3474,0.4432 c -0.0240,0.0240 -0.0838,0.0359 -0.1198 -0.0000l -0.3234,-0.2755 c 0.1916,-0.1916 0.5510,-0.6947 0.7187 -0.9343c 0.1797,-0.2755 0.2995,-0.4911 0.4312 -0.8385l 0.2635,-0.2635 ZM 319.3478,62.1559 ZM 313.4426,54.3822 c -0.3114,-0.3114 -0.3234,-0.8265 -0.0120 -1.1379c 0.3234,-0.3234 0.8385,-0.3114 1.1499 -0.0000c 0.3234,0.3234 0.3234,0.8265 -0.0000 1.1499c -0.3114,0.3114 -0.8145,0.3114 -1.1379 -0.0120ZM 313.4426,54.3822 ZM 320.5575,59.2213 c 0.3474,0.3474 0.6588,0.3953 1.0421 0.0120l 0.2276,-0.2276 c 0.0599,-0.0599 0.1437,-0.0719 0.2036 -0.0120l 0.2276,0.2276 l -0.0000,0.0479 c 0.0000,-0.0000 -0.8504,0.8025 -1.3176 1.2697c -0.4192,0.4192 -1.2098,1.2577 -1.2098 1.2577l -0.0479,0.0000 l -0.2276,-0.2276 c -0.0599,-0.0599 -0.0599,-0.1318 0.0000 -0.1916l 0.2276,-0.2276 c 0.3953,-0.3953 0.3354,-0.6947 -0.0120 -1.0421l -2.9825,-2.9825 c -0.6348,-0.6348 -0.8385,-0.6229 -1.0062 -0.4552c -0.1557,0.1557 -0.2875,0.3114 -0.4432 0.5630l -0.3953,-0.2755 c 0.6348,-0.8984 0.7187,-1.0780 0.8984 -1.5931c 0.0838,-0.1797 0.1198,-0.3114 0.2036 -0.3953l 0.1797,-0.1797 l 4.4319,4.4319 ZM 322.5100,58.9937 ZM 323.0610,52.5735 l -0.7067,1.1858 c -0.7307,1.3775 -0.3354,2.0842 0.2036 2.6232c 0.3713,0.3713 1.1140,0.7546 1.8686 -0.0000c 0.3593,-0.3593 0.5630,-1.2577 0.6109 -1.8326l -1.9764,-1.9764 ZM 323.0610,52.5735 ZM 326.9059,54.8853 c -0.4552,0.4552 -1.1140,0.2995 -1.4493 0.0599l -0.0838,0.4671 c -0.1677,0.9343 -0.2515,1.2577 -0.8025 1.8087c -0.8385,0.8385 -1.9285,0.9702 -2.8268 0.0719c -0.9103,-0.9103 -0.7546,-2.3118 0.0958 -3.7371l 0.8265,-1.3775 c -1.3535,-1.3535 -2.2279,-0.9822 -2.6352 -0.5749c -0.4552,0.4552 -0.7786,1.1858 -0.4073 1.5571c 0.1318,0.1318 0.2276,0.1797 0.2755 0.2036c 0.0719,0.0240 0.1677,0.0958 0.2515 0.1797c 0.1557,0.1557 0.2755,0.5151 -0.0719 0.8624c -0.2875,0.2875 -0.6708,0.2875 -0.9582 -0.0000c -0.6947,-0.6947 -0.1797,-2.4315 0.5869 -3.1981c 0.8744,-0.8744 2.2399,-1.5212 3.9408 0.1797l 1.7608,1.7608 c 0.7307,0.7307 1.0541,1.0301 1.3296 0.7546c 0.2635,-0.2635 0.0000,-0.6708 -0.2515 -0.9463l 0.3593,-0.2396 c 0.8025,0.9463 0.6708,1.5571 0.0599 2.1680ZM 327.9121,53.5916 ZM 331.4096,48.3692 l -2.6232,-2.6232 c -0.8385,-0.8385 -1.3775,-1.0900 -2.0123 -0.4552c -0.5270,0.5270 -0.7786,1.1858 -0.6708 2.5154l 2.9346,2.9346 c 0.3474,0.3474 0.6468,0.4073 1.0421 0.0120l 0.1677,-0.1677 c 0.0599,-0.0599 0.1318,-0.0599 0.1916 -0.0000l 0.2276,0.2276 l -0.0000,0.0479 c 0.0000,-0.0000 -0.7786,0.7307 -1.2457 1.1978c -0.4312,0.4312 -1.2218,1.2697 -1.2218 1.2697l -0.0479,0.0000 l -0.2276,-0.2276 c -0.0599,-0.0599 -0.0599,-0.1318 0.0000 -0.1916l 0.2276,-0.2276 c 0.4073,-0.4073 0.3354,-0.6947 -0.0120 -1.0421l -2.9825,-2.9825 c -0.6468,-0.6468 -0.8265,-0.6348 -0.9942 -0.4671c -0.1557,0.1557 -0.2875,0.3114 -0.4432 0.5630l -0.3953,-0.2755 c 0.4192,-0.5869 0.7187,-1.0062 0.8864 -1.5811c 0.0719,-0.1916 0.1318,-0.3234 0.2156 -0.4073l 0.1797,-0.1797 l 1.0301,1.1020 l 0.0359,-0.0359 c -0.1318,-1.6649 0.2755,-2.4076 0.8864 -3.0185c 1.0780,-1.0780 2.1321,-0.4791 3.1981 0.5869l 2.5393,2.5393 c 0.3474,0.3474 0.6588,0.3953 1.0421 0.0120l 0.2276,-0.2276 c 0.0599,-0.0599 0.1437,-0.0719 0.2036 -0.0120l 0.2276,0.2276 l -0.0000,0.0479 c 0.0000,-0.0000 -0.8504,0.8025 -1.3176 1.2697c -0.4192,0.4192 -1.1499,1.1978 -1.1499 1.1978l -0.0479,0.0000 l -0.2276,-0.2276 c -0.0599,-0.0599 -0.0599,-0.1318 0.0000 -0.1916l 0.1677,-0.1677 c 0.3953,-0.3953 0.3354,-0.6947 -0.0120 -1.0421Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 262.1193,81.7160 ZM 258.1545,72.5768 c -0.2995,0.2995 -1.0062,1.3415 -0.2755 2.0722c 0.2156,0.2156 0.5031,0.6708 0.1797 0.9942c -0.3114,0.3114 -0.6827,-0.0120 -0.7187 -0.0479c -0.3713,-0.3713 -0.9822,-1.9644 0.6827 -3.6293c 1.1619,-1.1619 2.2399,-0.7786 2.7190 -0.2995c 0.2995,0.2995 0.8025,0.9942 0.4073 2.7549c 0.7786,-0.5630 2.1560,-0.9582 3.4018 0.2875c 1.5811,1.5811 1.2337,3.6293 -0.1198 4.9829c -0.6827,0.6827 -1.9404,1.3415 -2.3956 0.8864c -0.1797,-0.1797 -0.2036,-0.5630 0.0359 -0.8025c 0.2276,-0.2276 0.4552,-0.2156 0.7187 -0.1677c 0.3354,0.0719 0.8385,0.1437 1.4134 -0.4312c 0.3953,-0.3953 1.1259,-1.9165 -0.3833 -3.4257c -1.2816,-1.2816 -2.3836,-0.5869 -3.0304 0.0599c -0.1078,0.1078 -0.2156,0.2635 -0.3234 0.4192l -0.4073,-0.3114 c 0.7666,-1.0780 0.6348,-2.7430 0.0838 -3.2940c -0.6827,-0.6827 -1.4973,-0.5390 -1.9884 -0.0479ZM 267.3656,76.4697 ZM 267.5693,74.5412 l -2.9825,-2.9825 c -0.5989,-0.5989 -0.8145,-0.6468 -0.9942 -0.4671c -0.1557,0.1557 -0.2875,0.3114 -0.4432 0.5630l -0.3953,-0.2755 c 0.6229,-0.8864 0.7187,-1.0541 0.8984 -1.5931c 0.0599,-0.1797 0.1198,-0.3114 0.2036 -0.3953l 0.1797,-0.1797 l 1.0421,1.1140 l 0.0359,-0.0359 c -0.1557,-0.7786 -0.2396,-1.9165 0.3234 -2.4794c 0.4911,-0.4911 0.9103,-0.4312 1.2218 -0.1198c 0.3114,0.3114 0.2995,0.7067 -0.0120 1.0181c -0.2396,0.2396 -0.4671,0.2755 -0.7067 0.2755c -0.1437,0.0000 -0.2635,0.0479 -0.3474 0.1318c -0.1318,0.1318 -0.1797,0.6109 -0.0599 1.3056c 0.0240,0.1916 0.1198,0.4073 0.2755 0.5630l 2.6591,2.6591 c 0.3474,0.3474 0.6468,0.4073 1.0421 0.0120l 0.3474,-0.3474 c 0.0599,-0.0599 0.1437,-0.0719 0.2036 -0.0120l 0.2276,0.2276 l -0.0000,0.0479 c 0.0000,-0.0000 -0.9702,0.9223 -1.4374 1.3895c -0.4312,0.4312 -1.2218,1.2697 -1.2218 1.2697l -0.0359,-0.0120 l -0.2276,-0.2276 c -0.0599,-0.0599 -0.0719,-0.1198 -0.0120 -0.1797l 0.2276,-0.2276 c 0.4073,-0.4073 0.3354,-0.6947 -0.0120 -1.0421ZM 271.5220,72.3133 ZM 274.4566,67.2466 l -3.1023,-3.1023 c -0.7426,-0.1677 -1.3176,-0.0958 -1.8805 0.4671c -0.2396,0.2396 -0.6947,0.7666 -0.5151 1.7129c 0.0838,0.4192 0.3953,1.1379 1.2577 2.0003c 1.5691,1.5691 3.1023,1.4733 3.7491 0.8265c 0.3953,-0.3953 0.4791,-0.9582 0.4911 -1.9045ZM 274.4566,67.2466 ZM 268.0604,59.0536 l 6.9233,6.9233 c 0.3593,0.3593 0.5749,0.5270 0.6827 0.5869c 0.1437,0.0719 0.3474,0.0120 0.4432 -0.0838c 0.1437,-0.1437 0.4073,-0.4073 0.5510 -0.6229l 0.3833,0.2875 c -0.5749,0.8145 -1.0660,1.5691 -1.1020 2.0363l -0.2875,0.2875 l -0.7905,-0.8624 c 0.0120,0.9223 -0.0958,1.7488 -0.7067 2.3597c -1.2936,1.2936 -3.1862,0.9822 -4.6594 -0.4911c -0.8864,-0.8864 -1.3895,-1.8686 -1.3895 -2.8987c 0.0240,-0.9343 0.2875,-1.7248 1.0780 -2.5154c 0.2396,-0.2396 0.8744,-0.6588 1.3056 -0.7786l -1.8326,-1.8326 c -0.6827,-0.6827 -0.9822,-0.7666 -1.2218 -0.5270l -0.3474,0.4432 c -0.0240,0.0240 -0.0838,0.0359 -0.1198 -0.0000l -0.3234,-0.2755 c 0.1916,-0.1916 0.5510,-0.6947 0.7187 -0.9343c 0.1797,-0.2755 0.2995,-0.4911 0.4312 -0.8385l 0.2635,-0.2635 ZM 280.4336,63.4016 ZM 276.9600,51.9267 c -1.1499,1.1499 -1.4254,3.5096 1.0900 6.0249c 2.2998,2.2998 5.0907,2.2159 6.5280 0.7786c 1.3655,-1.3655 1.1140,-3.7252 -1.0301 -5.8692c -2.4914,-2.4914 -4.8990,-2.6232 -6.5879 -0.9343ZM 276.9600,51.9267 ZM 284.4223,51.5314 c 2.3956,2.3956 2.6112,5.5578 0.3234 7.8456l -0.2036,0.2036 c -0.0479,0.1916 -0.0000,0.4073 0.0240 0.5031c 0.4312,-0.3593 1.1499,-0.7187 1.9884 -0.8624c 0.8864,-0.1437 1.9764,-0.4671 2.4555 -0.9463c 0.3474,-0.3474 0.6588,-0.8984 0.5869 -1.4733l 0.3593,-0.0719 c 0.2036,1.1379 0.0120,1.9524 -0.7546 2.7190c -0.6708,0.6708 -1.4733,0.9463 -2.5034 1.1140c -1.0900,0.1557 -1.8925,0.3114 -2.3956 0.8145c -0.1797,0.1797 -0.5031,0.7905 -0.1916 1.5811l -0.6947,0.2396 c -0.0599,-0.2515 -0.2036,-1.1619 0.3953 -2.1920c 0.0958,-0.1677 0.1797,-0.3474 0.1677 -0.4552c -0.0120,-0.1318 -0.0120,-0.3713 0.0120 -0.5390c -2.0243,1.4254 -4.7433,1.3176 -6.8275 -0.7666c -2.3477,-2.3477 -2.5992,-5.7375 -0.4552 -7.8815c 2.1560,-2.1560 5.3422,-2.2040 7.7138 0.1677Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 44.6374,81.7160 ZM 50.9977,73.6309 l -2.7549,-2.7549 c -0.8025,-0.8025 -1.4134,-0.7905 -1.8686 -0.3354c -0.4671,0.4671 -0.5989,1.0780 -0.5390 2.2878c 0.1677,0.1198 0.3354,0.2875 0.5031 0.4552l 2.5034,2.5034 c 0.3474,0.3474 0.6468,0.4073 1.0421 0.0120l 0.2036,-0.2036 c 0.0599,-0.0599 0.1437,-0.0719 0.2036 -0.0120l 0.2276,0.2276 l -0.0000,0.0479 c 0.0000,-0.0000 -0.8265,0.7786 -1.2936 1.2457c -0.4312,0.4312 -1.2337,1.2816 -1.2337 1.2816l -0.0479,0.0000 l -0.2276,-0.2276 c -0.0599,-0.0599 -0.0599,-0.1318 0.0000 -0.1916l 0.2396,-0.2396 c 0.4073,-0.4073 0.3354,-0.6947 -0.0120 -1.0421l -2.7310,-2.7310 c -0.8025,-0.8025 -1.4493,-0.8025 -1.9045 -0.3474c -0.4192,0.4192 -0.5151,1.1140 -0.4911 2.2638l 2.9705,2.9705 c 0.3474,0.3474 0.6468,0.4073 1.0421 0.0120l 0.2276,-0.2276 c 0.0479,-0.0479 0.1318,-0.0599 0.1916 -0.0000l 0.2276,0.2276 l -0.0000,0.0479 c 0.0000,-0.0000 -0.8385,0.7905 -1.3056 1.2577c -0.4312,0.4312 -1.2218,1.2697 -1.2218 1.2697l -0.0479,0.0000 l -0.2276,-0.2276 c -0.0599,-0.0599 -0.0599,-0.1318 0.0000 -0.1916l 0.2276,-0.2276 c 0.4073,-0.4073 0.3354,-0.6947 -0.0120 -1.0421l -2.9825,-2.9825 c -0.6827,-0.6827 -0.8385,-0.6229 -0.9942 -0.4671c -0.1557,0.1557 -0.2875,0.3114 -0.4432 0.5630l -0.3953,-0.2755 c 0.6229,-0.8864 0.7426,-1.1020 0.8984 -1.5931c 0.0599,-0.1797 0.1198,-0.3114 0.2036 -0.3953l 0.1797,-0.1797 l 1.0062,1.0780 l 0.0359,-0.0359 c -0.0359,-1.1619 0.0240,-2.1081 0.7666 -2.8508c 0.6708,-0.6708 1.5811,-0.5989 2.1920 -0.1318c -0.0240,-1.4134 0.2276,-2.2878 0.8744 -2.9346c 1.0541,-1.0541 2.1081,-0.3593 3.1742 0.7067l 2.4914,2.4914 c 0.3474,0.3474 0.6468,0.4073 1.0421 0.0120l 0.2276,-0.2276 c 0.0479,-0.0479 0.1318,-0.0599 0.1916 -0.0000l 0.2276,0.2276 l -0.0000,0.0479 c 0.0000,-0.0000 -0.8385,0.7905 -1.3056 1.2577c -0.4312,0.4312 -1.2218,1.2697 -1.2218 1.2697l -0.0479,0.0000 l -0.2276,-0.2276 c -0.0599,-0.0599 -0.0599,-0.1318 0.0000 -0.1916l 0.2276,-0.2276 c 0.3953,-0.3953 0.3354,-0.6947 -0.0120 -1.0421ZM 53.7407,72.6127 ZM 47.8355,64.8390 c -0.3114,-0.3114 -0.3234,-0.8265 -0.0120 -1.1379c 0.3234,-0.3234 0.8385,-0.3114 1.1499 -0.0000c 0.3234,0.3234 0.3234,0.8265 -0.0000 1.1499c -0.3114,0.3114 -0.8145,0.3114 -1.1379 -0.0120ZM 47.8355,64.8390 ZM 54.9505,69.6781 c 0.3474,0.3474 0.6588,0.3953 1.0421 0.0120l 0.2276,-0.2276 c 0.0599,-0.0599 0.1437,-0.0719 0.2036 -0.0120l 0.2276,0.2276 l -0.0000,0.0479 c 0.0000,-0.0000 -0.8504,0.8025 -1.3176 1.2697c -0.4192,0.4192 -1.2098,1.2577 -1.2098 1.2577l -0.0479,0.0000 l -0.2276,-0.2276 c -0.0599,-0.0599 -0.0599,-0.1318 0.0000 -0.1916l 0.2276,-0.2276 c 0.3953,-0.3953 0.3354,-0.6947 -0.0120 -1.0421l -2.9825,-2.9825 c -0.6348,-0.6348 -0.8385,-0.6229 -1.0062 -0.4552c -0.1557,0.1557 -0.2875,0.3114 -0.4432 0.5630l -0.3953,-0.2755 c 0.6348,-0.8984 0.7187,-1.0780 0.8984 -1.5931c 0.0838,-0.1797 0.1198,-0.3114 0.2036 -0.3953l 0.1797,-0.1797 l 4.4319,4.4319 ZM 56.9029,69.4505 ZM 60.4005,64.2281 l -2.6232,-2.6232 c -0.8385,-0.8385 -1.3775,-1.0900 -2.0123 -0.4552c -0.5270,0.5270 -0.7786,1.1858 -0.6708 2.5154l 2.9346,2.9346 c 0.3474,0.3474 0.6468,0.4073 1.0421 0.0120l 0.1677,-0.1677 c 0.0599,-0.0599 0.1318,-0.0599 0.1916 -0.0000l 0.2276,0.2276 l -0.0000,0.0479 c 0.0000,-0.0000 -0.7786,0.7307 -1.2457 1.1978c -0.4312,0.4312 -1.2218,1.2697 -1.2218 1.2697l -0.0479,0.0000 l -0.2276,-0.2276 c -0.0599,-0.0599 -0.0599,-0.1318 0.0000 -0.1916l 0.2276,-0.2276 c 0.4073,-0.4073 0.3354,-0.6947 -0.0120 -1.0421l -2.9825,-2.9825 c -0.6468,-0.6468 -0.8265,-0.6348 -0.9942 -0.4671c -0.1557,0.1557 -0.2875,0.3114 -0.4432 0.5630l -0.3953,-0.2755 c 0.4192,-0.5869 0.7187,-1.0062 0.8864 -1.5811c 0.0719,-0.1916 0.1318,-0.3234 0.2156 -0.4073l 0.1797,-0.1797 l 1.0301,1.1020 l 0.0359,-0.0359 c -0.1318,-1.6649 0.2755,-2.4076 0.8864 -3.0185c 1.0780,-1.0780 2.1321,-0.4791 3.1981 0.5869l 2.5393,2.5393 c 0.3474,0.3474 0.6588,0.3953 1.0421 0.0120l 0.2276,-0.2276 c 0.0599,-0.0599 0.1437,-0.0719 0.2036 -0.0120l 0.2276,0.2276 l -0.0000,0.0479 c 0.0000,-0.0000 -0.8504,0.8025 -1.3176 1.2697c -0.4192,0.4192 -1.1499,1.1978 -1.1499 1.1978l -0.0479,0.0000 l -0.2276,-0.2276 c -0.0599,-0.0599 -0.0599,-0.1318 0.0000 -0.1916l 0.1677,-0.1677 c 0.3953,-0.3953 0.3354,-0.6947 -0.0120 -1.0421Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 558.4270,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 394.4170,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 373.9455,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 360.3649,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 349.4548,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 340.2430,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 331.7830,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 324.2436,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 316.9766,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 309.8927,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 302.8520,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 295.8689,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 288.8309,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 281.3602,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 273.5684,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 265.1836,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 256.0084,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 245.2814,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7821,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 211.6116,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(128,128,128)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 47.7017,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 555.3626,113.3810 l -0.0000,-2.0429 h -510.7252 l -0.0000,2.0429 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 517.3990,134.8645 ZM 522.8620,127.3476 c 0.0000,-0.1482 0.0212,-0.3176 0.2117 -0.4235c 0.2329,-0.1694 0.6141,-0.3600 0.9317 -0.3600c 0.2753,-0.0000 0.2964,0.2329 0.2964 0.6564v 3.4091 h 1.7151 l -0.1270,0.9952 h -1.5881 v 1.7575 c 0.0000,0.5929 0.0847,0.8893 0.6988 0.8893h 0.5717 c 0.1270,-0.0000 0.1482,0.1059 0.1482 0.1482v 0.4658 c 0.0000,-0.0000 -1.3552,-0.0423 -2.2445 -0.0423c -0.8046,-0.0000 -2.0539,0.0423 -2.0539 0.0423v -0.4658 c 0.0000,-0.0423 0.0212,-0.1482 0.1482 -0.1482h 0.5717 c 0.6564,-0.0000 0.7199,-0.2753 0.7199 -0.8893v -1.7575 h -4.1502 c -0.0847,-0.0000 -0.1270,-0.0423 -0.1906 -0.1270l -0.1694,-0.2329 l -0.2541,-0.4447 c -0.0212,-0.0000 -0.0212,-0.0212 -0.0212 -0.0423c 0.0000,-0.0212 0.0212,-0.0423 0.0423 -0.0635c 1.3763,-1.5246 3.8114,-6.2464 4.5737 -7.9827c 0.0212,-0.0847 0.0635,-0.1059 0.1482 -0.1059c 0.0212,-0.0000 0.4870,0.1906 0.7411 0.2329c -0.9528,2.5621 -2.5197,5.3148 -4.0655 7.7710h 3.3455 v -3.2820 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.451461874467844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 522.0362,111.3381 v 3.0644 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.8093,134.8645 ZM 466.3830,123.2821 c -0.5294,-0.0000 -2.0751,0.2964 -2.0751 1.5881c 0.0000,0.3811 -0.1482,1.0375 -0.7199 1.0375c -0.5505,-0.0000 -0.5929,-0.6141 -0.5929 -0.6776c 0.0000,-0.6564 0.8681,-2.6044 3.8114 -2.6044c 2.0539,-0.0000 2.6680,1.2916 2.6680 2.1386c 0.0000,0.5294 -0.1694,1.5881 -2.0751 2.7950c 1.1858,0.1906 2.7527,1.0587 2.7527 3.2608c 0.0000,2.7950 -2.1174,4.2984 -4.5101 4.2984c -1.2069,-0.0000 -2.9009,-0.5294 -2.9009 -1.3340c 0.0000,-0.3176 0.3176,-0.6776 0.7411 -0.6776c 0.4023,-0.0000 0.5929,0.2117 0.7835 0.4870c 0.2329,0.3600 0.6141,0.8681 1.6304 0.8681c 0.6988,-0.0000 2.6891,-0.6988 2.6891 -3.3667c 0.0000,-2.2657 -1.5881,-2.6256 -2.7315 -2.6256c -0.1906,-0.0000 -0.4235,0.0423 -0.6564 0.0847l -0.0847,-0.6352 c 1.6304,-0.2753 2.9856,-1.8633 2.9856 -2.8374c 0.0000,-1.2069 -0.8470,-1.7998 -1.7151 -1.7998Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.451461874467844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 466.4465,111.3381 v 3.0644 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 406.2197,134.8645 ZM 407.4478,125.4843 c 0.0000,-1.2069 1.1646,-2.8585 3.3879 -2.8585c 1.6304,-0.0000 3.5361,0.6141 3.5361 3.0491c 0.0000,1.6093 -0.8258,2.4139 -1.9692 3.5149l -2.0116,1.9480 c -0.1059,0.1059 -1.5246,1.5034 -1.5246 2.4986h 3.5996 c 0.7199,-0.0000 1.1011,-0.3600 1.3975 -1.5246l 0.5294,0.0847 l -0.4235,2.6680 h -6.5429 c 0.0000,-1.1858 0.1906,-2.0963 2.1598 -4.1078l 1.4822,-1.4610 c 1.1858,-1.2069 1.6728,-2.2445 1.6728 -3.5361c 0.0000,-1.9269 -1.3128,-2.4774 -2.0327 -2.4774c -1.4610,-0.0000 -1.8633,0.7623 -1.8633 1.2705c 0.0000,0.1694 0.0423,0.3388 0.0847 0.4870c 0.0423,0.1482 0.0847,0.2964 0.0847 0.4658c 0.0000,0.5505 -0.4235,0.7623 -0.7623 0.7623c -0.4658,-0.0000 -0.8046,-0.3600 -0.8046 -0.7835Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.451461874467844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 410.8568,111.3381 v 3.0644 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 350.6300,134.8645 ZM 354.6108,124.7643 c -0.4023,-0.0000 -1.3340,0.3811 -1.7998 0.5929l -0.2541,-0.6564 c 1.8633,-0.8681 2.5833,-1.3128 3.6420 -2.0751h 0.4023 v 10.6507 c 0.0000,0.7623 0.1059,0.9740 0.8046 0.9740h 1.1011 c 0.0635,-0.0000 0.1694,0.0423 0.1694 0.1694v 0.4658 l -2.9009,-0.0423 l -2.9432,0.0423 v -0.4658 c 0.0212,-0.0635 0.0423,-0.1694 0.1694 -0.1694h 1.2705 c 0.8046,-0.0000 0.8046,-0.3600 0.8046 -0.9740v -7.2840 c 0.0000,-0.7199 0.0000,-1.2281 -0.4658 -1.2281Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.451461874467844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 355.2672,111.3381 v 3.0644 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 295.0403,134.8645 ZM 299.6775,123.3668 c -0.9105,-0.0000 -2.2445,0.8893 -2.2445 5.8229c 0.0000,1.7363 0.3176,5.2301 2.1810 5.2301c 0.3600,-0.0000 1.3763,-0.2329 1.8210 -1.8845c 0.2753,-1.0164 0.4235,-2.2868 0.4235 -4.1290c 0.0000,-2.6891 -0.6776,-4.1925 -1.2916 -4.7219c -0.2329,-0.2117 -0.5505,-0.3176 -0.8893 -0.3176ZM 299.6775,123.3668 ZM 299.5928,135.1186 c -2.2657,-0.0000 -3.7902,-2.9009 -3.7902 -6.1406c 0.0000,-3.9596 1.8845,-6.3523 3.8749 -6.3523c 0.9105,-0.0000 1.8210,0.5717 2.4350 1.3975c 0.8893,1.1858 1.3552,2.7738 1.3552 4.7642c 0.0000,4.7007 -2.3292,6.3311 -3.8749 6.3311Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.451461874467844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 299.6775,111.3381 v 3.0644 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 235.9251,134.8645 ZM 241.7269,129.8673 h -4.7854 c -0.1906,-0.0000 -0.3176,-0.1694 -0.3176 -0.3600c 0.0000,-0.3388 0.2753,-0.7835 0.5294 -0.7835h 4.8489 c 0.2117,-0.0000 0.2964,0.1906 0.2964 0.3811c 0.0000,0.2329 -0.2964,0.7623 -0.5717 0.7623ZM 242.9762,134.8645 ZM 246.9569,124.7643 c -0.4023,-0.0000 -1.3340,0.3811 -1.7998 0.5929l -0.2541,-0.6564 c 1.8633,-0.8681 2.5833,-1.3128 3.6420 -2.0751h 0.4023 v 10.6507 c 0.0000,0.7623 0.1059,0.9740 0.8046 0.9740h 1.1011 c 0.0635,-0.0000 0.1694,0.0423 0.1694 0.1694v 0.4658 l -2.9009,-0.0423 l -2.9432,0.0423 v -0.4658 c 0.0212,-0.0635 0.0423,-0.1694 0.1694 -0.1694h 1.2705 c 0.8046,-0.0000 0.8046,-0.3600 0.8046 -0.9740v -7.2840 c 0.0000,-0.7199 0.0000,-1.2281 -0.4658 -1.2281Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.451461874467844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 244.0878,111.3381 v 3.0644 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.3354,134.8645 ZM 186.1372,129.8673 h -4.7854 c -0.1906,-0.0000 -0.3176,-0.1694 -0.3176 -0.3600c 0.0000,-0.3388 0.2753,-0.7835 0.5294 -0.7835h 4.8489 c 0.2117,-0.0000 0.2964,0.1906 0.2964 0.3811c 0.0000,0.2329 -0.2964,0.7623 -0.5717 0.7623ZM 187.3865,134.8645 ZM 188.6146,125.4843 c 0.0000,-1.2069 1.1646,-2.8585 3.3879 -2.8585c 1.6304,-0.0000 3.5361,0.6141 3.5361 3.0491c 0.0000,1.6093 -0.8258,2.4139 -1.9692 3.5149l -2.0116,1.9480 c -0.1059,0.1059 -1.5246,1.5034 -1.5246 2.4986h 3.5996 c 0.7199,-0.0000 1.1011,-0.3600 1.3975 -1.5246l 0.5294,0.0847 l -0.4235,2.6680 h -6.5429 c 0.0000,-1.1858 0.1906,-2.0963 2.1598 -4.1078l 1.4822,-1.4610 c 1.1858,-1.2069 1.6728,-2.2445 1.6728 -3.5361c 0.0000,-1.9269 -1.3128,-2.4774 -2.0327 -2.4774c -1.4610,-0.0000 -1.8633,0.7623 -1.8633 1.2705c 0.0000,0.1694 0.0423,0.3388 0.0847 0.4870c 0.0423,0.1482 0.0847,0.2964 0.0847 0.4658c 0.0000,0.5505 -0.4235,0.7623 -0.7623 0.7623c -0.4658,-0.0000 -0.8046,-0.3600 -0.8046 -0.7835Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.451461874467844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 188.4981,111.3381 v 3.0644 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 124.7457,134.8645 ZM 130.5475,129.8673 h -4.7854 c -0.1906,-0.0000 -0.3176,-0.1694 -0.3176 -0.3600c 0.0000,-0.3388 0.2753,-0.7835 0.5294 -0.7835h 4.8489 c 0.2117,-0.0000 0.2964,0.1906 0.2964 0.3811c 0.0000,0.2329 -0.2964,0.7623 -0.5717 0.7623ZM 131.7968,134.8645 ZM 136.3705,123.2821 c -0.5294,-0.0000 -2.0751,0.2964 -2.0751 1.5881c 0.0000,0.3811 -0.1482,1.0375 -0.7199 1.0375c -0.5505,-0.0000 -0.5929,-0.6141 -0.5929 -0.6776c 0.0000,-0.6564 0.8681,-2.6044 3.8114 -2.6044c 2.0539,-0.0000 2.6680,1.2916 2.6680 2.1386c 0.0000,0.5294 -0.1694,1.5881 -2.0751 2.7950c 1.1858,0.1906 2.7527,1.0587 2.7527 3.2608c 0.0000,2.7950 -2.1174,4.2984 -4.5101 4.2984c -1.2069,-0.0000 -2.9009,-0.5294 -2.9009 -1.3340c 0.0000,-0.3176 0.3176,-0.6776 0.7411 -0.6776c 0.4023,-0.0000 0.5929,0.2117 0.7835 0.4870c 0.2329,0.3600 0.6141,0.8681 1.6304 0.8681c 0.6988,-0.0000 2.6891,-0.6988 2.6891 -3.3667c 0.0000,-2.2657 -1.5881,-2.6256 -2.7315 -2.6256c -0.1906,-0.0000 -0.4235,0.0423 -0.6564 0.0847l -0.0847,-0.6352 c 1.6304,-0.2753 2.9856,-1.8633 2.9856 -2.8374c 0.0000,-1.2069 -0.8470,-1.7998 -1.7151 -1.7998Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.451461874467844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 132.9085,111.3381 v 3.0644 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 69.1561,134.8645 ZM 74.9578,129.8673 h -4.7854 c -0.1906,-0.0000 -0.3176,-0.1694 -0.3176 -0.3600c 0.0000,-0.3388 0.2753,-0.7835 0.5294 -0.7835h 4.8489 c 0.2117,-0.0000 0.2964,0.1906 0.2964 0.3811c 0.0000,0.2329 -0.2964,0.7623 -0.5717 0.7623ZM 76.2071,134.8645 ZM 81.6701,127.3476 c 0.0000,-0.1482 0.0212,-0.3176 0.2117 -0.4235c 0.2329,-0.1694 0.6141,-0.3600 0.9317 -0.3600c 0.2753,-0.0000 0.2964,0.2329 0.2964 0.6564v 3.4091 h 1.7151 l -0.1270,0.9952 h -1.5881 v 1.7575 c 0.0000,0.5929 0.0847,0.8893 0.6988 0.8893h 0.5717 c 0.1270,-0.0000 0.1482,0.1059 0.1482 0.1482v 0.4658 c 0.0000,-0.0000 -1.3552,-0.0423 -2.2445 -0.0423c -0.8046,-0.0000 -2.0539,0.0423 -2.0539 0.0423v -0.4658 c 0.0000,-0.0423 0.0212,-0.1482 0.1482 -0.1482h 0.5717 c 0.6564,-0.0000 0.7199,-0.2753 0.7199 -0.8893v -1.7575 h -4.1502 c -0.0847,-0.0000 -0.1270,-0.0423 -0.1906 -0.1270l -0.1694,-0.2329 l -0.2541,-0.4447 c -0.0212,-0.0000 -0.0212,-0.0212 -0.0212 -0.0423c 0.0000,-0.0212 0.0212,-0.0423 0.0423 -0.0635c 1.3763,-1.5246 3.8114,-6.2464 4.5737 -7.9827c 0.0212,-0.0847 0.0635,-0.1059 0.1482 -0.1059c 0.0212,-0.0000 0.4870,0.1906 0.7411 0.2329c -0.9528,2.5621 -2.5197,5.3148 -4.0655 7.7710h 3.3455 v -3.2820 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.451461874467844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 77.3188,111.3381 v 3.0644 "/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 555.3626,107.2523 l -0.0000,-102.1450 h -510.7252 l -0.0000,102.1450 Z"/></g></svg>
+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" height="150.0000" stroke-opacity="1" viewBox="0 0 600 150" font-size="1" width="600.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1"><defs></defs><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 555.3626,81.7160 ZM 561.7229,73.6309 l -2.7549,-2.7549 c -0.8025,-0.8025 -1.4134,-0.7905 -1.8686 -0.3354c -0.4671,0.4671 -0.5989,1.0780 -0.5390 2.2878c 0.1677,0.1198 0.3354,0.2875 0.5031 0.4552l 2.5034,2.5034 c 0.3474,0.3474 0.6468,0.4073 1.0421 0.0120l 0.2036,-0.2036 c 0.0599,-0.0599 0.1437,-0.0719 0.2036 -0.0120l 0.2276,0.2276 l -0.0000,0.0479 c 0.0000,-0.0000 -0.8265,0.7786 -1.2936 1.2457c -0.4312,0.4312 -1.2337,1.2816 -1.2337 1.2816l -0.0479,0.0000 l -0.2276,-0.2276 c -0.0599,-0.0599 -0.0599,-0.1318 0.0000 -0.1916l 0.2396,-0.2396 c 0.4073,-0.4073 0.3354,-0.6947 -0.0120 -1.0421l -2.7310,-2.7310 c -0.8025,-0.8025 -1.4493,-0.8025 -1.9045 -0.3474c -0.4192,0.4192 -0.5151,1.1140 -0.4911 2.2638l 2.9705,2.9705 c 0.3474,0.3474 0.6468,0.4073 1.0421 0.0120l 0.2276,-0.2276 c 0.0479,-0.0479 0.1318,-0.0599 0.1916 -0.0000l 0.2276,0.2276 l -0.0000,0.0479 c 0.0000,-0.0000 -0.8385,0.7905 -1.3056 1.2577c -0.4312,0.4312 -1.2218,1.2697 -1.2218 1.2697l -0.0479,0.0000 l -0.2276,-0.2276 c -0.0599,-0.0599 -0.0599,-0.1318 0.0000 -0.1916l 0.2276,-0.2276 c 0.4073,-0.4073 0.3354,-0.6947 -0.0120 -1.0421l -2.9825,-2.9825 c -0.6827,-0.6827 -0.8385,-0.6229 -0.9942 -0.4671c -0.1557,0.1557 -0.2875,0.3114 -0.4432 0.5630l -0.3953,-0.2755 c 0.6229,-0.8864 0.7426,-1.1020 0.8984 -1.5931c 0.0599,-0.1797 0.1198,-0.3114 0.2036 -0.3953l 0.1797,-0.1797 l 1.0062,1.0780 l 0.0359,-0.0359 c -0.0359,-1.1619 0.0240,-2.1081 0.7666 -2.8508c 0.6708,-0.6708 1.5811,-0.5989 2.1920 -0.1318c -0.0240,-1.4134 0.2276,-2.2878 0.8744 -2.9346c 1.0541,-1.0541 2.1081,-0.3593 3.1742 0.7067l 2.4914,2.4914 c 0.3474,0.3474 0.6468,0.4073 1.0421 0.0120l 0.2276,-0.2276 c 0.0479,-0.0479 0.1318,-0.0599 0.1916 -0.0000l 0.2276,0.2276 l -0.0000,0.0479 c 0.0000,-0.0000 -0.8385,0.7905 -1.3056 1.2577c -0.4312,0.4312 -1.2218,1.2697 -1.2218 1.2697l -0.0479,0.0000 l -0.2276,-0.2276 c -0.0599,-0.0599 -0.0599,-0.1318 0.0000 -0.1916l 0.2276,-0.2276 c 0.3953,-0.3953 0.3354,-0.6947 -0.0120 -1.0421ZM 564.4659,72.6127 ZM 565.0169,66.1925 l -0.7067,1.1858 c -0.7307,1.3775 -0.3354,2.0842 0.2036 2.6232c 0.3713,0.3713 1.1140,0.7546 1.8686 -0.0000c 0.3593,-0.3593 0.5630,-1.2577 0.6109 -1.8326l -1.9764,-1.9764 ZM 565.0169,66.1925 ZM 568.8618,68.5043 c -0.4552,0.4552 -1.1140,0.2995 -1.4493 0.0599l -0.0838,0.4671 c -0.1677,0.9343 -0.2515,1.2577 -0.8025 1.8087c -0.8385,0.8385 -1.9285,0.9702 -2.8268 0.0719c -0.9103,-0.9103 -0.7546,-2.3118 0.0958 -3.7371l 0.8265,-1.3775 c -1.3535,-1.3535 -2.2279,-0.9822 -2.6352 -0.5749c -0.4552,0.4552 -0.7786,1.1858 -0.4073 1.5571c 0.1318,0.1318 0.2276,0.1797 0.2755 0.2036c 0.0719,0.0240 0.1677,0.0958 0.2515 0.1797c 0.1557,0.1557 0.2755,0.5151 -0.0719 0.8624c -0.2875,0.2875 -0.6708,0.2875 -0.9582 -0.0000c -0.6947,-0.6947 -0.1797,-2.4315 0.5869 -3.1981c 0.8744,-0.8744 2.2399,-1.5212 3.9408 0.1797l 1.7608,1.7608 c 0.7307,0.7307 1.0541,1.0301 1.3296 0.7546c 0.2635,-0.2635 0.0000,-0.6708 -0.2515 -0.9463l 0.3593,-0.2396 c 0.8025,0.9463 0.6708,1.5571 0.0599 2.1680ZM 569.8680,67.2107 ZM 567.4125,60.0358 c -0.2396,0.2396 -0.2276,0.3474 -0.1437 0.4312c 0.0599,0.0599 0.2156,0.1198 0.5630 0.2036l 1.8087,0.3474 c 0.1078,0.0359 0.1797,0.0359 0.2276 -0.0120c 0.0359,-0.0359 0.0359,-0.0838 0.0240 -0.1916l -0.3114,-1.8686 c -0.0359,-0.2995 -0.0958,-0.5031 -0.1916 -0.5989c -0.0958,-0.0958 -0.2276,-0.0599 -0.3953 0.1078l -0.1916,0.1916 c -0.0359,0.0359 -0.0958,0.0479 -0.1557 -0.0120l -0.2276,-0.2276 l 0.0000,-0.0719 c 0.0000,-0.0000 0.5869,-0.5390 0.9582 -0.9103c 0.3833,-0.3833 0.9463,-0.9942 0.9463 -0.9942l 0.0359,0.0120 l 0.2276,0.2276 c 0.0838,0.0838 0.0240,0.1677 -0.0479 0.2396c -0.4432,0.4432 -0.4791,0.7666 -0.3593 1.7727l 0.2755,2.2878 c 0.0120,0.0599 0.0240,0.0958 0.0479 0.1198c 0.0240,0.0240 0.0719,0.0479 0.1318 0.0599l 2.5992,0.4432 c 1.3296,0.2276 1.4973,0.0838 1.8805 -0.2995c 0.1198,-0.1198 0.1916,-0.1437 0.2635 -0.0719l 0.2276,0.2276 l 0.0120,0.0359 c 0.0000,-0.0000 -0.6708,0.6229 -1.0780 1.0301c -0.4911,0.4911 -1.2218,1.2697 -1.2218 1.2697l -0.0479,0.0000 l -0.2276,-0.2276 c -0.0599,-0.0599 -0.0719,-0.1198 -0.0120 -0.1797l 0.1437,-0.1437 c 0.1916,-0.1916 0.2396,-0.3114 0.1437 -0.4073c -0.1078,-0.1078 -0.4192,-0.1557 -0.8624 -0.2156l -1.6530,-0.2635 c -0.1078,-0.0120 -0.1557,-0.0120 -0.1916 0.0240c -0.0240,0.0240 -0.0240,0.0958 -0.0000 0.2156l 0.3354,1.8446 c 0.0599,0.4192 0.0838,0.5151 0.1677 0.5989c 0.0838,0.0838 0.2036,0.0599 0.3833 -0.1198l 0.1677,-0.1677 c 0.0599,-0.0599 0.1198,-0.0479 0.1797 0.0120l 0.2276,0.2276 l -0.0000,0.0479 c 0.0000,-0.0000 -0.6468,0.5989 -1.0301 0.9822c -0.3474,0.3474 -0.8744,0.9223 -0.8744 0.9223l -0.0479,0.0000 l -0.2036,-0.2036 c -0.0719,-0.0719 -0.0719,-0.1677 0.0359 -0.2755c 0.2875,-0.2875 0.5031,-0.6229 0.3593 -1.7727l -0.2875,-2.2998 c -0.0120,-0.0359 -0.0240,-0.0719 -0.0599 -0.1078c -0.0359,-0.0359 -0.0719,-0.0479 -0.1318 -0.0599l -2.5633,-0.4791 c -0.8265,-0.1557 -1.3296,-0.2276 -1.7488 0.1916c -0.0838,0.0838 -0.2036,0.1318 -0.2515 0.0838l -0.2276,-0.2276 l -0.0120,-0.0599 l 0.9702,-0.9223 l 1.3056,-1.3535 l 0.0719,-0.0000 l 0.2156,0.2156 c 0.0599,0.0599 0.0479,0.1437 -0.0000 0.1916l -0.1797,0.1797 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 337.1786,81.7160 ZM 333.7170,73.7507 c -0.2276,0.2276 -0.5390,0.9702 -0.6827 1.3535l -0.5151,-0.2276 c 0.5630,-1.5452 0.7187,-2.2040 0.8864 -3.2341l 0.2276,-0.2276 l 6.0249,6.0249 c 0.4312,0.4312 0.6109,0.4911 1.0062 0.0958l 0.6229,-0.6229 c 0.0359,-0.0359 0.1198,-0.0719 0.1916 -0.0000l 0.2635,0.2635 l -1.6649,1.6170 l -1.6410,1.6889 l -0.2635,-0.2635 c -0.0240,-0.0479 -0.0719,-0.1198 0.0000 -0.1916l 0.7187,-0.7187 c 0.4552,-0.4552 0.2515,-0.6588 -0.0958 -1.0062l -4.1204,-4.1204 c -0.4073,-0.4073 -0.6947,-0.6947 -0.9582 -0.4312ZM 342.4250,76.4697 ZM 341.2631,74.2777 l 0.3114,-0.3354 c 0.3354,0.2635 1.0421,0.7067 1.5811 0.7187c 0.2515,0.0120 0.7905,-0.0958 1.2337 -0.5390c 0.4192,-0.4192 0.7067,-1.3775 0.1198 -1.9644c -0.5151,-0.5151 -1.1499,-0.5749 -2.5034 -0.0359c -1.2577,0.4911 -1.9644,0.6947 -2.8627 -0.2036c -0.8025,-0.8025 -0.6708,-2.0842 0.2755 -3.0304c 0.5989,-0.5989 1.1499,-0.9343 1.7129 -1.1140c 0.4552,0.3114 0.8984,0.6827 1.3535 1.0900l -0.3114,0.3354 c -1.2337,-0.7307 -2.1441,-0.2036 -2.3956 0.0479c -0.4552,0.4552 -0.7426,1.1020 -0.0838 1.7608c 0.4791,0.4791 0.9463,0.4911 1.8446 0.0719c 1.3296,-0.6109 2.5393,-0.9582 3.4976 -0.0000c 1.1858,1.1858 0.2755,2.7909 -0.2875 3.3538c -0.4192,0.4192 -0.8145,0.7187 -1.2098 0.9463c -0.0958,0.0719 -0.1677,0.1198 -0.2515 0.2036c -0.0599,0.0599 -0.1437,0.1677 -0.2396 0.3114c -0.5031,-0.5031 -1.1499,-1.0780 -1.7847 -1.6170ZM 346.8689,72.0258 ZM 344.1498,65.3780 l 3.0664,3.0664 c 0.7426,0.7426 1.1738,1.0301 1.4973 0.7067c 0.3114,-0.3114 0.4552,-0.6468 0.5270 -1.1978l 0.4192,-0.0120 c 0.0599,0.9942 -0.1557,1.7368 -0.7067 2.2878c -0.5510,0.5510 -1.2098,0.5390 -2.0602 -0.3114l -3.6413,-3.6413 l -0.7786,0.7786 c -0.0359,0.0359 -0.0599,0.0359 -0.0958 0.0000l -0.3713,-0.3713 c -0.0359,-0.0359 -0.0359,-0.0599 -0.0120 -0.0838c 0.8025,-0.8025 0.5270,-1.4613 -0.3833 -2.3716l -0.2276,-0.2276 l 0.4552,-0.9343 l 1.8446,1.8446 l 1.3176,-1.3176 c 0.0599,-0.0599 0.1198,-0.0719 0.1677 -0.0240l 0.2396,0.2396 c 0.1078,0.1078 -0.0120,0.3234 -0.1318 0.4432l -1.1259,1.1259 ZM 353.4807,65.4140 ZM 350.0071,53.9390 c -1.1499,1.1499 -1.4254,3.5096 1.0900 6.0249c 2.2998,2.2998 5.0907,2.2159 6.5280 0.7786c 1.3655,-1.3655 1.1140,-3.7252 -1.0301 -5.8692c -2.4914,-2.4914 -4.8990,-2.6232 -6.5879 -0.9343ZM 350.0071,53.9390 ZM 357.4694,53.5437 c 2.3956,2.3956 2.6112,5.5578 0.3234 7.8456l -0.2036,0.2036 c -0.0479,0.1916 -0.0000,0.4073 0.0240 0.5031c 0.4312,-0.3593 1.1499,-0.7187 1.9884 -0.8624c 0.8864,-0.1437 1.9764,-0.4671 2.4555 -0.9463c 0.3474,-0.3474 0.6588,-0.8984 0.5869 -1.4733l 0.3593,-0.0719 c 0.2036,1.1379 0.0120,1.9524 -0.7546 2.7190c -0.6708,0.6708 -1.4733,0.9463 -2.5034 1.1140c -1.0900,0.1557 -1.8925,0.3114 -2.3956 0.8145c -0.1797,0.1797 -0.5031,0.7905 -0.1916 1.5811l -0.6947,0.2396 c -0.0599,-0.2515 -0.2036,-1.1619 0.3953 -2.1920c 0.0958,-0.1677 0.1797,-0.3474 0.1677 -0.4552c -0.0120,-0.1318 -0.0120,-0.3713 0.0120 -0.5390c -2.0243,1.4254 -4.7433,1.3176 -6.8275 -0.7666c -2.3477,-2.3477 -2.5992,-5.7375 -0.4552 -7.8815c 2.1560,-2.1560 5.3422,-2.2040 7.7138 0.1677Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 299.7877,81.7160 ZM 306.1480,73.6309 l -2.7549,-2.7549 c -0.8025,-0.8025 -1.4134,-0.7905 -1.8686 -0.3354c -0.4671,0.4671 -0.5989,1.0780 -0.5390 2.2878c 0.1677,0.1198 0.3354,0.2875 0.5031 0.4552l 2.5034,2.5034 c 0.3474,0.3474 0.6468,0.4073 1.0421 0.0120l 0.2036,-0.2036 c 0.0599,-0.0599 0.1437,-0.0719 0.2036 -0.0120l 0.2276,0.2276 l -0.0000,0.0479 c 0.0000,-0.0000 -0.8265,0.7786 -1.2936 1.2457c -0.4312,0.4312 -1.2337,1.2816 -1.2337 1.2816l -0.0479,0.0000 l -0.2276,-0.2276 c -0.0599,-0.0599 -0.0599,-0.1318 0.0000 -0.1916l 0.2396,-0.2396 c 0.4073,-0.4073 0.3354,-0.6947 -0.0120 -1.0421l -2.7310,-2.7310 c -0.8025,-0.8025 -1.4493,-0.8025 -1.9045 -0.3474c -0.4192,0.4192 -0.5151,1.1140 -0.4911 2.2638l 2.9705,2.9705 c 0.3474,0.3474 0.6468,0.4073 1.0421 0.0120l 0.2276,-0.2276 c 0.0479,-0.0479 0.1318,-0.0599 0.1916 -0.0000l 0.2276,0.2276 l -0.0000,0.0479 c 0.0000,-0.0000 -0.8385,0.7905 -1.3056 1.2577c -0.4312,0.4312 -1.2218,1.2697 -1.2218 1.2697l -0.0479,0.0000 l -0.2276,-0.2276 c -0.0599,-0.0599 -0.0599,-0.1318 0.0000 -0.1916l 0.2276,-0.2276 c 0.4073,-0.4073 0.3354,-0.6947 -0.0120 -1.0421l -2.9825,-2.9825 c -0.6827,-0.6827 -0.8385,-0.6229 -0.9942 -0.4671c -0.1557,0.1557 -0.2875,0.3114 -0.4432 0.5630l -0.3953,-0.2755 c 0.6229,-0.8864 0.7426,-1.1020 0.8984 -1.5931c 0.0599,-0.1797 0.1198,-0.3114 0.2036 -0.3953l 0.1797,-0.1797 l 1.0062,1.0780 l 0.0359,-0.0359 c -0.0359,-1.1619 0.0240,-2.1081 0.7666 -2.8508c 0.6708,-0.6708 1.5811,-0.5989 2.1920 -0.1318c -0.0240,-1.4134 0.2276,-2.2878 0.8744 -2.9346c 1.0541,-1.0541 2.1081,-0.3593 3.1742 0.7067l 2.4914,2.4914 c 0.3474,0.3474 0.6468,0.4073 1.0421 0.0120l 0.2276,-0.2276 c 0.0479,-0.0479 0.1318,-0.0599 0.1916 -0.0000l 0.2276,0.2276 l -0.0000,0.0479 c 0.0000,-0.0000 -0.8385,0.7905 -1.3056 1.2577c -0.4312,0.4312 -1.2218,1.2697 -1.2218 1.2697l -0.0479,0.0000 l -0.2276,-0.2276 c -0.0599,-0.0599 -0.0599,-0.1318 0.0000 -0.1916l 0.2276,-0.2276 c 0.3953,-0.3953 0.3354,-0.6947 -0.0120 -1.0421ZM 308.8910,72.6127 ZM 306.9385,67.9293 l 2.2040,-2.2040 c 0.1198,-0.1198 0.1078,-0.2276 0.0000 -0.3354c -1.1140,-1.1140 -1.9644,-0.8385 -2.3956 -0.4073c -0.2755,0.2755 -1.0660,1.2816 0.1916 2.9466ZM 306.9385,67.9293 ZM 312.3047,66.9711 l 0.4312,-0.0479 c 0.1677,1.0780 -0.0958,2.2279 -0.9582 3.0903c -1.6410,1.6410 -3.5575,1.1140 -4.8631 -0.1916c -1.8207,-1.8207 -1.7129,-4.1085 -0.5749 -5.2464c 1.5811,-1.5811 3.1862,-0.7187 4.1923 0.2875c 0.1318,0.1318 0.1198,0.2875 -0.0120 0.4192l -3.1502,3.1502 c 0.0599,0.0838 0.1318,0.1557 0.2276 0.2515c 1.2218,1.2218 3.0185,1.3176 3.8809 0.4552c 0.6588,-0.6588 0.8624,-1.2936 0.8265 -2.1680ZM 313.4306,68.0731 ZM 316.3652,63.0064 l -3.1023,-3.1023 c -0.7426,-0.1677 -1.3176,-0.0958 -1.8805 0.4671c -0.2396,0.2396 -0.6947,0.7666 -0.5151 1.7129c 0.0838,0.4192 0.3953,1.1379 1.2577 2.0003c 1.5691,1.5691 3.1023,1.4733 3.7491 0.8265c 0.3953,-0.3953 0.4791,-0.9582 0.4911 -1.9045ZM 316.3652,63.0064 ZM 309.9690,54.8134 l 6.9233,6.9233 c 0.3593,0.3593 0.5749,0.5270 0.6827 0.5869c 0.1437,0.0719 0.3474,0.0120 0.4432 -0.0838c 0.1437,-0.1437 0.4073,-0.4073 0.5510 -0.6229l 0.3833,0.2875 c -0.5749,0.8145 -1.0660,1.5691 -1.1020 2.0363l -0.2875,0.2875 l -0.7905,-0.8624 c 0.0120,0.9223 -0.0958,1.7488 -0.7067 2.3597c -1.2936,1.2936 -3.1862,0.9822 -4.6594 -0.4911c -0.8864,-0.8864 -1.3895,-1.8686 -1.3895 -2.8987c 0.0240,-0.9343 0.2875,-1.7248 1.0780 -2.5154c 0.2396,-0.2396 0.8744,-0.6588 1.3056 -0.7786l -1.8326,-1.8326 c -0.6827,-0.6827 -0.9822,-0.7666 -1.2218 -0.5270l -0.3474,0.4432 c -0.0240,0.0240 -0.0838,0.0359 -0.1198 -0.0000l -0.3234,-0.2755 c 0.1916,-0.1916 0.5510,-0.6947 0.7187 -0.9343c 0.1797,-0.2755 0.2995,-0.4911 0.4312 -0.8385l 0.2635,-0.2635 ZM 319.3478,62.1559 ZM 313.4426,54.3822 c -0.3114,-0.3114 -0.3234,-0.8265 -0.0120 -1.1379c 0.3234,-0.3234 0.8385,-0.3114 1.1499 -0.0000c 0.3234,0.3234 0.3234,0.8265 -0.0000 1.1499c -0.3114,0.3114 -0.8145,0.3114 -1.1379 -0.0120ZM 313.4426,54.3822 ZM 320.5575,59.2213 c 0.3474,0.3474 0.6588,0.3953 1.0421 0.0120l 0.2276,-0.2276 c 0.0599,-0.0599 0.1437,-0.0719 0.2036 -0.0120l 0.2276,0.2276 l -0.0000,0.0479 c 0.0000,-0.0000 -0.8504,0.8025 -1.3176 1.2697c -0.4192,0.4192 -1.2098,1.2577 -1.2098 1.2577l -0.0479,0.0000 l -0.2276,-0.2276 c -0.0599,-0.0599 -0.0599,-0.1318 0.0000 -0.1916l 0.2276,-0.2276 c 0.3953,-0.3953 0.3354,-0.6947 -0.0120 -1.0421l -2.9825,-2.9825 c -0.6348,-0.6348 -0.8385,-0.6229 -1.0062 -0.4552c -0.1557,0.1557 -0.2875,0.3114 -0.4432 0.5630l -0.3953,-0.2755 c 0.6348,-0.8984 0.7187,-1.0780 0.8984 -1.5931c 0.0838,-0.1797 0.1198,-0.3114 0.2036 -0.3953l 0.1797,-0.1797 l 4.4319,4.4319 ZM 322.5100,58.9937 ZM 323.0610,52.5735 l -0.7067,1.1858 c -0.7307,1.3775 -0.3354,2.0842 0.2036 2.6232c 0.3713,0.3713 1.1140,0.7546 1.8686 -0.0000c 0.3593,-0.3593 0.5630,-1.2577 0.6109 -1.8326l -1.9764,-1.9764 ZM 323.0610,52.5735 ZM 326.9059,54.8853 c -0.4552,0.4552 -1.1140,0.2995 -1.4493 0.0599l -0.0838,0.4671 c -0.1677,0.9343 -0.2515,1.2577 -0.8025 1.8087c -0.8385,0.8385 -1.9285,0.9702 -2.8268 0.0719c -0.9103,-0.9103 -0.7546,-2.3118 0.0958 -3.7371l 0.8265,-1.3775 c -1.3535,-1.3535 -2.2279,-0.9822 -2.6352 -0.5749c -0.4552,0.4552 -0.7786,1.1858 -0.4073 1.5571c 0.1318,0.1318 0.2276,0.1797 0.2755 0.2036c 0.0719,0.0240 0.1677,0.0958 0.2515 0.1797c 0.1557,0.1557 0.2755,0.5151 -0.0719 0.8624c -0.2875,0.2875 -0.6708,0.2875 -0.9582 -0.0000c -0.6947,-0.6947 -0.1797,-2.4315 0.5869 -3.1981c 0.8744,-0.8744 2.2399,-1.5212 3.9408 0.1797l 1.7608,1.7608 c 0.7307,0.7307 1.0541,1.0301 1.3296 0.7546c 0.2635,-0.2635 0.0000,-0.6708 -0.2515 -0.9463l 0.3593,-0.2396 c 0.8025,0.9463 0.6708,1.5571 0.0599 2.1680ZM 327.9121,53.5916 ZM 331.4096,48.3692 l -2.6232,-2.6232 c -0.8385,-0.8385 -1.3775,-1.0900 -2.0123 -0.4552c -0.5270,0.5270 -0.7786,1.1858 -0.6708 2.5154l 2.9346,2.9346 c 0.3474,0.3474 0.6468,0.4073 1.0421 0.0120l 0.1677,-0.1677 c 0.0599,-0.0599 0.1318,-0.0599 0.1916 -0.0000l 0.2276,0.2276 l -0.0000,0.0479 c 0.0000,-0.0000 -0.7786,0.7307 -1.2457 1.1978c -0.4312,0.4312 -1.2218,1.2697 -1.2218 1.2697l -0.0479,0.0000 l -0.2276,-0.2276 c -0.0599,-0.0599 -0.0599,-0.1318 0.0000 -0.1916l 0.2276,-0.2276 c 0.4073,-0.4073 0.3354,-0.6947 -0.0120 -1.0421l -2.9825,-2.9825 c -0.6468,-0.6468 -0.8265,-0.6348 -0.9942 -0.4671c -0.1557,0.1557 -0.2875,0.3114 -0.4432 0.5630l -0.3953,-0.2755 c 0.4192,-0.5869 0.7187,-1.0062 0.8864 -1.5811c 0.0719,-0.1916 0.1318,-0.3234 0.2156 -0.4073l 0.1797,-0.1797 l 1.0301,1.1020 l 0.0359,-0.0359 c -0.1318,-1.6649 0.2755,-2.4076 0.8864 -3.0185c 1.0780,-1.0780 2.1321,-0.4791 3.1981 0.5869l 2.5393,2.5393 c 0.3474,0.3474 0.6588,0.3953 1.0421 0.0120l 0.2276,-0.2276 c 0.0599,-0.0599 0.1437,-0.0719 0.2036 -0.0120l 0.2276,0.2276 l -0.0000,0.0479 c 0.0000,-0.0000 -0.8504,0.8025 -1.3176 1.2697c -0.4192,0.4192 -1.1499,1.1978 -1.1499 1.1978l -0.0479,0.0000 l -0.2276,-0.2276 c -0.0599,-0.0599 -0.0599,-0.1318 0.0000 -0.1916l 0.1677,-0.1677 c 0.3953,-0.3953 0.3354,-0.6947 -0.0120 -1.0421Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 262.1193,81.7160 ZM 258.1545,72.5768 c -0.2995,0.2995 -1.0062,1.3415 -0.2755 2.0722c 0.2156,0.2156 0.5031,0.6708 0.1797 0.9942c -0.3114,0.3114 -0.6827,-0.0120 -0.7187 -0.0479c -0.3713,-0.3713 -0.9822,-1.9644 0.6827 -3.6293c 1.1619,-1.1619 2.2399,-0.7786 2.7190 -0.2995c 0.2995,0.2995 0.8025,0.9942 0.4073 2.7549c 0.7786,-0.5630 2.1560,-0.9582 3.4018 0.2875c 1.5811,1.5811 1.2337,3.6293 -0.1198 4.9829c -0.6827,0.6827 -1.9404,1.3415 -2.3956 0.8864c -0.1797,-0.1797 -0.2036,-0.5630 0.0359 -0.8025c 0.2276,-0.2276 0.4552,-0.2156 0.7187 -0.1677c 0.3354,0.0719 0.8385,0.1437 1.4134 -0.4312c 0.3953,-0.3953 1.1259,-1.9165 -0.3833 -3.4257c -1.2816,-1.2816 -2.3836,-0.5869 -3.0304 0.0599c -0.1078,0.1078 -0.2156,0.2635 -0.3234 0.4192l -0.4073,-0.3114 c 0.7666,-1.0780 0.6348,-2.7430 0.0838 -3.2940c -0.6827,-0.6827 -1.4973,-0.5390 -1.9884 -0.0479ZM 267.3656,76.4697 ZM 267.5693,74.5412 l -2.9825,-2.9825 c -0.5989,-0.5989 -0.8145,-0.6468 -0.9942 -0.4671c -0.1557,0.1557 -0.2875,0.3114 -0.4432 0.5630l -0.3953,-0.2755 c 0.6229,-0.8864 0.7187,-1.0541 0.8984 -1.5931c 0.0599,-0.1797 0.1198,-0.3114 0.2036 -0.3953l 0.1797,-0.1797 l 1.0421,1.1140 l 0.0359,-0.0359 c -0.1557,-0.7786 -0.2396,-1.9165 0.3234 -2.4794c 0.4911,-0.4911 0.9103,-0.4312 1.2218 -0.1198c 0.3114,0.3114 0.2995,0.7067 -0.0120 1.0181c -0.2396,0.2396 -0.4671,0.2755 -0.7067 0.2755c -0.1437,0.0000 -0.2635,0.0479 -0.3474 0.1318c -0.1318,0.1318 -0.1797,0.6109 -0.0599 1.3056c 0.0240,0.1916 0.1198,0.4073 0.2755 0.5630l 2.6591,2.6591 c 0.3474,0.3474 0.6468,0.4073 1.0421 0.0120l 0.3474,-0.3474 c 0.0599,-0.0599 0.1437,-0.0719 0.2036 -0.0120l 0.2276,0.2276 l -0.0000,0.0479 c 0.0000,-0.0000 -0.9702,0.9223 -1.4374 1.3895c -0.4312,0.4312 -1.2218,1.2697 -1.2218 1.2697l -0.0359,-0.0120 l -0.2276,-0.2276 c -0.0599,-0.0599 -0.0719,-0.1198 -0.0120 -0.1797l 0.2276,-0.2276 c 0.4073,-0.4073 0.3354,-0.6947 -0.0120 -1.0421ZM 271.5220,72.3133 ZM 274.4566,67.2466 l -3.1023,-3.1023 c -0.7426,-0.1677 -1.3176,-0.0958 -1.8805 0.4671c -0.2396,0.2396 -0.6947,0.7666 -0.5151 1.7129c 0.0838,0.4192 0.3953,1.1379 1.2577 2.0003c 1.5691,1.5691 3.1023,1.4733 3.7491 0.8265c 0.3953,-0.3953 0.4791,-0.9582 0.4911 -1.9045ZM 274.4566,67.2466 ZM 268.0604,59.0536 l 6.9233,6.9233 c 0.3593,0.3593 0.5749,0.5270 0.6827 0.5869c 0.1437,0.0719 0.3474,0.0120 0.4432 -0.0838c 0.1437,-0.1437 0.4073,-0.4073 0.5510 -0.6229l 0.3833,0.2875 c -0.5749,0.8145 -1.0660,1.5691 -1.1020 2.0363l -0.2875,0.2875 l -0.7905,-0.8624 c 0.0120,0.9223 -0.0958,1.7488 -0.7067 2.3597c -1.2936,1.2936 -3.1862,0.9822 -4.6594 -0.4911c -0.8864,-0.8864 -1.3895,-1.8686 -1.3895 -2.8987c 0.0240,-0.9343 0.2875,-1.7248 1.0780 -2.5154c 0.2396,-0.2396 0.8744,-0.6588 1.3056 -0.7786l -1.8326,-1.8326 c -0.6827,-0.6827 -0.9822,-0.7666 -1.2218 -0.5270l -0.3474,0.4432 c -0.0240,0.0240 -0.0838,0.0359 -0.1198 -0.0000l -0.3234,-0.2755 c 0.1916,-0.1916 0.5510,-0.6947 0.7187 -0.9343c 0.1797,-0.2755 0.2995,-0.4911 0.4312 -0.8385l 0.2635,-0.2635 ZM 280.4336,63.4016 ZM 276.9600,51.9267 c -1.1499,1.1499 -1.4254,3.5096 1.0900 6.0249c 2.2998,2.2998 5.0907,2.2159 6.5280 0.7786c 1.3655,-1.3655 1.1140,-3.7252 -1.0301 -5.8692c -2.4914,-2.4914 -4.8990,-2.6232 -6.5879 -0.9343ZM 276.9600,51.9267 ZM 284.4223,51.5314 c 2.3956,2.3956 2.6112,5.5578 0.3234 7.8456l -0.2036,0.2036 c -0.0479,0.1916 -0.0000,0.4073 0.0240 0.5031c 0.4312,-0.3593 1.1499,-0.7187 1.9884 -0.8624c 0.8864,-0.1437 1.9764,-0.4671 2.4555 -0.9463c 0.3474,-0.3474 0.6588,-0.8984 0.5869 -1.4733l 0.3593,-0.0719 c 0.2036,1.1379 0.0120,1.9524 -0.7546 2.7190c -0.6708,0.6708 -1.4733,0.9463 -2.5034 1.1140c -1.0900,0.1557 -1.8925,0.3114 -2.3956 0.8145c -0.1797,0.1797 -0.5031,0.7905 -0.1916 1.5811l -0.6947,0.2396 c -0.0599,-0.2515 -0.2036,-1.1619 0.3953 -2.1920c 0.0958,-0.1677 0.1797,-0.3474 0.1677 -0.4552c -0.0120,-0.1318 -0.0120,-0.3713 0.0120 -0.5390c -2.0243,1.4254 -4.7433,1.3176 -6.8275 -0.7666c -2.3477,-2.3477 -2.5992,-5.7375 -0.4552 -7.8815c 2.1560,-2.1560 5.3422,-2.2040 7.7138 0.1677Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 44.6374,81.7160 ZM 50.9977,73.6309 l -2.7549,-2.7549 c -0.8025,-0.8025 -1.4134,-0.7905 -1.8686 -0.3354c -0.4671,0.4671 -0.5989,1.0780 -0.5390 2.2878c 0.1677,0.1198 0.3354,0.2875 0.5031 0.4552l 2.5034,2.5034 c 0.3474,0.3474 0.6468,0.4073 1.0421 0.0120l 0.2036,-0.2036 c 0.0599,-0.0599 0.1437,-0.0719 0.2036 -0.0120l 0.2276,0.2276 l -0.0000,0.0479 c 0.0000,-0.0000 -0.8265,0.7786 -1.2936 1.2457c -0.4312,0.4312 -1.2337,1.2816 -1.2337 1.2816l -0.0479,0.0000 l -0.2276,-0.2276 c -0.0599,-0.0599 -0.0599,-0.1318 0.0000 -0.1916l 0.2396,-0.2396 c 0.4073,-0.4073 0.3354,-0.6947 -0.0120 -1.0421l -2.7310,-2.7310 c -0.8025,-0.8025 -1.4493,-0.8025 -1.9045 -0.3474c -0.4192,0.4192 -0.5151,1.1140 -0.4911 2.2638l 2.9705,2.9705 c 0.3474,0.3474 0.6468,0.4073 1.0421 0.0120l 0.2276,-0.2276 c 0.0479,-0.0479 0.1318,-0.0599 0.1916 -0.0000l 0.2276,0.2276 l -0.0000,0.0479 c 0.0000,-0.0000 -0.8385,0.7905 -1.3056 1.2577c -0.4312,0.4312 -1.2218,1.2697 -1.2218 1.2697l -0.0479,0.0000 l -0.2276,-0.2276 c -0.0599,-0.0599 -0.0599,-0.1318 0.0000 -0.1916l 0.2276,-0.2276 c 0.4073,-0.4073 0.3354,-0.6947 -0.0120 -1.0421l -2.9825,-2.9825 c -0.6827,-0.6827 -0.8385,-0.6229 -0.9942 -0.4671c -0.1557,0.1557 -0.2875,0.3114 -0.4432 0.5630l -0.3953,-0.2755 c 0.6229,-0.8864 0.7426,-1.1020 0.8984 -1.5931c 0.0599,-0.1797 0.1198,-0.3114 0.2036 -0.3953l 0.1797,-0.1797 l 1.0062,1.0780 l 0.0359,-0.0359 c -0.0359,-1.1619 0.0240,-2.1081 0.7666 -2.8508c 0.6708,-0.6708 1.5811,-0.5989 2.1920 -0.1318c -0.0240,-1.4134 0.2276,-2.2878 0.8744 -2.9346c 1.0541,-1.0541 2.1081,-0.3593 3.1742 0.7067l 2.4914,2.4914 c 0.3474,0.3474 0.6468,0.4073 1.0421 0.0120l 0.2276,-0.2276 c 0.0479,-0.0479 0.1318,-0.0599 0.1916 -0.0000l 0.2276,0.2276 l -0.0000,0.0479 c 0.0000,-0.0000 -0.8385,0.7905 -1.3056 1.2577c -0.4312,0.4312 -1.2218,1.2697 -1.2218 1.2697l -0.0479,0.0000 l -0.2276,-0.2276 c -0.0599,-0.0599 -0.0599,-0.1318 0.0000 -0.1916l 0.2276,-0.2276 c 0.3953,-0.3953 0.3354,-0.6947 -0.0120 -1.0421ZM 53.7407,72.6127 ZM 47.8355,64.8390 c -0.3114,-0.3114 -0.3234,-0.8265 -0.0120 -1.1379c 0.3234,-0.3234 0.8385,-0.3114 1.1499 -0.0000c 0.3234,0.3234 0.3234,0.8265 -0.0000 1.1499c -0.3114,0.3114 -0.8145,0.3114 -1.1379 -0.0120ZM 47.8355,64.8390 ZM 54.9505,69.6781 c 0.3474,0.3474 0.6588,0.3953 1.0421 0.0120l 0.2276,-0.2276 c 0.0599,-0.0599 0.1437,-0.0719 0.2036 -0.0120l 0.2276,0.2276 l -0.0000,0.0479 c 0.0000,-0.0000 -0.8504,0.8025 -1.3176 1.2697c -0.4192,0.4192 -1.2098,1.2577 -1.2098 1.2577l -0.0479,0.0000 l -0.2276,-0.2276 c -0.0599,-0.0599 -0.0599,-0.1318 0.0000 -0.1916l 0.2276,-0.2276 c 0.3953,-0.3953 0.3354,-0.6947 -0.0120 -1.0421l -2.9825,-2.9825 c -0.6348,-0.6348 -0.8385,-0.6229 -1.0062 -0.4552c -0.1557,0.1557 -0.2875,0.3114 -0.4432 0.5630l -0.3953,-0.2755 c 0.6348,-0.8984 0.7187,-1.0780 0.8984 -1.5931c 0.0838,-0.1797 0.1198,-0.3114 0.2036 -0.3953l 0.1797,-0.1797 l 4.4319,4.4319 ZM 56.9029,69.4505 ZM 60.4005,64.2281 l -2.6232,-2.6232 c -0.8385,-0.8385 -1.3775,-1.0900 -2.0123 -0.4552c -0.5270,0.5270 -0.7786,1.1858 -0.6708 2.5154l 2.9346,2.9346 c 0.3474,0.3474 0.6468,0.4073 1.0421 0.0120l 0.1677,-0.1677 c 0.0599,-0.0599 0.1318,-0.0599 0.1916 -0.0000l 0.2276,0.2276 l -0.0000,0.0479 c 0.0000,-0.0000 -0.7786,0.7307 -1.2457 1.1978c -0.4312,0.4312 -1.2218,1.2697 -1.2218 1.2697l -0.0479,0.0000 l -0.2276,-0.2276 c -0.0599,-0.0599 -0.0599,-0.1318 0.0000 -0.1916l 0.2276,-0.2276 c 0.4073,-0.4073 0.3354,-0.6947 -0.0120 -1.0421l -2.9825,-2.9825 c -0.6468,-0.6468 -0.8265,-0.6348 -0.9942 -0.4671c -0.1557,0.1557 -0.2875,0.3114 -0.4432 0.5630l -0.3953,-0.2755 c 0.4192,-0.5869 0.7187,-1.0062 0.8864 -1.5811c 0.0719,-0.1916 0.1318,-0.3234 0.2156 -0.4073l 0.1797,-0.1797 l 1.0301,1.1020 l 0.0359,-0.0359 c -0.1318,-1.6649 0.2755,-2.4076 0.8864 -3.0185c 1.0780,-1.0780 2.1321,-0.4791 3.1981 0.5869l 2.5393,2.5393 c 0.3474,0.3474 0.6588,0.3953 1.0421 0.0120l 0.2276,-0.2276 c 0.0599,-0.0599 0.1437,-0.0719 0.2036 -0.0120l 0.2276,0.2276 l -0.0000,0.0479 c 0.0000,-0.0000 -0.8504,0.8025 -1.3176 1.2697c -0.4192,0.4192 -1.1499,1.1978 -1.1499 1.1978l -0.0479,0.0000 l -0.2276,-0.2276 c -0.0599,-0.0599 -0.0599,-0.1318 0.0000 -0.1916l 0.1677,-0.1677 c 0.3953,-0.3953 0.3354,-0.6947 -0.0120 -1.0421Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 558.4270,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 394.4170,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 373.9455,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 360.3649,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 349.4548,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 340.2430,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 331.7830,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 324.2436,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 316.9766,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 309.8927,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 302.8520,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 295.8689,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 288.8309,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 281.3602,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 273.5684,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 265.1836,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 256.0084,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 245.2814,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 231.7821,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 211.6116,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.354385623403532" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 47.7017,97.0378 c 0.0000,-1.6924 -1.3720,-3.0644 -3.0644 -3.0644c -1.6924,-0.0000 -3.0644,1.3720 -3.0644 3.0644c -0.0000,1.6924 1.3720,3.0644 3.0644 3.0644c 1.6924,0.0000 3.0644,-1.3720 3.0644 -3.0644Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 555.3626,113.3810 l -0.0000,-2.0429 h -510.7252 l -0.0000,2.0429 Z"/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 517.3990,134.8645 ZM 522.8620,127.3476 c 0.0000,-0.1482 0.0212,-0.3176 0.2117 -0.4235c 0.2329,-0.1694 0.6141,-0.3600 0.9317 -0.3600c 0.2753,-0.0000 0.2964,0.2329 0.2964 0.6564v 3.4091 h 1.7151 l -0.1270,0.9952 h -1.5881 v 1.7575 c 0.0000,0.5929 0.0847,0.8893 0.6988 0.8893h 0.5717 c 0.1270,-0.0000 0.1482,0.1059 0.1482 0.1482v 0.4658 c 0.0000,-0.0000 -1.3552,-0.0423 -2.2445 -0.0423c -0.8046,-0.0000 -2.0539,0.0423 -2.0539 0.0423v -0.4658 c 0.0000,-0.0423 0.0212,-0.1482 0.1482 -0.1482h 0.5717 c 0.6564,-0.0000 0.7199,-0.2753 0.7199 -0.8893v -1.7575 h -4.1502 c -0.0847,-0.0000 -0.1270,-0.0423 -0.1906 -0.1270l -0.1694,-0.2329 l -0.2541,-0.4447 c -0.0212,-0.0000 -0.0212,-0.0212 -0.0212 -0.0423c 0.0000,-0.0212 0.0212,-0.0423 0.0423 -0.0635c 1.3763,-1.5246 3.8114,-6.2464 4.5737 -7.9827c 0.0212,-0.0847 0.0635,-0.1059 0.1482 -0.1059c 0.0212,-0.0000 0.4870,0.1906 0.7411 0.2329c -0.9528,2.5621 -2.5197,5.3148 -4.0655 7.7710h 3.3455 v -3.2820 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.451461874467844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 522.0362,111.3381 v 3.0644 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 461.8093,134.8645 ZM 466.3830,123.2821 c -0.5294,-0.0000 -2.0751,0.2964 -2.0751 1.5881c 0.0000,0.3811 -0.1482,1.0375 -0.7199 1.0375c -0.5505,-0.0000 -0.5929,-0.6141 -0.5929 -0.6776c 0.0000,-0.6564 0.8681,-2.6044 3.8114 -2.6044c 2.0539,-0.0000 2.6680,1.2916 2.6680 2.1386c 0.0000,0.5294 -0.1694,1.5881 -2.0751 2.7950c 1.1858,0.1906 2.7527,1.0587 2.7527 3.2608c 0.0000,2.7950 -2.1174,4.2984 -4.5101 4.2984c -1.2069,-0.0000 -2.9009,-0.5294 -2.9009 -1.3340c 0.0000,-0.3176 0.3176,-0.6776 0.7411 -0.6776c 0.4023,-0.0000 0.5929,0.2117 0.7835 0.4870c 0.2329,0.3600 0.6141,0.8681 1.6304 0.8681c 0.6988,-0.0000 2.6891,-0.6988 2.6891 -3.3667c 0.0000,-2.2657 -1.5881,-2.6256 -2.7315 -2.6256c -0.1906,-0.0000 -0.4235,0.0423 -0.6564 0.0847l -0.0847,-0.6352 c 1.6304,-0.2753 2.9856,-1.8633 2.9856 -2.8374c 0.0000,-1.2069 -0.8470,-1.7998 -1.7151 -1.7998Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.451461874467844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 466.4465,111.3381 v 3.0644 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 406.2197,134.8645 ZM 407.4478,125.4843 c 0.0000,-1.2069 1.1646,-2.8585 3.3879 -2.8585c 1.6304,-0.0000 3.5361,0.6141 3.5361 3.0491c 0.0000,1.6093 -0.8258,2.4139 -1.9692 3.5149l -2.0116,1.9480 c -0.1059,0.1059 -1.5246,1.5034 -1.5246 2.4986h 3.5996 c 0.7199,-0.0000 1.1011,-0.3600 1.3975 -1.5246l 0.5294,0.0847 l -0.4235,2.6680 h -6.5429 c 0.0000,-1.1858 0.1906,-2.0963 2.1598 -4.1078l 1.4822,-1.4610 c 1.1858,-1.2069 1.6728,-2.2445 1.6728 -3.5361c 0.0000,-1.9269 -1.3128,-2.4774 -2.0327 -2.4774c -1.4610,-0.0000 -1.8633,0.7623 -1.8633 1.2705c 0.0000,0.1694 0.0423,0.3388 0.0847 0.4870c 0.0423,0.1482 0.0847,0.2964 0.0847 0.4658c 0.0000,0.5505 -0.4235,0.7623 -0.7623 0.7623c -0.4658,-0.0000 -0.8046,-0.3600 -0.8046 -0.7835Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.451461874467844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 410.8568,111.3381 v 3.0644 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 350.6300,134.8645 ZM 354.6108,124.7643 c -0.4023,-0.0000 -1.3340,0.3811 -1.7998 0.5929l -0.2541,-0.6564 c 1.8633,-0.8681 2.5833,-1.3128 3.6420 -2.0751h 0.4023 v 10.6507 c 0.0000,0.7623 0.1059,0.9740 0.8046 0.9740h 1.1011 c 0.0635,-0.0000 0.1694,0.0423 0.1694 0.1694v 0.4658 l -2.9009,-0.0423 l -2.9432,0.0423 v -0.4658 c 0.0212,-0.0635 0.0423,-0.1694 0.1694 -0.1694h 1.2705 c 0.8046,-0.0000 0.8046,-0.3600 0.8046 -0.9740v -7.2840 c 0.0000,-0.7199 0.0000,-1.2281 -0.4658 -1.2281Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.451461874467844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 355.2672,111.3381 v 3.0644 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 295.0403,134.8645 ZM 299.6775,123.3668 c -0.9105,-0.0000 -2.2445,0.8893 -2.2445 5.8229c 0.0000,1.7363 0.3176,5.2301 2.1810 5.2301c 0.3600,-0.0000 1.3763,-0.2329 1.8210 -1.8845c 0.2753,-1.0164 0.4235,-2.2868 0.4235 -4.1290c 0.0000,-2.6891 -0.6776,-4.1925 -1.2916 -4.7219c -0.2329,-0.2117 -0.5505,-0.3176 -0.8893 -0.3176ZM 299.6775,123.3668 ZM 299.5928,135.1186 c -2.2657,-0.0000 -3.7902,-2.9009 -3.7902 -6.1406c 0.0000,-3.9596 1.8845,-6.3523 3.8749 -6.3523c 0.9105,-0.0000 1.8210,0.5717 2.4350 1.3975c 0.8893,1.1858 1.3552,2.7738 1.3552 4.7642c 0.0000,4.7007 -2.3292,6.3311 -3.8749 6.3311Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.451461874467844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 299.6775,111.3381 v 3.0644 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 235.9251,134.8645 ZM 241.7269,129.8673 h -4.7854 c -0.1906,-0.0000 -0.3176,-0.1694 -0.3176 -0.3600c 0.0000,-0.3388 0.2753,-0.7835 0.5294 -0.7835h 4.8489 c 0.2117,-0.0000 0.2964,0.1906 0.2964 0.3811c 0.0000,0.2329 -0.2964,0.7623 -0.5717 0.7623ZM 242.9762,134.8645 ZM 246.9569,124.7643 c -0.4023,-0.0000 -1.3340,0.3811 -1.7998 0.5929l -0.2541,-0.6564 c 1.8633,-0.8681 2.5833,-1.3128 3.6420 -2.0751h 0.4023 v 10.6507 c 0.0000,0.7623 0.1059,0.9740 0.8046 0.9740h 1.1011 c 0.0635,-0.0000 0.1694,0.0423 0.1694 0.1694v 0.4658 l -2.9009,-0.0423 l -2.9432,0.0423 v -0.4658 c 0.0212,-0.0635 0.0423,-0.1694 0.1694 -0.1694h 1.2705 c 0.8046,-0.0000 0.8046,-0.3600 0.8046 -0.9740v -7.2840 c 0.0000,-0.7199 0.0000,-1.2281 -0.4658 -1.2281Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.451461874467844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 244.0878,111.3381 v 3.0644 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 180.3354,134.8645 ZM 186.1372,129.8673 h -4.7854 c -0.1906,-0.0000 -0.3176,-0.1694 -0.3176 -0.3600c 0.0000,-0.3388 0.2753,-0.7835 0.5294 -0.7835h 4.8489 c 0.2117,-0.0000 0.2964,0.1906 0.2964 0.3811c 0.0000,0.2329 -0.2964,0.7623 -0.5717 0.7623ZM 187.3865,134.8645 ZM 188.6146,125.4843 c 0.0000,-1.2069 1.1646,-2.8585 3.3879 -2.8585c 1.6304,-0.0000 3.5361,0.6141 3.5361 3.0491c 0.0000,1.6093 -0.8258,2.4139 -1.9692 3.5149l -2.0116,1.9480 c -0.1059,0.1059 -1.5246,1.5034 -1.5246 2.4986h 3.5996 c 0.7199,-0.0000 1.1011,-0.3600 1.3975 -1.5246l 0.5294,0.0847 l -0.4235,2.6680 h -6.5429 c 0.0000,-1.1858 0.1906,-2.0963 2.1598 -4.1078l 1.4822,-1.4610 c 1.1858,-1.2069 1.6728,-2.2445 1.6728 -3.5361c 0.0000,-1.9269 -1.3128,-2.4774 -2.0327 -2.4774c -1.4610,-0.0000 -1.8633,0.7623 -1.8633 1.2705c 0.0000,0.1694 0.0423,0.3388 0.0847 0.4870c 0.0423,0.1482 0.0847,0.2964 0.0847 0.4658c 0.0000,0.5505 -0.4235,0.7623 -0.7623 0.7623c -0.4658,-0.0000 -0.8046,-0.3600 -0.8046 -0.7835Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.451461874467844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 188.4981,111.3381 v 3.0644 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 124.7457,134.8645 ZM 130.5475,129.8673 h -4.7854 c -0.1906,-0.0000 -0.3176,-0.1694 -0.3176 -0.3600c 0.0000,-0.3388 0.2753,-0.7835 0.5294 -0.7835h 4.8489 c 0.2117,-0.0000 0.2964,0.1906 0.2964 0.3811c 0.0000,0.2329 -0.2964,0.7623 -0.5717 0.7623ZM 131.7968,134.8645 ZM 136.3705,123.2821 c -0.5294,-0.0000 -2.0751,0.2964 -2.0751 1.5881c 0.0000,0.3811 -0.1482,1.0375 -0.7199 1.0375c -0.5505,-0.0000 -0.5929,-0.6141 -0.5929 -0.6776c 0.0000,-0.6564 0.8681,-2.6044 3.8114 -2.6044c 2.0539,-0.0000 2.6680,1.2916 2.6680 2.1386c 0.0000,0.5294 -0.1694,1.5881 -2.0751 2.7950c 1.1858,0.1906 2.7527,1.0587 2.7527 3.2608c 0.0000,2.7950 -2.1174,4.2984 -4.5101 4.2984c -1.2069,-0.0000 -2.9009,-0.5294 -2.9009 -1.3340c 0.0000,-0.3176 0.3176,-0.6776 0.7411 -0.6776c 0.4023,-0.0000 0.5929,0.2117 0.7835 0.4870c 0.2329,0.3600 0.6141,0.8681 1.6304 0.8681c 0.6988,-0.0000 2.6891,-0.6988 2.6891 -3.3667c 0.0000,-2.2657 -1.5881,-2.6256 -2.7315 -2.6256c -0.1906,-0.0000 -0.4235,0.0423 -0.6564 0.0847l -0.0847,-0.6352 c 1.6304,-0.2753 2.9856,-1.8633 2.9856 -2.8374c 0.0000,-1.2069 -0.8470,-1.7998 -1.7151 -1.7998Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.451461874467844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 132.9085,111.3381 v 3.0644 "/></g><g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 69.1561,134.8645 ZM 74.9578,129.8673 h -4.7854 c -0.1906,-0.0000 -0.3176,-0.1694 -0.3176 -0.3600c 0.0000,-0.3388 0.2753,-0.7835 0.5294 -0.7835h 4.8489 c 0.2117,-0.0000 0.2964,0.1906 0.2964 0.3811c 0.0000,0.2329 -0.2964,0.7623 -0.5717 0.7623ZM 76.2071,134.8645 ZM 81.6701,127.3476 c 0.0000,-0.1482 0.0212,-0.3176 0.2117 -0.4235c 0.2329,-0.1694 0.6141,-0.3600 0.9317 -0.3600c 0.2753,-0.0000 0.2964,0.2329 0.2964 0.6564v 3.4091 h 1.7151 l -0.1270,0.9952 h -1.5881 v 1.7575 c 0.0000,0.5929 0.0847,0.8893 0.6988 0.8893h 0.5717 c 0.1270,-0.0000 0.1482,0.1059 0.1482 0.1482v 0.4658 c 0.0000,-0.0000 -1.3552,-0.0423 -2.2445 -0.0423c -0.8046,-0.0000 -2.0539,0.0423 -2.0539 0.0423v -0.4658 c 0.0000,-0.0423 0.0212,-0.1482 0.1482 -0.1482h 0.5717 c 0.6564,-0.0000 0.7199,-0.2753 0.7199 -0.8893v -1.7575 h -4.1502 c -0.0847,-0.0000 -0.1270,-0.0423 -0.1906 -0.1270l -0.1694,-0.2329 l -0.2541,-0.4447 c -0.0212,-0.0000 -0.0212,-0.0212 -0.0212 -0.0423c 0.0000,-0.0212 0.0212,-0.0423 0.0423 -0.0635c 1.3763,-1.5246 3.8114,-6.2464 4.5737 -7.9827c 0.0212,-0.0847 0.0635,-0.1059 0.1482 -0.1059c 0.0212,-0.0000 0.4870,0.1906 0.7411 0.2329c -0.9528,2.5621 -2.5197,5.3148 -4.0655 7.7710h 3.3455 v -3.2820 Z"/></g><g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.451461874467844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 77.3188,111.3381 v 3.0644 "/></g><g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0"><path d="M 555.3626,107.2523 l -0.0000,-102.1450 h -510.7252 l -0.0000,102.1450 Z"/></g></svg>
diff --git a/readme.md b/readme.md
--- a/readme.md
+++ b/readme.md
@@ -1,13 +1,9 @@
-```include
-other/header.md
-```
-
 [chart-unit](https://github.com/tonyday567/chart-unit)
 ===
 
 [![Build Status](https://travis-ci.org/tonyday567/chart-unit.svg)](https://travis-ci.org/tonyday567/chart-unit) [![Hackage](https://img.shields.io/hackage/v/chart-unit.svg)](https://hackage.haskell.org/package/chart-unit) [![lts](https://www.stackage.org/package/chart-unit/badge/lts)](http://stackage.org/lts/package/chart-unit) [![nightly](https://www.stackage.org/package/chart-unit/badge/nightly)](http://stackage.org/nightly/package/chart-unit)
 
-`chart-unit` is a haskell chart library focusing on a small set of high-quality charts using native haskell. Here's a recent example, chock-a-block fill of titles and legends, since they've just been added:
+`chart-unit` is a haskell chart library focusing on a small set of high-quality charts using native haskell. Here's a recent example, chock-a-block full of titles and legends (that needed testing):
 
 ![](other/mainExample.svg)
 
@@ -32,10 +28,33 @@
 
 ![](other/arrowHudExample.svg)
 
+Why the name chart-unit?
+===
+
+Most of the behind-the-scenes grunt work is scaling data, projecting points from one range to another, and computing position.  A key to making these computations neat was `one = Range -0.5 0.5` and `one = Rect -0.5 0.5 -0.5 0.5` as the (multiplicative) units of a chart range.  See [numhask-range](https://github.com/tonyday567/numhask-range) for a monologue.
+
+What's with the funny names?
+===
+
+Charting is an age-old craft, and stuffed to the brim with cliche and jargon.  I wanted to cut through the cruft of what is thought of as a chart (and charting has been dominated by excel for 30 years), and approach charting from a haskelly perspective.  The funny names were the cohorts that popped out.  A rough translation:
+
+
+| ye-old Chart type                                    | chart-unit type       |
+|------------------------------------------------------|-----------------------|
+| line                                                 | LineChart             |
+| line chart with markers                              | GLineChart            |
+| scatter                                              | GlyphChart            |
+| pie                                                  | pull requests welcome |
+| heatmap                                              | PixelChart            |
+| [Bar](https://en.wikipedia.org/wiki/Bar_chart)       | RectChart             |
+| [Histogram](https://en.wikipedia.org/wiki/Histogram) | RectChart             |
+| sparkline                                            | a skinny Aspect       |
+|                                                      |                       |
+
 Gallery
 ===
 
-The main chart types and the power of diagrams make it easy to invent new charts.  Hrere's some inspiration (all code for these charts is in [examples/sourceExamples.hs](examples/sourceExamples.hs)).
+The main chart types and the power of diagrams make it easy to invent new charts.  Hrere's some inspiration (all code for these charts is in [examples/sourceExamples.hs](https://github.com/tonyday567/chart-unit/blob/master/examples/sourceExamples.hs)).
 
 schoolbook
 ---
@@ -80,9 +99,5 @@
 ===
 
 ~~~
-stack build --test --exec "$(stack path --local-install-root)/bin/chart-source-examples" --exec "$(stack path --local-bin)/pandoc -f markdown -i readme.md -t html -o index.html --filter pandoc-include --mathjax" --file-watch
+stack build --test --exec "$(stack path --local-install-root)/bin/chart-source-examples" --exec "$(stack path --local-bin)/pandoc -f markdown -i other/header.md readme.md other/footer.md -t html -o index.html --filter pandoc-include --mathjax" --file-watch
 ~~~
-
-```include
-other/footer.md
-```
diff --git a/src/Chart.hs b/src/Chart.hs
--- a/src/Chart.hs
+++ b/src/Chart.hs
@@ -1,18 +1,19 @@
 {-# OPTIONS_GHC -Wall #-}
 {-# OPTIONS_HADDOCK prune, not-home #-}
 
--- | native haskell charts
+-- | The Chart module exports all of the chart-unit functionality, and most of what you need from outside libraries.
 --
+-- Chart is designed to be used in conjunction with both the numhask and diagrams preludes. Diagrams.Prelude conatins much of the lens library and many re-exports that clash with NumHask, so best to import qualified.
+--
 -- > {-# NoImplicitPrelude #-}
 -- > {-# OverloadedString #-}
 -- > import NumHask.Prelude
+-- > import qualified Diagrams.Prelude as D
 -- > import Chart
 --
--- chart-unit is designed to be used in conjunction with the numhask prelude.
---
-
 module Chart
-  ( module Chart.Core
+  ( -- * chart-unit
+    module Chart.Core
   , module Chart.Arrow
   , module Chart.Glyph
   , module Chart.Hud
@@ -20,24 +21,25 @@
   , module Chart.Rect
   , module Chart.Text
   , module Chart.Lenses
+
+    -- * numhask-range
   , module NumHask.Pair
   , module NumHask.Space
   , module NumHask.Range
   , module NumHask.Rect
+
+    -- * color
   , module Data.Colour
   , module Data.Colour.Palette.Harmony
   , module Data.Colour.Palette.ColorSet
-  , Diagram
-  , triangle
-  , square
-  , circle
-  , SVG
-  , B
-  , Renderable
-  , Path
-  , V2
+
+    -- * Default
   , Default(..)
+
+    -- * Text
   , Text
+
+    -- * scratch pad
   , scratch
   ) where
 
@@ -54,7 +56,7 @@
 import Data.Colour.Palette.Harmony
 import Data.Default (Default(..))
 import Data.Text
-import Diagrams.Backend.SVG (SVG, B)
+import Diagrams.Backend.SVG (SVG)
 import Diagrams.Prelude
 import NumHask.Pair
 import NumHask.Range
diff --git a/src/Chart/Arrow.hs b/src/Chart/Arrow.hs
--- a/src/Chart/Arrow.hs
+++ b/src/Chart/Arrow.hs
@@ -1,6 +1,6 @@
 {-# OPTIONS_GHC -Wall #-}
 
--- | Charts that depict gradients and similar, using arrows
+-- | Charts that depict gradients and similar data, using arrows in positions
 
 module Chart.Arrow (
     Arrow(..)
@@ -22,6 +22,7 @@
 import Data.Ord (max)
 import Diagrams.Prelude hiding (width, D, Color, project)
 
+-- | todo: quite a clunky specification of what an arrow is (or could be)
 data ArrowOptions a = ArrowOptions
     { arrowMinLength :: a
     , arrowMaxLength :: a
@@ -36,7 +37,7 @@
 instance Default (ArrowOptions Double) where
     def = ArrowOptions 0.02 0.2 0.01 0.1 0.002 0.005 ublue dart
 
--- | equalize the arrow space width with the data space one.
+-- | Equalize the arrow space width with the data space one.
 -- this creates the right arrow sizing in physical chart space
 normArrows :: [Arrow] -> [Arrow]
 normArrows xs =
@@ -52,17 +53,20 @@
              width (space $ arrowDir <$> xs :: Rect Double)) <$>
           as
 
--- | an arrow structure contains position, direction and size information
+-- | An arrow structure contains position, direction and size information
 data Arrow = Arrow
     { arrowPos :: Pair Double -- position of arrow tail
     , arrowDir :: Pair Double -- direction and strength of arrow
     } deriving (Eq, Show)
 
--- | arrows rescale data across position, and between position and arrow direction
--- note that, due t0 all this scaling stuff, there is no such thing as a single arrow_ chart
+-- | Rescale data across position, and between position and arrow direction.
 --
--- > arrows (def {arrowMaxLength=0.5,arrowMaxHeadLength=0.2,arrowMaxStaffWidth=0.01}) [Arrow (Pair x (sin (5*x))) (Pair x (cos x)) | x<-grid MidPos (one::Range Double) 100]
+-- note that, due to this auto-scaling, there is no such thing as a single arrow_ chart
 --
+-- > arrows (def {arrowMaxLength=0.5,arrowMaxHeadLength=0.2,arrowMaxStaffWidth=0.01})
+-- >     [Arrow (Pair x (sin (5*x))) (Pair x (cos x)) |
+-- >      x<-grid MidPos (one::Range Double) 100]
+--
 -- ![arrows example](other/arrowsExample.svg)
 --
 arrows :: (Traversable f) => ArrowOptions Double -> f Arrow -> Chart b
@@ -117,9 +121,11 @@
     (\(Arrow d arr) ->
         Arrow (project r asp d) (project r asp arr)) <$> xs) optss xss
 
--- | an arrow chart scaled to its own range
+-- | An arrow chart scaled to its own range
 --
--- > let as = normArrows [Arrow (Pair x y) (Pair (sin 1/x+0.0001) (cos 1/y+0.0001)) | x<-grid MidPos (one::Range Double) 20, y<-grid MidPos (one::Range Double) 20]
+-- > let as = normArrows [Arrow (Pair x y) (Pair (sin 1/x+0.0001) (cos 1/y+0.0001)) |
+-- >                      x<-grid MidPos (one::Range Double) 20,
+-- >                      y<-grid MidPos (one::Range Double) 20]
 -- > arrowChart_ [def] asquare [as]
 --
 -- ![arrowChart_ example](other/arrowChart_Example.svg)
diff --git a/src/Chart/Core.hs b/src/Chart/Core.hs
--- a/src/Chart/Core.hs
+++ b/src/Chart/Core.hs
@@ -5,16 +5,29 @@
 {-# OPTIONS_GHC -fno-warn-incomplete-patterns #-}
 #endif
 
+-- | In making a chart, there are three main size domains you have to be concerned about:
+--
+-- - the range of the data being charted. This range is often projected onto chart elements such as axes and labels. A data range in two dimensions is a 'Rect' a.
+--
+-- - the scale of various chart primitives and elements.  The overall dimensions of the chart canvas - the rectangular shape on which the data is represented - is referred to as an 'Aspect' in the api, and is a wrapped 'Rect' to distinguish aspects from rect ranges.  The default chart options tend to be callibrated to Aspects around widths of one.
+--
+-- - the size of the chart rendered as an image. Backends tend to shrink charts to fit the rectangle shape specified in the render function, and a loose sympathy is expected between the aspect and a chart's ultimate physical size.
+--
+-- Jumping ahead a bit, the code snippet below draws vertical lines using a data range of "Rect 0 12 0 0.2" (slightly different to the actual data range), using a widescreen (3:1) aspect, and renders the chart as a 300 by 120 pixel svg:
+--
+-- > fileSvg "other/scaleExample.svg" (300,120) $
+-- >   withHud (hudAspect_ .~ widescreen $ hudRange_ .~ Just (Rect 0 12 0 0.2) $ def)
+-- >   (lineChart (repeat def)) ((\x -> [Pair x 0, Pair x (x/100)]) <$> [0..10])
+--
+-- ![scale example](other/scaleExample.svg)
+--
 module Chart.Core
-  ( -- * chart
-    --
-    -- $chart
+  ( -- * Chart types
     Chart
   , UChart(..)
   , combine
-    -- * scaling
-    --
-    -- $scaling
+
+    -- * Scaling
   , range
   , projectss
   , Aspect(..)
@@ -29,37 +42,35 @@
   , alignHU
   , alignHTU
   , alignVU
-    -- * combinator
+
+    -- * Combinators
     --
-    -- $combinator
+    -- | The concept of a point on a chart is the polymorphic 'R2' from the 'linear' library.  Diagrams most often uses 'Point', which is a wrapped 'V2'.  The 'Pair' type from 'numhask-range' is often used as a point reference.
   , positioned
   , p_
   , r_
+  , stack
   , vert
   , hori
   , sepVert
   , sepHori
+
     -- * IO
-    --
-    -- $io
   , fileSvg
-    -- * color
+
+    -- * Color
     --
-    -- $color
+    -- | chart-unit exposes the 'colour' and 'palette' libraries for color combinators
   , ucolor
   , ublue
   , ugrey
-  , ugreen
-  , ured
-    -- * errata
-    --
-    -- $errata
+
+    -- * Compatability
   , scaleX
   , scaleY
   , scale
   ) where
 
-import Data.Colour.Palette.ColorSet
 import Diagrams.Backend.SVG (SVG, renderSVG)
 import Diagrams.Prelude
        hiding (Color, D, aspect, project, scale, scaleX, scaleY, zero)
@@ -69,16 +80,14 @@
 import NumHask.Rect
 import NumHask.Space
 
--- $chart
+-- | A Chart is simply a type synonym for a typical Diagrams object.  A close relation to this type is 'Diagram' 'B', but this usage tends to force a single backend (B comes from the backend libraries), so making Chart b's maintains backend polymorphism.
 --
--- base chart type
--- | A Chart is simply a type synonym for a typical Diagrams object.  A close relation to this type is 'Diagram' 'B', but this usage tends to force a single backend (B comes from the backend libraries), so this is preferred to maintain backend polymorphism.
--- Just about everything - text, circles, lines, triangles, charts, axes, titles, legends etc - are 'Chart's, which means that most things are amenable to full use of the 'diagrams-lib' library.
+-- Just about everything - text, circles, lines, triangles, charts, axes, titles, legends etc - are 'Chart's, which means that most things are amenable to full use of the combinatorially-inclined diagrams-lib.
 type Chart b
    = (Renderable (Path V2 Double) b) =>
        QDiagram b V2 Double Any
 
--- | a UChart is mostly a late binding of the Chart Aspect that is to be projected on to and the data.
+-- | a UChart provides a late binding of a chart Aspect so multiple charts can be rendered using the same range.
 data UChart a b = UChart
   { uchartRenderer :: () =>
                         Aspect -> Rect Double -> a -> Chart b
@@ -92,9 +101,7 @@
   where
     rall = fold $ (\(UChart _ r1 _) -> r1) <$> qcs
 
--- $scaling
---
--- scaling functionality
+-- | project a double-containered set of data to a new Rect range
 projectss ::
      (Functor f, Functor g)
   => Rect Double
@@ -103,23 +110,27 @@
   -> g (f (Pair Double))
 projectss r0 r1 xyss = map (project r0 r1) <$> xyss
 
+-- | determine the range of a double-containered set of data
 range :: (Foldable f, Foldable g) => g (f (Pair Double)) -> Rect Double
 range xyss = foldMap space xyss
 
--- | the rendering plane
-newtype Aspect = Aspect
-  { aspectRect :: Rect Double
-  }
+-- | a wrapped Rect specifying the shape od the chart canvas.
+--
+-- The Aspect tends to be:
+--
+-- - independent of the data range
+-- - expressed in terms around a width magnitude of one.  chart default options are callibrated to this convention.
+newtype Aspect = Aspect (Rect Double)
 
 -- | the rendering aspect of a chart expressed as a ratio of x-plane : y-plane.
 aspect :: Double -> Aspect
 aspect a = Aspect $ Ranges ((a *) <$> one) one
 
--- | 1:1
+-- | a 1:1 aspect
 asquare :: Aspect
 asquare = aspect 1
 
--- | 1.5:1
+-- | a 1.5:1 aspect
 sixbyfour :: Aspect
 sixbyfour = aspect 1.5
 
@@ -127,11 +138,11 @@
 golden :: Aspect
 golden = aspect 1.61803398875
 
--- | 3:1
+-- | a 3:1 aspect
 widescreen :: Aspect
 widescreen = aspect 3
 
--- | 5:1
+-- | a skinny 5:1 aspect
 skinny :: Aspect
 skinny = aspect 5
 
@@ -147,7 +158,7 @@
   | AlignMid
   | AlignBottom
 
--- | conversion of horizontal alignment to one :: Range Double
+-- | conversion of horizontal alignment to (one :: Range Double) limits
 alignHU :: AlignH -> Double
 alignHU a =
   case a of
@@ -163,7 +174,7 @@
     AlignCenter -> -0.5
     AlignRight -> -1
 
--- | conversion of vertical alignment to one :: Range Double
+-- | conversion of vertical alignment to (one :: Range Double) limits
 alignVU :: AlignV -> Double
 alignVU a =
   case a of
@@ -171,10 +182,7 @@
     AlignMid -> 0
     AlignBottom -> 0.5
 
--- $combinator
---
--- chart combinators
--- | position an element
+-- | position an element at a point
 positioned :: (R2 r) => r Double -> Chart b -> Chart b
 positioned p = moveTo (p_ p)
 
@@ -186,21 +194,30 @@
 r_ :: R2 r => r a -> V2 a
 r_ r = V2 (r ^. _x) (r ^. _y)
 
+-- | foldMap for beside; stacking chart elements in a direction, with a premap
+stack ::
+     (R2 r, V a ~ V2, Foldable t, Juxtaposable a, Semigroup a, N a ~ Double, Monoid a)
+  => r Double
+  -> (b -> a)
+  -> t b
+  -> a
+stack dir f xs = foldr (\a x -> beside (r_ dir) (f a) x) mempty xs
+
 -- | combine elements vertically, with a premap
 vert ::
-     (V a ~ V2, Foldable t, Juxtaposable a, Semigroup a, Num (N a), Monoid a)
-  => (a -> a)
-  -> t a
+     (V a ~ V2, Foldable t, Juxtaposable a, Semigroup a, N a ~ Double, Monoid a)
+  => (b -> a)
+  -> t b
   -> a
-vert f xs = foldr (\a x -> beside (r2 (0, -1)) (f a) x) mempty xs
+vert = stack (Pair 0 -1)
 
 -- | combine elements horizontally, with a premap
 hori ::
-     (V a ~ V2, Foldable t, Juxtaposable a, Semigroup a, Num (N a), Monoid a)
-  => (a -> a)
-  -> t a
+     (V a ~ V2, Foldable t, Juxtaposable a, Semigroup a, N a ~ Double, Monoid a)
+  => (b -> a)
+  -> t b
   -> a
-hori f xs = foldr (\a x -> beside (r2 (1, 0)) (f a) x) mempty xs
+hori = stack (Pair 1 0)
 
 -- | horizontal separator
 sepHori :: Double -> Chart b -> Chart b
@@ -210,31 +227,23 @@
 sepVert :: Double -> Chart b -> Chart b
 sepVert s x = beside (r2 (1, 0)) x (strutY s)
 
--- $io
---
 -- | write an svg to file
 fileSvg :: FilePath -> (Double, Double) -> Diagram SVG -> IO ()
 fileSvg f s = renderSVG f (mkSizeSpec (Just <$> r2 s))
 
--- $color
---
+-- | convert an rgba spec to an AlphaColour
 ucolor :: (Floating a, Ord a) => a -> a -> a -> a -> AlphaColour a
 ucolor r g b o = withOpacity (sRGB r g b) o
 
+-- | the official chart-unit blue
 ublue :: AlphaColour Double
 ublue = ucolor 0.365 0.647 0.855 0.5
 
-ugreen :: AlphaColour Double
-ugreen = rybColor 11 `withOpacity` 0.5
-
-ured :: AlphaColour Double
-ured = rybColor 0 `withOpacity` 0.5
-
+-- | the official chart-unit grey
 ugrey :: AlphaColour Double
-ugrey = ucolor 0.5 0.5 0.5 0.5
+ugrey = ucolor 0.4 0.4 0.4 1
 
--- $errata
---
+-- | These are difficult to avoid
 instance R1 Pair where
   _x f (Pair a b) = (`Pair` b) <$> f a
 
@@ -242,10 +251,10 @@
   _y f (Pair a b) = Pair a <$> f b
   _xy f p = fmap (\(V2 a b) -> Pair a b) . f . (\(Pair a b) -> V2 a b) $ p
 
--- avoiding the diagrams throw on zero divides
 eps :: N [Point V2 Double]
 eps = 1e-8
 
+-- | the diagrams scaleX with a zero divide guard to avoid error throws
 scaleX ::
      (N t ~ Double, Transformable t, R2 (V t), Diagrams.Additive (V t))
   => Double
@@ -257,6 +266,7 @@
        then eps
        else s)
 
+-- | the diagrams scaleY with a zero divide guard to avoid error throws
 scaleY ::
      (N t ~ Double, Transformable t, R2 (V t), Diagrams.Additive (V t))
   => Double
@@ -268,6 +278,7 @@
        then eps
        else s)
 
+-- | the diagrams scale with a zero divide guard to avoid error throws
 scale ::
      (N t ~ Double, Transformable t, R2 (V t), Diagrams.Additive (V t))
   => Double
diff --git a/src/Chart/Glyph.hs b/src/Chart/Glyph.hs
--- a/src/Chart/Glyph.hs
+++ b/src/Chart/Glyph.hs
@@ -1,5 +1,6 @@
 {-# OPTIONS_GHC -Wall #-}
 
+-- | Glyphs are (typically) small shapes symbolically representing a data point.
 module Chart.Glyph
   ( GlyphOptions(..)
   , hline_
@@ -11,6 +12,9 @@
   , glyphChart_
   , lglyphChart
   , lglyphChart_
+  , circle
+  , square
+  , triangle
   ) where
 
 import Chart.Core
@@ -32,15 +36,15 @@
 instance Default (GlyphOptions b) where
   def = GlyphOptions 0.03 ublue ugrey 0.015 circle
 
--- | vertical line glyph shape
+-- | Vertical line glyph shape with a reasonable thickness at "vline_ 1"
 vline_ :: Double -> Double -> Chart b
 vline_ fatness x = vrule x # scaleX (1.6 / 0.5 * fatness)
 
--- | horizontal line glyph shape
+-- | Horizontal line glyph shape with a reasonable thickness as "hline_ 1"
 hline_ :: Double -> Double -> Chart b
 hline_ fatness x = hrule x # scaleY (1.6 / 0.5 * fatness)
 
--- | create a glyph from a configuration
+-- | Create a glyph.
 --
 -- > let glyph_Example = glyph_ def
 --
@@ -49,7 +53,7 @@
 glyph_ :: GlyphOptions b -> Chart b
 glyph_ (GlyphOptions s c bc bs shape) = shape s # fcA c # lcA bc # lwN bs
 
--- | positioned glyphs
+-- | Create positioned glyphs.
 --
 -- > let ps = [Pair (x/10) ((sin x)/10) | x<-[0..10]]
 -- > glyphs def ps
@@ -59,7 +63,7 @@
 glyphs :: (R2 r, Traversable f) => GlyphOptions b -> f (r Double) -> Chart b
 glyphs opts xs = mconcat $ toList $ (\x -> positioned x (glyph_ opts)) <$> xs
 
--- | a chart of glyphs
+-- | A chart of glyphs
 glyphChart ::
      (Traversable f)
   => [GlyphOptions b]
@@ -70,7 +74,7 @@
 glyphChart optss (Aspect asp) r xyss =
   mconcat $ zipWith glyphs optss (projectss r asp xyss)
 
--- | a chart of glyphs scaled to its own range
+-- | A chart of glyphs scaled to its own range
 --
 -- > let gopts = [def,def {glyphBorderColor=withOpacity red 0.2, glyphShape=triangle}]
 -- > let p_1 = [Pair x (sin (x/10)) | x<-[0..100]]
@@ -87,7 +91,7 @@
   -> Chart b
 glyphChart_ optss asp xyss = glyphChart optss asp (range xyss) xyss
 
--- | labelled, positioned glyphs
+-- | Create labelled, positioned glyphs.
 --
 -- > lglyphs def def $ zip (show <$> [0..]) ps
 --
@@ -103,7 +107,7 @@
   mconcat $
   toList $ (\(t, x) -> moveTo (p_ x) $ labelled lopts t (glyph_ gopts)) <$> xs
 
--- | a chart of labelled glyphs
+-- | A chart of labelled glyphs
 lglyphChart ::
      (Traversable f)
   => [LabelOptions]
@@ -122,7 +126,7 @@
        (map fst . toList <$> xyss)
        (projectss r asp (map snd . toList <$> xyss)))
 
--- | a chart of labelled glyphs scaled to its own range
+-- | A chart of labelled glyphs scaled to its own range
 --
 -- > let g = Pair <$> [0..5] <*> [0..5] :: [Pair Int]
 -- > let xs = [(\(p@(Pair x y)) -> ((show x <> "," <> show y), fromIntegral <$> p)) <$> g]
diff --git a/src/Chart/Hud.hs b/src/Chart/Hud.hs
--- a/src/Chart/Hud.hs
+++ b/src/Chart/Hud.hs
@@ -4,11 +4,13 @@
 {-# OPTIONS_GHC -fno-warn-incomplete-patterns #-}
 #endif
 
--- | collective noun for axes, titles & legends
+-- | Hud (Heads up display) is a collective noun for axes, titles & legends
+--
+-- todo: refactor me please. A hud for a chart uses 'beside' to combine elements, and this restricts the hud to the outside of the chart canvas.  This tends to make hud elements (such as gridlines) harder to implement than they should be.
 module Chart.Hud
   ( HudOptions(..)
-  , withHud
   , hud
+  , withHud
   , Orientation(..)
   , Place(..)
   , placeOutside
@@ -36,7 +38,7 @@
 import Data.List (nub)
 import Data.Ord (max)
 import Diagrams.Prelude
-       hiding (Color, D, (*.), (<>), project, width, zero)
+       hiding (Color, D, (*.), (<>), project, width, zero, (<>))
 import qualified Diagrams.TwoD.Size as D
 import Formatting
 import NumHask.Pair
@@ -45,8 +47,9 @@
 import NumHask.Rect
 import NumHask.Space
 
--- | various options for a hud
--- Defaults to an x- and y-axis, sixbyfour aspect, no titles and no legends
+-- | Various options for a hud.
+--
+-- Defaults to the classical x- and y-axis, a sixbyfour aspect, no titles and no legends
 data HudOptions b = HudOptions
   { hudPad :: Double
   , hudAxes :: [AxisOptions b]
@@ -60,7 +63,7 @@
 instance Default (HudOptions b) where
   def = HudOptions 1.1 [defXAxis, defYAxis] [] [] Nothing sixbyfour clear
 
--- | create a hud based upon HudOptions
+-- | Create a hud.
 --
 -- > hud def
 --
@@ -104,7 +107,8 @@
 -- > withHudExample = withHud hopts (lineChart lopts) ls
 -- >     where
 -- >       hopts = def {hudTitles=[(def,"withHud Example")],
--- >                    hudLegends=[def {legendChartType=zipWith (\x y -> (LegendLine x 0.05, y)) lopts ["line1", "line2", "line3"]}]}
+-- >                    hudLegends=[def {legendChartType=zipWith (\x y ->
+-- >                    (LegendLine x 0.05, y)) lopts ["line1", "line2", "line3"]}]}
 --
 -- ![withHud example](other/withHudExample.svg)
 --
@@ -129,7 +133,7 @@
             []
         ]
 
--- | placement of hud elements around (what is implicity but maybe shouldn't just be) a rectangular canvas
+-- | Placement of hud elements around (what is implicity but maybe shouldn't just be) a rectangular canvas
 data Place
   = PlaceLeft
   | PlaceRight
@@ -137,7 +141,7 @@
   | PlaceBottom
   deriving (Eq, Show)
 
--- | direction to place stuff on the outside of the built-up chart
+-- | Direction to place stuff on the outside of the built-up hud
 placeOutside :: Num n => Place -> V2 n
 placeOutside pl =
   case pl of
@@ -146,7 +150,7 @@
     PlaceLeft -> r2 (-1, 0)
     PlaceRight -> r2 (1, 0)
 
--- | a strut to add to a placement
+-- | A gap to add when placing elements.
 placeGap ::
      (Monoid m, Semigroup m, Ord n, Floating n)
   => Place
@@ -160,12 +164,12 @@
     strut' PlaceLeft = strutX
     strut' PlaceRight = strutX
 
--- | orientation for a hud element.  Watch this space for curvature!
+-- | Orientation for a hud element.  Watch this space for curvature!
 data Orientation
   = Hori
   | Vert
 
--- | axes are somewhat complicated.  For instance, they contain a range within which tick marks need to be supplied or computed.
+-- | Axes are somewhat complicated.  For instance, they contain a range within which tick marks need to be supplied or computed.
 data AxisOptions b = AxisOptions
   { axisPad :: Double
   , axisOrientation :: Orientation
@@ -220,12 +224,14 @@
 
 -- | create an axis, based on AxisOptions, a physical aspect, and a range
 --
--- Under-the-hood, the axis function has gone through many a re-factor, and still has a ways to go.  A high degree of technical debt tends to acrue here.
+-- Under-the-hood, the axis function has gone through many a refactor, and still has a ways to go.  A high degree of technical debt tends to acrue here.
 --
 -- > axisExample :: Chart b
 -- > axisExample = axis aopts one (Range 0 100000)
 -- >   where
--- >     aopts = def {axisLabel=(axisLabel def) {labelGap=0.0001,labelText=(labelText (axisLabel def)) {textSize=0.06,textAlignH=AlignLeft,textRotation=(-45)}}}
+-- >     aopts = def {axisLabel=(axisLabel def) {
+-- >                  labelGap=0.0001, labelText=(labelText (axisLabel def)) {
+-- >                  textSize=0.06, textAlignH=AlignLeft, textRotation=(-45)}}}
 --
 -- ![axis example](other/axisExample.svg)
 --
@@ -279,7 +285,7 @@
           , ls)
         TickPlaced xs -> (project r asp . fst <$> xs, snd <$> xs)
 
--- | style of tick marks on an axis
+-- | Style of tick marks on an axis.
 data TickStyle
   = TickNone -- ^ no ticks on axis
   | TickLabels [Text] -- ^ specific labels
@@ -287,7 +293,7 @@
   | TickExact Int -- ^ exactly n equally spaced ticks
   | TickPlaced [(Double, Text)] -- ^ specific labels and placement
 
--- | provide a formatted text from a list of numbers so that they are just distinguished.  'precision 2 ticks' means give the tick labels as much precision as is needed for them to be distinguished, but with at least 2 significant figues.
+-- | Provide formatted text for a list of numbers so that they are just distinguished.  'precision 2 ticks' means give the tick labels as much precision as is needed for them to be distinguished, but with at least 2 significant figues.
 precision :: Int -> [Double] -> [Text]
 precision n0 xs
   | foldr max 0 xs < 0.01 = precLoop Formatting.expt n0 xs
@@ -307,7 +313,7 @@
            then s
            else precLoopInt f (n + 1) xs'
 
--- | options for titles.  Defaults to center aligned, and placed at Top of the hud
+-- | Options for titles.  Defaults to center aligned, and placed at Top of the hud
 data TitleOptions = TitleOptions
   { titleText :: TextOptions
   , titleAlign :: AlignH
@@ -338,7 +344,7 @@
     pos AlignRight PlaceLeft = Pair 0 (upper aspy)
     pos AlignRight PlaceRight = Pair 0 (lower aspy)
 
--- | the LegendType reuses all the various chart option types to help formulate a legend
+-- | LegendType reuses all the various chart option types to help formulate a legend
 data LegendType b
   = LegendText TextOptions
   | LegendGlyph (GlyphOptions b)
@@ -354,7 +360,7 @@
   | LegendPixel RectOptions
                 Double
 
--- | legend options. The main missing piece here is to allow for horizontal concatenation.
+-- | Legend options. todo: allow for horizontal concatenation.
 data LegendOptions b = LegendOptions
   { legendChartType :: [(LegendType b, Text)]
   , legendInnerPad :: Double
diff --git a/src/Chart/Lenses.hs b/src/Chart/Lenses.hs
--- a/src/Chart/Lenses.hs
+++ b/src/Chart/Lenses.hs
@@ -1,10 +1,10 @@
 {-# LANGUAGE TemplateHaskell #-}
 {-# OPTIONS_GHC -Wall #-}
 
--- | Lenses for all the options.  Note the trailing underscore naming convention, rather than the more obnoxious _prefixed conventions.
+-- | Lenses for all the options.  Note the trailing underscore_ naming convention, rather than the more obnoxious prefixed _underscore convention.
 module Chart.Lenses
-    -- * tea anyone?
-  ( arrowMinLength_
+  ( -- cup of tea?
+    arrowMinLength_
   , arrowMaxLength_
   , arrowMinHeadLength_
   , arrowMaxHeadLength_
diff --git a/src/Chart/Line.hs b/src/Chart/Line.hs
--- a/src/Chart/Line.hs
+++ b/src/Chart/Line.hs
@@ -4,11 +4,9 @@
 {-# OPTIONS_GHC -fno-warn-incomplete-patterns #-}
 #endif
 
+-- | Points on a chart connected by lines.
 module Chart.Line
-  ( -- * line
-    --
-    -- $line
-    LineOptions(..)
+  ( LineOptions(..)
   , oneline
   , lines
   , glines
@@ -26,11 +24,10 @@
 import NumHask.Prelude
 import NumHask.Rect
 
--- $line
+-- | The main features of a line (that distinguish it from a glyph say) is that:
 --
--- line chart elements
--- The main features of a line (that distinguish it from a glyph say) is that:
 -- - it exists over multiple points (a line can't exist at a single point)
+--
 -- - line rendering is normalized to the eventual physical chart
 --
 data LineOptions = LineOptions
@@ -41,7 +38,7 @@
 instance Default LineOptions where
   def = LineOptions 0.02 ublue
 
--- | a line connecting a series of points
+-- | A line connecting a series of points
 --
 -- > lines def [Pair (10*x/100.0) (cos (x * (10 / 100.0))) | x <- fromIntegral <$> [0..n]]
 --
@@ -55,12 +52,12 @@
       trailLike (trailFromVertices (toList $ p_ <$> xs) `at` p_ p) # lcA c #
       lwN s
 
--- a single line connecting 2 points
+-- | A single line connecting 2 points
 oneline :: (R2 r) => LineOptions -> Pair (r Double) -> Chart b
 oneline (LineOptions s c) (Pair x0 x1) =
   stroke (trailFromVertices [p_ x0, p_ x1] `at` p_ x0) # lcA c # lwN s
 
--- | a chart of lines
+-- | A chart of lines
 lineChart ::
      (Traversable f)
   => [LineOptions]
@@ -71,11 +68,13 @@
 lineChart optss (Aspect asp) r xyss =
   mconcat $ zipWith lines optss (projectss r asp xyss)
 
--- | a chart of lines scaled to its own range
+-- | A chart of lines scaled to its own range
 --
 -- > import Data.Colour.Palette.Harmony (tetrad)
--- > ls = map (uncurry Pair) <$> [[(0.0,1.0),(1.0,1.0),(2.0,5.0)], [(0.0,0.0),(3.0,3.0)], [(0.5,4.0),(0.5,0)]]
--- > lopts = zipWith (\x y -> LineOptions x (withOpacity y 0.6)) [0.01,0.02,0.005] (tetrad blue)
+-- > ls = map (uncurry Pair) <$> [[(0.0,1.0),(1.0,1.0),(2.0,5.0)],
+-- >                              [(0.0,0.0),(3.0,3.0)], [(0.5,4.0),(0.5,0)]]
+-- > lopts = zipWith (\x y -> LineOptions x (withOpacity y 0.6)) [0.01,0.02,0.005]
+-- >         (tetrad blue)
 -- > lineChart_ lopts sixbyfour ls
 --
 -- ![lineChart_ example](other/lineChart_Example.svg)
@@ -84,7 +83,7 @@
      (Traversable f) => [LineOptions] -> Aspect -> [f (Pair Double)] -> Chart b
 lineChart_ optss asp xyss = lineChart optss asp (range xyss) xyss
 
--- | lines with glyphs atop
+-- | Lines with glyphs atop eack point
 glines ::
      (Traversable f, R2 r)
   => LineOptions
@@ -93,7 +92,7 @@
   -> Chart b
 glines opts gopts xs = glyphs gopts xs <> lines opts xs
 
--- | a chart of glines
+-- | A chart of glines
 glineChart ::
      (Traversable f)
   => [LineOptions]
@@ -107,9 +106,11 @@
   getZipList $
   glines <$> ZipList ls <*> ZipList gs <*> ZipList (projectss r asp xyss)
 
--- | a chart of glyphs_lines scaled to its own range
+-- | A chart of glyphs_lines scaled to its own range
 --
--- > let gopts = zipWith (\x y -> def {glyphColor=transparent, glyphBorderColor=withOpacity x 0.6, glyphShape=y}) (tetrad green) [triangle, square, circle]
+-- > let gopts = zipWith (\x y -> def {glyphColor=transparent,
+-- >         glyphBorderColor=withOpacity x 0.6, glyphShape=y}) (tetrad green)
+-- >         [triangle, square, circle]
 -- >
 -- > glineChart_ lopts gopts sixbyfour ls
 --
diff --git a/src/Chart/Rect.hs b/src/Chart/Rect.hs
--- a/src/Chart/Rect.hs
+++ b/src/Chart/Rect.hs
@@ -29,13 +29,14 @@
   ) where
 
 import Chart.Core
-import Diagrams.Prelude hiding (Color, D, scaleX, scaleY)
+import Diagrams.Prelude hiding (Color, D, scaleX, scaleY, (<>))
 import NumHask.Pair
 import NumHask.Prelude
 import NumHask.Range
 import NumHask.Rect
 import NumHask.Space
 
+-- | Just about everything on a chart is a rectangle.
 data RectOptions = RectOptions
   { rectBorderSize :: Double
   , rectBorderColor :: AlphaColour Double
@@ -43,9 +44,9 @@
   }
 
 instance Default RectOptions where
-  def = RectOptions 0.005 (ucolor 0.4 0.4 0.4 1) ublue
+  def = RectOptions 0.005 ugrey ublue
 
--- | solid rect, no border
+-- | solid rectangle, no border
 blob :: AlphaColour Double -> RectOptions
 blob c = RectOptions 0 transparent c
 
@@ -57,19 +58,21 @@
 box :: AlphaColour Double -> RectOptions
 box c = RectOptions 0.015 c transparent
 
--- | place a rect around an Chart
+-- | place a rect around an Chart, with a size equal to the chart range
 bound :: RectOptions -> Double -> Chart b -> Chart b
 bound (RectOptions bs bc c) p x =
   (boundingRect x' # lcA bc # lwN bs # fcA c) <> x'
   where
     x' = pad p x
 
--- | a single rectangle specified using a Rect x z y w where
+-- | A single rectangle specified using a Rect x z y w where
 -- (x,y) is location of lower left corner
 -- (z,w) is location of upper right corner
 --
--- > let opts o = def {labelText = (labelText def) {textColor=withOpacity black 0.8, textSize = 0.3}, labelOrientation=o}
--- > labelled (opts (Pair 2 1)) ("z,w") $ labelled (opts (Pair -2 -1)) ("x,y") (rect_ def (Ranges (2*.one) one))
+-- > let opts o = def {labelText = (labelText def) {textColor=withOpacity black 0.8,
+-- >         textSize = 0.3}, labelOrientation=o}
+-- > labelled (opts (Pair 2 1)) ("z,w") $ labelled (opts (Pair -2 -1)) ("x,y")
+-- >     (rect_ def (Ranges (2*.one) one))
 --
 -- ![rect_ example](other/rect_Example.svg)
 --
@@ -91,7 +94,7 @@
   lcA bc #
   lwN bs
 
--- | rectangles with the same configuration
+-- | Create rectangles (with the same configuration).
 --
 -- > rects def $ zipWith (\x y -> Rect x (x+1) 0 y) [0..] [1,2,3,5,8,0,-2,11,2,1]
 --
@@ -113,7 +116,7 @@
   -> a
 rects opts xs = mconcat $ toList $ rect_ opts <$> xs
 
--- | a chart of rects
+-- | A chart of rects
 rectChart ::
      (Traversable f)
   => [RectOptions]
@@ -124,10 +127,12 @@
 rectChart optss (Aspect asp) r rs =
   mconcat . zipWith rects optss $ fmap (projectRect r asp) <$> rs
 
--- | a chart of histograms scaled to its own range
+-- | A chart of rectangles scaled to its own range
 --
--- > let ropts = [def {rectBorderSize=0}, def {rectBorderSize=0,rectColor=ucolor 0.3 0.3 0.3 0.2}]
--- > let pss = transpose [[exp (-(x**2)/2), 0.5 * exp (-(x**2)/8)] | x <- grid LowerPos (Range -5 5) 1000]
+-- > let ropts = [def {rectBorderSize=0}, def
+-- >         {rectBorderSize=0,rectColor=ucolor 0.3 0.3 0.3 0.2}]
+-- > let pss = transpose [[exp (-(x**2)/2), 0.5 * exp (-(x**2)/8)] |
+-- >                      x <- grid LowerPos (Range -5 5) 1000]
 -- > let rss = (zipWith (\x y -> Rect x (x+1) 0 y) [0..]) <$> pss
 -- > rectChart_ ropts widescreen rss
 --
@@ -137,13 +142,13 @@
      (Traversable f) => [RectOptions] -> Aspect -> [f (Rect Double)] -> Chart b
 rectChart_ optss asp rs = rectChart optss asp (fold $ fold <$> rs) rs
 
--- | at some point, a color of a rect becomes more about data than stylistic option, hence the pixel.  Echewing rect border leaves a Pixel with no stylistic options to choose.
+-- | At some point, a color of a rect becomes more about data than stylistic option, hence the pixel.  Echewing rect border leaves a Pixel with no stylistic options to choose.
 data Pixel = Pixel
   { pixelRect :: Rect Double
   , pixelColor :: AlphaColour Double
   }
 
--- | a pixel is a rectangle with a color.
+-- | A pixel is a rectangle with a color.
 --
 -- > let opt = def {textColor=withOpacity black 0.8, textSize = 0.2}
 -- > text_ opt "I'm a pixel!" <> pixel_ (Pixel one ublue)
@@ -158,7 +163,7 @@
   lcA transparent #
   lw 0
 
--- | render multiple pixels
+-- | Render multiple pixels
 --
 -- > pixels $ [Pixel (Rect (5*x) (5*x+0.1) (sin (10*x)) (sin (10*x) + 0.1)) (dissolve (2*x) ublue) | x <- grid OuterPos (Range 0 1) 100]
 --
@@ -167,7 +172,7 @@
 pixels :: (Traversable f) => f Pixel -> Chart b
 pixels ps = mconcat $ toList $ pixel_ <$> ps
 
--- | a chart of pixels
+-- | A chart of pixels
 pixelChart :: (Traversable f) => Aspect -> Rect Double -> [f Pixel] -> Chart b
 pixelChart (Aspect asp) r pss =
   mconcat $ pixels . projectPixels r asp . toList <$> pss
@@ -175,16 +180,18 @@
     projectPixels r0 r1 ps =
       zipWith Pixel (projectRect r0 r1 . pixelRect <$> ps) (pixelColor <$> ps)
 
--- | a chart of pixels scaled to its own range
+-- | A chart of pixels scaled to its own range
 --
--- > pixelChart_ asquare [[Pixel (Rect x (x+0.05) y (y+0.05)) (blend  (x*y+x*x) ugrey ublue) | x <- grid OuterPos (one::Range Double) 20, y <- grid OuterPos (one::Range Double) 20]]
+-- > pixelChart_ asquare [[Pixel (Rect x (x+0.05) y (y+0.05)) (blend  (x*y+x*x) ugrey ublue)
+-- >     | x <- grid OuterPos (one::Range Double) 20,
+-- >       y <- grid OuterPos (one::Range Double) 20]]
 --
 -- ![pixelChart_ example](other/pixelChart_Example.svg)
 --
 pixelChart_ :: (Traversable f) => Aspect -> [f Pixel] -> Chart b
 pixelChart_ asp ps = pixelChart asp (fold $ fold . map pixelRect <$> ps) ps
 
--- | options to pixelate a Rect using a function
+-- | Options to pixelate a Rect using a function
 data PixelationOptions = PixelationOptions
   { pixelationGradient :: Range (AlphaColour Double)
   , pixelationGrain :: Pair Int
@@ -193,7 +200,7 @@
 instance Default PixelationOptions where
   def = PixelationOptions (Range ugrey ublue) (Pair 20 20)
 
--- | transform a Rect into Pixels using a function over a Pair
+-- | Transform a Rect into Pixels using a function over a Pair
 pixelate ::
      PixelationOptions -> Rect Double -> (Pair Double -> Double) -> [Pixel]
 pixelate (PixelationOptions (Range lc0 uc0) grain) xy f = zipWith Pixel g cs
@@ -203,7 +210,7 @@
     (Range lx ux) = space xs
     cs = (\x -> blend ((x - lx) / (ux - lx)) lc0 uc0) <$> xs
 
--- | chart pixels using a function
+-- | Chart pixels using a function
 -- This is a convenience function, and the example below is equivalent to the pixelChart_ example
 --
 -- > pixelateChart def asquare one (\(Pair x y) -> x*y+x*x)
diff --git a/src/Chart/Text.hs b/src/Chart/Text.hs
--- a/src/Chart/Text.hs
+++ b/src/Chart/Text.hs
@@ -1,5 +1,5 @@
 {-# OPTIONS_GHC -Wall #-}
--- | text chart elements
+-- | textual chart elements
 module Chart.Text
   ( TextOptions(..)
   , text_
@@ -31,7 +31,7 @@
 instance Default TextOptions where
   def = TextOptions 0.08 AlignCenter (withOpacity black 0.33) EvenOdd 0
 
--- | create a text primitive
+-- | Create a textual chart element
 --
 -- > let text_Example = text_ def "Welcome to chart-unit!"
 --
@@ -44,7 +44,7 @@
   where
     path = textSVG_ (TextOpts lin2 INSIDE_H KERN False s s) (Text.unpack t)
 
--- | positioned svg text from a list
+-- | Creatye positioned text from a list
 --
 -- > let ts = map (Text.singleton) ['a'..'z']
 -- > texts def ts [Pair (0.05*x) 0 |x <- [0..5]]
@@ -54,7 +54,7 @@
 texts :: (R2 r) => TextOptions -> [Text] -> [r Double] -> Chart b
 texts opts ts ps = mconcat $ zipWith (\p t -> positioned p (text_ opts t)) ps ts
 
--- | a chart of text
+-- | A chart of text
 textChart ::
      (Traversable f)
   => [TextOptions]
@@ -68,7 +68,7 @@
   texts <$> ZipList optss <*> ZipList (map fst . toList <$> xyss) <*>
   ZipList (projectss r asp (fmap snd . toList <$> xyss))
 
--- | a chart of text scaled to its own range
+-- | A chart of text scaled to its own range
 --
 -- > import qualified Data.Text as Text
 -- > let ps = [Pair (sin (x*0.1)) x | x<-[0..25]]
@@ -80,7 +80,7 @@
 textChart_ optss asp xyss =
   textChart optss asp (range $ fmap snd . toList <$> xyss) xyss
 
--- | a label is a text element attached to a chart element
+-- | A label is a text element attached to a chart element
 data LabelOptions = LabelOptions
   { labelText :: TextOptions
   , labelOrientation :: Pair Double -- ^ direction of label
@@ -90,7 +90,7 @@
 instance Default LabelOptions where
   def = LabelOptions def (Pair 0 1) 0.05
 
--- | label a chart element with some text
+-- | Label a chart element with some text
 --
 -- > let lopts = def {textAlignH = AlignLeft, textRotation=45}
 -- > labelled (LabelOptions lopts (Pair 1 1) 0.05) "a label" (glyph_ def)
diff --git a/stack.yaml b/stack.yaml
--- a/stack.yaml
+++ b/stack.yaml
@@ -6,14 +6,15 @@
 extra-deps:
   - numhask-0.1.2
   - numhask-range-0.1.1
-  #- SVGFonts-1.6.0.1
-  #- diagrams-lib-1.4.1.2
-  #- diagrams-svg-1.4.1
-  #- palette-0.1.0.4
-  #- diagrams-core-1.4
-  #- diagrams-solve-0.1.1
-  #- cereal-vector-0.2.0.1
-  #- dual-tree-0.2.1
-  #- svg-builder-0.1.0.2
+  - SVGFonts-1.6.0.2
+  - diagrams-lib-1.4.1.2
+  - diagrams-svg-1.4.1
+  - palette-0.1.0.5
+  - diagrams-rasterific-1.4
+  - diagrams-core-1.4.0.1
+  - diagrams-solve-0.1.1
+  - cereal-vector-0.2.0.1
+  - dual-tree-0.2.1
+  - svg-builder-0.1.0.2
 
 allow-newer: true
